mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
cfceba7dca
Fix some CSS errors found with CSS parser error reporting, with Ben's approval.
95 lines
3.1 KiB
XML
95 lines
3.1 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):
|
|
Ben Goodger <ben@netscape.com>, original implementor
|
|
-->
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-applications-edit.dtd">
|
|
|
|
<window id="newFileType"
|
|
class="dialog" style="width: 30em; -moz-user-focus: ignore;"
|
|
orient="vertical"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
title="&newTypeTitle.label;"
|
|
onload="Startup();">
|
|
|
|
<script language="JavaScript" src="chrome://global/content/strres.js"></script>
|
|
<script language="JavaScript" src="chrome://global/content/nsJSComponentManager.js"></script>
|
|
<script language="JavaScript" src="chrome://communicator/content/pref/overrideHandler.js"></script>
|
|
<script language="JavaScript" src="chrome://communicator/content/pref/pref-applications-new.js"></script>
|
|
|
|
<keyset id="keyset"/>
|
|
|
|
<grid flex="1">
|
|
<columns>
|
|
<column/>
|
|
<column flex="1"/>
|
|
</columns>
|
|
|
|
<rows>
|
|
<row>
|
|
<text class="label" value="&newDescription.label;" accesskey="&newDescription.accesskey;"
|
|
for="description"/>
|
|
<textfield id="description" flex="1"/>
|
|
</row>
|
|
<row>
|
|
<text class="label" value="&newExtensions.label;" accesskey="&newExtensions.accesskey;"
|
|
for="extensions"/>
|
|
<textfield id="extensions" flex="1"/>
|
|
</row>
|
|
<row>
|
|
<text class="label" value="&newMIME.label;" accesskey="&newMIME.accesskey;"
|
|
for="mimeType"/>
|
|
<textfield id="mimeType" flex="1"/>
|
|
</row>
|
|
<row>
|
|
<text class="label" value="&newAppPath.label;" accesskey="&newAppPath.accesskey;"
|
|
for="appPath"/>
|
|
<textfield id="appPath" flex="1"/>
|
|
</row>
|
|
<row>
|
|
<spring/>
|
|
<box>
|
|
<spring flex="1"/>
|
|
<button value="&browse.label;" accesskey="&browse.accesskey;"
|
|
oncommand="chooseApp();"/>
|
|
</box>
|
|
</row>
|
|
</rows>
|
|
</grid>
|
|
|
|
<separator class="thin"/>
|
|
|
|
<box autostretch="never">
|
|
<checkbox id="outgoingDefault" value="&outgoingDefault.label;" accesskey="&outgoingDefault.accesskey;" disabled="true"/>
|
|
</box>
|
|
|
|
<separator/>
|
|
|
|
<box id="okCancelButtonsRight"/>
|
|
|
|
</window>
|
|
|