2000-05-10 22:20:50 +00:00
|
|
|
<?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):
|
|
|
|
Bill Law <law@netscape.com>
|
|
|
|
-->
|
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
|
|
|
|
|
|
|
|
|
|
|
<!DOCTYPE window [
|
fixes for bugs: 44581, 52491, 52524, 52490, 52560, 52571, 52353, 52357, 52349, 43358. Spelling, wording and capitalization fixes. New Folder Dialog fixes. r=hangas
2000-09-15 06:41:01 +00:00
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://global/locale/brand.dtd" >
|
|
|
|
%brandDTD;
|
2000-05-10 22:20:50 +00:00
|
|
|
<!ENTITY % platformDTD SYSTEM "chrome://global/locale/platformDialogOverlay.dtd" >
|
|
|
|
%platformDTD;
|
|
|
|
<!ENTITY % prefWinhooksDTD SYSTEM "chrome://communicator/locale/pref/pref-winhooks.dtd" >
|
|
|
|
%prefWinhooksDTD;
|
|
|
|
]>
|
|
|
|
|
2000-06-15 09:54:41 +00:00
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
2000-08-18 04:49:33 +00:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
class="color-dialog"
|
|
|
|
onload="parent.initPanel('chrome://communicator/content/pref/pref-winhooks.xul');"
|
|
|
|
orient="vertical">
|
2000-05-10 22:20:50 +00:00
|
|
|
|
2000-05-17 06:29:22 +00:00
|
|
|
<script language="JavaScript" src="chrome://communicator/content/pref/pref-winhooks.js"></script>
|
2000-05-10 22:20:50 +00:00
|
|
|
|
|
|
|
<box class="box-smallheader" title="&title.label;"/>
|
|
|
|
|
|
|
|
<!-- File types -->
|
2000-08-17 19:03:27 +00:00
|
|
|
<titledbox>
|
2000-08-18 04:49:33 +00:00
|
|
|
<title value="&files.label;"/>
|
|
|
|
<box orient="vertical" flex="1">
|
|
|
|
<html>
|
2000-05-10 22:20:50 +00:00
|
|
|
&files.text;
|
|
|
|
</html>
|
2000-08-18 04:49:33 +00:00
|
|
|
<box class="indent">
|
|
|
|
<box orient="vertical" autostretch="never" flex="1">
|
2000-08-12 01:29:01 +00:00
|
|
|
<checkbox id="isHandlingHTML" value="&html.label;"/>
|
|
|
|
<checkbox id="isHandlingXML" value="&xml.label;"/>
|
|
|
|
<checkbox id="isHandlingXUL" value="&xul.label;"/>
|
|
|
|
</box>
|
2000-08-18 04:49:33 +00:00
|
|
|
<box orient="vertical" autostretch="never" flex="1">
|
2000-08-12 01:29:01 +00:00
|
|
|
<checkbox id="isHandlingJPEG" value="&jpeg.label;"/>
|
|
|
|
<checkbox id="isHandlingGIF" value="&gif.label;"/>
|
|
|
|
<checkbox id="isHandlingPNG" value="&png.label;"/>
|
|
|
|
</box>
|
|
|
|
</box>
|
2000-05-10 22:20:50 +00:00
|
|
|
</box>
|
|
|
|
</titledbox>
|
|
|
|
<!-- Internet Shortcuts -->
|
2000-08-17 19:03:27 +00:00
|
|
|
<titledbox>
|
2000-08-18 04:49:33 +00:00
|
|
|
<title value="&shortcuts.label;"/>
|
2000-05-17 06:29:22 +00:00
|
|
|
<box orient="vertical" autostretch="never" flex="1">
|
2000-08-18 04:49:33 +00:00
|
|
|
<html>
|
2000-05-10 22:20:50 +00:00
|
|
|
&shortcuts.text;
|
|
|
|
</html>
|
2000-08-18 04:49:33 +00:00
|
|
|
<checkbox id="isHandlingHTTP" value="&http.label;" class="indent"/>
|
|
|
|
<checkbox id="isHandlingHTTPS" value="&https.label;" class="indent"/>
|
|
|
|
<checkbox id="isHandlingFTP" value="&ftp.label;" class="indent"/>
|
|
|
|
<checkbox id="isHandlingCHROME" value="&chrome.label;" class="indent"/>
|
2000-05-10 22:20:50 +00:00
|
|
|
</box>
|
|
|
|
</titledbox>
|
2000-10-14 01:40:00 +00:00
|
|
|
<!-- Misc -->
|
|
|
|
<checkbox id="showDialog" value="&showDialog.label;"/>
|
2000-05-10 22:20:50 +00:00
|
|
|
|
|
|
|
</window>
|
|
|
|
|