home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Complet / thunderbird / chrome / mail.jar / content / editor / EditorPublishOverlay.xul < prev    next >
Encoding:
Extensible Markup Language  |  2003-03-17  |  2.9 KB  |  76 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Netscape Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/NPL/
  8.    -  
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    -  
  14.    - The Original Code is Mozilla Communicator client code, released
  15.    - March 31, 1998.
  16.    - 
  17.    - The Initial Developer of the Original Code is Netscape
  18.    - Communications Corporation. Portions created by Netscape are
  19.    - Copyright (C) 2001 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  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. <!DOCTYPE overlay SYSTEM "chrome://editor/locale/EditorPublish.dtd">
  29.  
  30. <overlay id="EditorPublishOverlay"
  31.      xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  32.  
  33. <vbox id="PublishSettingsInputs">
  34.   <groupbox id="ServerSettingsBox">
  35.     <caption label="&serverInfo.label;"/>
  36.     <hbox align="center">
  37.       <label value="&siteName.label;"/>
  38.       <textbox id="SiteNameInput" class="MinWidth20em" 
  39.         tooltiptext="&siteName.tooltip;" oninput="onInputSettings();" flex="1"/>
  40.     </hbox>
  41.     <spacer class="spacer"/>
  42.     <label value="&siteUrl.label;"/>
  43.     <textbox id="PublishUrlInput" class="MinWidth20em uri-element"
  44.       tooltiptext="&siteUrl.tooltip;" oninput="onInputSettings();"/>
  45.     <spacer class="spacer"/>
  46.     <label value="&browseUrl.label;"/>
  47.     <textbox id="BrowseUrlInput" class="MinWidth20em uri-element" 
  48.       tooltiptext="&browseUrl.tooltip;" oninput="onInputSettings();"/>
  49.     <spacer class="spacer"/>
  50.   </groupbox>
  51.   <groupbox id="LoginSettingsBox">
  52.     <caption label="&loginInfo.label;"/>
  53.     <grid>
  54.       <columns><column flex="1"/><column flex="3"/></columns>
  55.       <rows>
  56.         <row align="center">
  57.           <label value="&username.label;"/>
  58.           <textbox id="UsernameInput" class="MinWidth10em" 
  59.             tooltiptext="&username.tooltip;" oninput="onInputSettings();" flex="1"/>
  60.         </row>
  61.         <row align="center">
  62.           <label value="&password.label;"/>
  63.           <hbox>
  64.             <textbox id="PasswordInput" type="password" class="MinWidth5em" 
  65.               oninput="onInputSettings();"/>
  66.             <checkbox id="SavePassword" label="&savePassword.label;" 
  67.               tooltiptext="&savePassword.tooltip;" oncommand="onInputSettings();"/>
  68.           </hbox>
  69.         </row>
  70.       </rows>
  71.     </grid>
  72.     <spacer class="spacer"/>
  73.   </groupbox>
  74. </vbox>
  75.  
  76. </overlay>