home *** CD-ROM | disk | FTP | other *** search
/ ftp.swcp.com / ftp.swcp.com.zip / ftp.swcp.com / mac / mozilla-macos9-1.3.1.sea.bin / Mozilla1.3.1 / Chrome / comm.jar / content / editor / EditorPublishProgress.xul < prev    next >
Extensible Markup Language  |  2003-06-08  |  4KB  |  92 lines

  1. <?xml version="1.0"?>
  2. <!--
  3.    - The contents of this file are subject to the Netscape Public
  4.    - License Version 1.1 (the "License"); you may not use this file
  5.    - except in compliance with the License. You may obtain a copy of
  6.    - the License at http://www.mozilla.org/NPL/
  7.    -  
  8.    - Software distributed under the License is distributed on an "AS
  9.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    - implied. See the License for the specific language governing
  11.    - rights and limitations under the License.
  12.    -  
  13.    - The Original Code is Mozilla Communicator client code, released
  14.    - March 31, 1998.
  15.    - 
  16.    - The Initial Developer of the Original Code is Netscape
  17.    - Communications Corporation. Portions created by Netscape are
  18.    - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.    - Rights Reserved.
  20.    - 
  21.    - Contributor(s): 
  22.    -   Charles Manxke (cmanske@netscape.com)
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  26. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  27.  
  28. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  29.  
  30. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorPublishProgress.dtd">
  31. <!-- dialog containing a control requiring initial setup -->
  32. <dialog title=""
  33.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.     buttons="cancel"
  35.     onload="Startup()"
  36.     ondialogaccept="return onEnterKey();"
  37.     ondialogcancel="return onClose();">
  38.  
  39.   <!-- Methods common to all editor dialogs -->
  40.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/publishprefs.js"/>
  42.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  43.   <script type="application/x-javascript" src="chrome://editor/content/EditorPublishProgress.js"/>
  44.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  45.  
  46.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  47.   <broadcaster id="args" value=""/>
  48.  
  49.   <groupbox>
  50.     <caption><label id="PublishToSite"/></caption>
  51.     <label value="&siteUrl.label;"/>
  52.     <hbox>
  53.       <label class="indent bold" id="PublishUrl"/>
  54.     </hbox>
  55.     <spacer class="spacer"/>
  56.     <grid id="Subdirectories">
  57.       <columns><column/><column/></columns>
  58.       <rows>
  59.         <row id="DocSubdir">
  60.           <label value="&docSubdir.label;"/>
  61.           <label id="docDir"/>
  62.         </row>
  63.         <row id="OtherSubdir">
  64.           <label value="&otherSubdir.label;"/>
  65.           <label id="otherDir"/>
  66.         </row>
  67.       </rows>
  68.     </grid>
  69.     <label id="OtherUrl" class="bold" style="margin-left:3em"/>
  70.   </groupbox>
  71.   <groupbox>
  72.     <caption><label value="&fileList.label;"/></caption>
  73.     <vbox align="center" style="max-width:30em">
  74.       <label id="FinalStatusMessage" class="bold" value="&status.label;"/>
  75.     </vbox>
  76.     <description id="StatusMessage" class="wrap" style="max-width:30em; min-height: 1em"/>
  77.     <vbox flex="1">
  78.       <listbox id="FileList" rows="1"/>
  79.     </vbox>
  80.     <hbox align="center" id="failureBox" hidden="true">
  81.       <image class="progressitem" progress="done"/>
  82.       <label value="&succeeded.label;"/>
  83.       <spacer class="bigspacer"/>
  84.       <image class="progressitem" progress="failed"/>
  85.       <label value="&failed.label;"/>
  86.       <button label="&troubleshooting.label;" accesskey="&troubleshooting.accessKey;" oncommand="doTroubleshooting();"/>
  87.     </hbox>
  88.   </groupbox>
  89.   <checkbox id="KeepOpen" label="&keepOpen;" oncommand="CheckKeepOpen();" persist="checked"/>
  90.   <separator class="groove"/>
  91. </dialog>
  92.