home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / browser.xpi / bin / chrome / comm.jar / content / editor / EdPageProps.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-07-09  |  3.1 KB  |  78 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) 1998-1999 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. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?> 
  29. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  30.  
  31. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorPageProperties.dtd">
  32.  
  33. <window class="dialog" title="&windowTitle.label;"
  34.     xmlns:html="http://www.w3.org/1999/xhtml"
  35.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  36.     onload="Startup()"
  37.     orient="vertical">
  38.  
  39.   <!-- Methods common to all editor dialogs -->
  40.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  41.   <script type="application/x-javascript" src="chrome://editor/content/EdPageProps.js"/>
  42.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  43.  
  44.   <spring id="location" offsetY="50" persist="offsetX offsetY"/>
  45.   <broadcaster id="args" value=""/>
  46.   <keyset id="dialogKeys"/>
  47.   <grid>
  48.     <columns><column flex="1"/><column flex="2"/></columns>
  49.     <rows>
  50.       <row>
  51.         <text class="label" value="&location.label;"/>
  52.         <text class="label" value="&locationNewPage.label;" id="PageLocation"/>
  53.       </row>
  54.       <row>
  55.         <text class="label" value="&lastModified.label;" align="left"/>
  56.         <text class="label" id="PageModDate" align="left"/>
  57.       </row>
  58.       <spring class="spacer"/>
  59.       <row valign="middle">
  60.         <text class="label" value="&titleInput.label;"/>
  61.         <textbox class="MinWidth20em" id="TitleInput" oninput="TextboxChanged(this.id)"/>
  62.       </row>
  63.       <row valign="middle">
  64.         <text class="label" value="&authorInput.label;"/>
  65.         <textbox class="MinWidth20em" id="AuthorInput" oninput="TextboxChanged(this.id)"/>
  66.       </row>
  67.       <row valign="middle">
  68.         <text class="label" value="&descriptionInput.label;"/>
  69.         <textbox class="MinWidth20em" id="DescriptionInput" oninput="TextboxChanged(this.id)"/>
  70.       </row>
  71.     </rows>
  72.   </grid>
  73.   <spring class="bigspacer"/>
  74.   <html class="wrap" flex="1">&EditHEADSource.label;</html>
  75.   <separator class="groove"/>
  76.   <hbox id="okCancelButtons"/> 
  77. </window>
  78.