cmanske%netscape.com c6e18b6ab7 Fixed bugs 21077 and 21222. Removed unused files and entries in MANIFEST files. a=chofmann r=brade
git-svn-id: svn://10.0.0.236/trunk@55816 18797224-902f-48f8-a5cc-f745e15eee43
1999-12-09 22:26:54 +00:00

72 lines
2.8 KiB
XML

<?xml version="1.0"?>
<!--
- The contents of this file are subject to the Netscape 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/NPL/
-
- 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 Mozilla Communicator client code, released
- March 31, 1998.
-
- The Initial Developer of the Original Code is Netscape
- Communications Corporation. Portions created by Netscape are
- Copyright (C) 1998-1999 Netscape Communications Corporation. All
- Rights Reserved.
-
- Contributor(s):
-->
<?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
<?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
<?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?>
<!DOCTYPE window SYSTEM "chrome://editor/locale/EditorListProperties.dtd">
<xul:window class="dialog" title="&windowTitle.label;"
xmlns:xul ="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns="http://www.w3.org/TR/REC-html40"
onload = "Startup()"
align="vertical">
<!-- Methods common to all editor dialogs -->
<script language="JavaScript" src="chrome://editor/content/EdDialogCommon.js"/>
<script language="JavaScript" src="chrome://editor/content/EdListProps.js"/>
<script language="JavaScript" src="chrome://global/content/dialogOverlay.js" />
<xul:keyset id="keyset"/>
<label for="ListType">&ListType.label;</label>
<select class="ComboBox" id="ListType" onchange="SelectListType()">
<option>&none.value;</option>
<option>&bulletList.value;</option>
<option>&numberList.value;</option>
<option>&definitionList.value;</option>
</select>
<xul:spring class="spacer"/>
<!-- message text and list items are set in JS
bulletStyle.label should be identical to string with id=BulletStyle in editor.properties -->
<div id="BulletStyleLabel">&bulletStyle.label;</div>
<select class="ComboBox" id="BulletStyle" style="min-width: 10em" onchange="SelectBulletStyle()"/>
<xul:spring class="spacer"/>
<xul:box align="horizontal">
<label id="StartingNumberLabel" for="StartingNumber">&startingNumber.label;</label>
<xul:spring class="spacer"/>
<input type="text" id="StartingNumber" size="3" onkeyup="forceInteger('StartingNumber')"/>
<xul:spring/>
</xul:box>
<xul:broadcaster id="args" value=""/>
<!-- from EdDialogOverlay -->
<xul:box id="AdvancedEdit"/>
<!-- from global dialogOverlay -->
<xul:box id="okCancelButtons"/>
</xul:window>