summaryrefslogtreecommitdiff
path: root/editor/ui/dialogs/content/EdPageProps.xul
blob: e5d666f83125e49b45ead8854a34a5db0e9635ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>

<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>

<?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 

<!DOCTYPE dialog SYSTEM "chrome://editor/locale/EditorPageProperties.dtd">

<dialog title="&windowTitle.label;"
        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        onload="Startup();"
        ondialogaccept="return onAccept();"
        ondialogcancel="return onCancel();">

  <!-- Methods common to all editor dialogs -->
  <script type="application/javascript" src="chrome://editor/content/editorUtilities.js"/>
  <script type="application/javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  <script type="application/javascript" src="chrome://editor/content/EdPageProps.js"/>

  <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  <broadcaster id="args" value=""/>
  <grid>
    <columns><column flex="1"/><column flex="2"/></columns>
    <rows>
      <row>
        <label value="&location.label;"/>
        <label value="&locationNewPage.label;" id="PageLocation"/>
      </row>
      <row>
        <label value="&lastModified.label;"/>
        <label id="PageModDate"/>
      </row>
      <spacer class="spacer"/>
      <row align="center">
        <label value="&titleInput.label;" accesskey="&titleInput.accessKey;" control="TitleInput"/>
        <textbox class="MinWidth20em" id="TitleInput" oninput="TextboxChanged(this.id)"/>
      </row>
      <row align="center">
        <label value="&authorInput.label;" accesskey="&authorInput.accessKey;" control="AuthorInput"/>
        <textbox class="MinWidth20em" id="AuthorInput" oninput="TextboxChanged(this.id)"/>
      </row>
      <row align="center">
        <label value="&descriptionInput.label;" accesskey="&descriptionInput.accessKey;" control="DescriptionInput"/>
        <textbox class="MinWidth20em" id="DescriptionInput" oninput="TextboxChanged(this.id)"/>
      </row>
    </rows>
  </grid>
  <spacer class="bigspacer"/>
  <label value="&EditHEADSource1.label;"/>
  <description class="wrap" flex="1">&EditHEADSource2.label;</description>
  <separator class="groove"/>
</dialog>