gecko-dev/calendar/resources/content/wizard.xul

287 строки
11 KiB
XML

<?xml version="1.0"?>
<!-- ***** 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): Mike Potter <mikep@oeone.com>
-
- 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 LGPL or the GPL. 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 ***** -->
<!-- Style sheets -->
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
<?xml-stylesheet href="chrome://calendar/skin/calendar.css" type="text/css"?>
<?xml-stylesheet href="chrome://communicator/skin/communicator.css" type="text/css"?>
<!-- Overlays -->
<?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
<!-- DTDs -->
<!-- DTD File with all strings specific to the calendar -->
<!DOCTYPE wizard
[
<!ENTITY % dtd1 SYSTEM "chrome://calendar/locale/global.dtd" > %dtd1;
<!ENTITY % dtd2 SYSTEM "chrome://calendar/locale/calendar.dtd" > %dtd2;
]>
<!-- The Window -->
<wizard
id="calendar-wizard"
title="Mozilla Calendar Wizard"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
onwizardfinish="return doWizardFinish();"
persist="screenX screenY"
>
<script type="application/x-javascript" src="chrome://calendar/content/calendar.js"/>
<script type="application/x-javascript" src="chrome://calendar/content/wizard.js"/>
<script type="application/x-javascript" src="chrome://calendar/content/dateUtils.js"/>
<script type="application/x-javascript" src="chrome://calendar/content/importExport.js"/>
<wizardpage pageid="initialPage" description="Choose An Action" onpagehide="checkInitialPage()" next="import">
<radiogroup id="initial-radiogroup">
<radio value="import"
label="&calendar.wizard.import.label;"
selected="true"/>
<radio value="export"
label="&calendar.wizard.export.label;"/>
<radio value="subscribe"
label="&calendar.wizard.subscribe.label;"/>
<radio value="publish"
label="&calendar.wizard.publish.label;"/>
</radiogroup>
</wizardpage>
<wizardpage pageid="import"
label="Import Events"
description="Choose the events you want to import."
onpagehide=""
onpageshow="onPageShow( 'import' );"
next="import-2">
<textbox id="import-path-textbox"/>
<button oncommand="launchFilePicker( 'open', 'import-path-textbox' )"
label="Find a File"/>
<description>
To import events, find the file you are looking to import, then click next.
The calendar currently only imports .ics files, which are standard calendar data files.
</description>
</wizardpage>
<wizardpage pageid="import-2"
label="Select Calendar"
description="Choose the file to import into."
onpagehide=""
onpageshow="onPageShow( 'import-2' );"
next="import-3">
<radiogroup id="import-calendar-radiogroup"
datasources="rdf:null"
ref="urn:calendarcontainer">
<template>
<rule>
<radio oncommand="document.getElementById( 'calendar-wizard' ).canAdvance = true;"
uri="rdf:*"
label="rdf:http://home.netscape.com/NC-rdf#name"
value="rdf:http://home.netscape.com/NC-rdf#path"/>
</rule>
</template>
</radiogroup>
</wizardpage>
<wizardpage pageid="import-3"
onpagehide=""
onpageshow=""
next="import-4">
<description>Should I open each event before importing it?</description>
<radiogroup id="import-2-radiogroup">
<radio id="import-2-no"
value="silent"
label="No, just import the events."
selected="true"/>
<radio id="import-2-yes"
value="promtp"
label="Yes, open each event."/>
</radiogroup>
</wizardpage>
<wizardpage pageid="import-4"
onpagehide=""
onpageshow="setTimeout( 'doWizardImport()', 1000 );">
<box id="importing-box">
<description>Importing...</description>
<progressmeter id="import-progress-meter"
mode="determined"
flex="1"/>
</box>
<box id="done-importing-box"
collapsed="true">
<description>All your events have been imported. Click finish to close the wizard.</description>
</box>
</wizardpage>
<wizardpage pageid="export"
label="Export Events"
onpagehide=""
onpageshow="buildCalendarsListbox( 'export-calendars-listbox' )"
next="export-2">
<radiogroup id="export-calendar-radiogroup"
datasources="rdf:null"
ref="urn:calendarcontainer">
<template>
<rule>
<radio oncommand="document.getElementById( 'calendar-wizard' ).canAdvance = true;"
uri="rdf:*"
label="rdf:http://home.netscape.com/NC-rdf#name"
value="rdf:http://home.netscape.com/NC-rdf#path"/>
</rule>
</template>
</radiogroup>
</wizardpage>
<wizardpage pageid="export-2"
onpagehide=""
onpageshow="">
<description>Choose the file location to save the events to.</description>
<textbox id="export-path-textbox"/>
<button oncommand="launchFilePicker( 'save', 'export-path-textbox' )"
label="Find a File"/>
</wizardpage>
<wizardpage pageid="subscribe"
onpagehide=""
onpageshow="">
<!-- Name -->
<description>&calendar.server.dialog.name.label;</description>
<textbox id="server-name-textbox"/>
<description>&calendar.server.dialog.location.label;</description>
<textbox id="server-path-textbox"/>
<description>
You can subscribe to remote calendars by entering in their URL here.
</description>
</wizardpage>
<wizardpage pageid="publish"
next="publish-2"
onpagehide=""
onpageshow="buildCalendarsListbox( 'publish-calendars-listbox' )">
<radiogroup>
<radio id="publish-calendars"
label="Publish Entire Calendar"
selected="true"/>
<!-- show a list of calendars here -->
<listbox id="publish-calendars-listbox"
class="unifinder-tree-class"
flex="1"
contextmenu="calendarlist-context-menu"
datasources="rdf:null"
ref="urn:calendarcontainer">
<listhead>
<listheader flex="1" crop="end" label="&calendar.calendarlistbox.label;"/>
<listheader/>
</listhead>
<listcols>
<listcol flex="1"/>
<listcol/>
</listcols>
<template>
<rule>
<listitem uri="rdf:*"
calendarPath="rdf:http://home.netscape.com/NC-rdf#path">
<listcell id="calendar-list-item-^rdf://http://home.netscape.com/NC-rdf#serverNumber"
class="calendar-list-item-class"
label="rdf:http://home.netscape.com/NC-rdf#name"
flex="1"
type="checkbox"
checked="rdf:http://home.netscape.com/NC-rdf#active"
/>
<listcell>
<image id="calendar-list-image-^rdf://http://home.netscape.com/NC-rdf#serverNumber"
class="calendar-list-item-class"/>
</listcell>
</listitem>
</rule>
</template>
</listbox>
<radio id="publish-events"
label="Publish Selected Events"
disabled="true"/>
<!-- TODO: show a list of events here -->
</radiogroup>
</wizardpage>
<wizardpage pageid="publish-2"
onpagehide=""
onpageshow="">
<grid>
<columns>
<column />
<column flex="1"/>
</columns>
<rows>
<!-- URL -->
<row align="center">
<hbox class="field-label-box-class" pack="end">
<description>&calendar.publish.url.label;</description>
</hbox>
<textbox flex="1" id="publish-url-textbox"/>
</row>
<row align="center">
<hbox class="field-label-box-class" pack="end"/>
<description>Something like http://www.myserver.com/webdav/</description>
</row>
<!-- File Name -->
<row align="center">
<hbox class="field-label-box-class" pack="end">
<description>&calendar.publish.remotefilename.label;</description>
</hbox>
<textbox flex="1" id="publish-remotefilename-textbox"/>
</row>
<row align="center">
<hbox class="field-label-box-class" pack="end"/>
<description>The filename to save to on the remote server.</description>
</row>
</rows>
</grid>
</wizardpage>
</wizard>