releases-comm-central/calendar/base/content/calendar-publish-dialog.js

186 строки
6.5 KiB
JavaScript

/* ***** BEGIN LICENSE BLOCK *****
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
*
* The contents of this file are subject to the Mozilla Public License Version
* 1.1 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
* http://www.mozilla.org/MPL/
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
* for the specific language governing rights and limitations under the
* License.
*
* The Original Code is OEone Calendar Code, released October 31st, 2001.
*
* The Initial Developer of the Original Code is OEone Corporation.
* Portions created by the Initial Developer are Copyright (C) 2001
* the Initial Developer. All Rights Reserved.
*
* Contributor(s): Garth Smedley <garths@oeone.com>
* Mike Potter <mikep@oeone.com>
* Colin Phillips <colinp@oeone.com>
* Chris Charabaruk <ccharabaruk@meldstar.com>
* ArentJan Banck <ajbanck@planet.nl>
* Stuart Parmenter <pavlov@pavlov.net>
*
* Alternatively, the contents of this file may be used under the terms of
* either the GNU General Public License Version 2 or later (the "GPL"), or
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
* in which case the provisions of the GPL or the LGPL are applicable instead
* of those above. If you wish to allow use of your version of this file only
* under the terms of either the GPL or the LGPL, and not to allow others to
* use your version of this file under the terms of the MPL, indicate your
* decision by deleting the provisions above and replace them with the notice
* and other provisions required by the GPL or the LGPL. If you do not delete
* the provisions above, a recipient may use your version of this file under
* the terms of any one of the MPL, the GPL or the LGPL.
*
* ***** END LICENSE BLOCK ***** */
// TODO This file needs cleaning up, the code is quite stale.
/**
* Prepares the publish dialog from the window's arguments.
*/
function loadCalendarPublishDialog() {
var calendar = window.arguments[0];
window.calendar = calendar;
/* set the path based on what was passed in */
var pathTextbox = document.getElementById("publish-remotePath-textbox");
pathTextbox.value = calendar.getProperty("remote-ics-path");
/* check the URL field */
checkURL();
/* set focus to the path text box*/
pathTextbox.focus();
}
/**
* Publishes the calendar using the progress meter. The dialog should not be
* closed when this function returns, so false will always be returned.
*
* @return Returns false, since the dialog should not be closed.
*/
function onOKCommand() {
var progressMeter = document.getElementById("publish-progressmeter");
progressMeter.setAttribute("mode", "undetermined");
var pathTextbox = document.getElementById("publish-remotePath-textbox");
var remotePath = pathTextbox.value;
try {
publishCalendar(window.calendar, remotePath);
} catch(ex) {
dump("error publishing!\n");
dump(ex + "\n");
progressMeter.setAttribute("mode", "determined");
}
return false;
}
/**
* Checks if the URL in the publish-remotePath-textbox is valid.
*/
function checkURL() {
var pathTextbox = document.getElementById("publish-remotePath-textbox");
var publishWindow = document.getElementById("calendar-publishwindow");
if (pathTextbox.value.length > 0)
publishWindow.getButton("accept").removeAttribute("disabled");
else
publishWindow.getButton("accept").setAttribute("disabled", "true");
}
/**
* Close the publish dialog.
*
* XXX This function may be broken
*/
function closeDialog() {
self.close();
}
/**
* Publish a calendar to a remote path. When this has been done, the accept
* button changes to a close button.
*
* @param calendar The calendar to publish.
* @param remotePath The remote url (as a string).
*/
function publishCalendar(calendar, remotePath) {
var icsURL = makeURL(remotePath);
var calManager = getCalendarManager();
// create an ICS calendar, but don't register it
var newCalendar = calManager.createCalendar("ics", icsURL);
var getListener = {
onOperationComplete: function(aCalendar, aStatus, aOperationType, aId, aDetail)
{
var calManager = getCalendarManager();
// delete the new calendar now that we're done with it
calManager.deleteCalendar(newCalendar);
/* update the remote ics path */
var calManager = getCalendarManager();
window.calendar.setProperty("remote-ics-path", remotePath);
/* set the dialog up for closing */
var progressMeter = document.getElementById("publish-progressmeter");
progressMeter.setAttribute("mode", "determined");
var publishWindow = document.getElementById("calendar-publishwindow");
publishWindow.getButton("accept").setAttribute("label", closeButtonLabel);
publishWindow.getButton("accept").setAttribute("oncommand", "closeDialog()");
}
};
appendCalendars(newCalendar, [calendar], getListener);
}
/**
* Appends one or more calendars to a target calendar.
*
* @param to The target calendar to write to.
* @param froms An array of source calendars.
* @param listener A calIOperationListener to call when complete.
*/
function appendCalendars(to, froms, listener) {
var getListener = {
onOperationComplete: function(aCalendar, aStatus, aOperationType, aId, aDetail)
{
if (listener)
listener.onOperationComplete(aCalendar, aStatus, aOperationType,
aId, aDetail);
},
onGetResult: function(aCalendar, aStatus, aItemType, aDetail, aCount, aItems)
{
if (!Components.isSuccessCode(aStatus)) {
aborted = true;
return;
}
if (aCount) {
for (var i=0; i<aCount; ++i) {
// Store a (short living) reference to the item.
dump("adding item.. " + aItems[i] + "\n");
var itemCopy = aItems[i].clone();
to.addItem(itemCopy, null);
}
}
}
};
for each(var from in froms) {
from.getItems(Components.interfaces.calICalendar.ITEM_FILTER_TYPE_ALL,
0, null, null, getListener);
}
}