1999-06-04 23:28:56 +00:00
|
|
|
<?xml version="1.0"?>
|
1999-08-10 02:48:56 +00:00
|
|
|
|
|
|
|
<!--
|
|
|
|
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/
|
|
|
|
|
|
|
|
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):
|
|
|
|
-->
|
2000-04-25 02:17:38 +00:00
|
|
|
<?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
|
2000-03-14 11:31:54 +00:00
|
|
|
<?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
|
1999-08-10 02:48:56 +00:00
|
|
|
|
2000-04-19 21:42:30 +00:00
|
|
|
<!DOCTYPE window SYSTEM "chrome://communicator/locale/pref/pref-advanced.dtd" >
|
1999-06-04 23:28:56 +00:00
|
|
|
|
2000-06-15 09:54:41 +00:00
|
|
|
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
2000-01-07 06:52:11 +00:00
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
2000-04-25 02:17:38 +00:00
|
|
|
class="color-dialog"
|
2000-01-05 02:08:19 +00:00
|
|
|
align="vertical" title="&window.title;"
|
2000-06-17 03:26:47 +00:00
|
|
|
onload="imageBlockingEnabled(); parent.initPanel(panel);">
|
2000-04-25 02:17:38 +00:00
|
|
|
|
|
|
|
<script language="JavaScript">
|
|
|
|
<![CDATA[
|
2000-06-17 03:26:47 +00:00
|
|
|
var panel = "chrome://communicator/content/pref/pref-advanced.xul";
|
|
|
|
_elementIDs = ["advancedAlwaysLoadImages", "advancedJavaAllow", "javascriptEnabled", "advancedMailFTP"];
|
2000-05-04 04:31:12 +00:00
|
|
|
|
|
|
|
function imageBlockingEnabled()
|
|
|
|
{
|
|
|
|
if( parent.hPrefWindow.getPref( "bool", "imageblocker.enabled" ) )
|
|
|
|
{
|
|
|
|
var element = document.getElementById("advancedAlwaysLoadImages");
|
|
|
|
element.setAttribute("hidden","true");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-25 02:17:38 +00:00
|
|
|
]]>
|
|
|
|
</script>
|
2000-05-02 03:01:38 +00:00
|
|
|
|
2000-04-25 02:17:38 +00:00
|
|
|
|
2000-04-30 02:47:45 +00:00
|
|
|
<box class="box-smallheader" title="&lHeader;"/>
|
1999-06-04 23:28:56 +00:00
|
|
|
|
2000-05-02 04:14:38 +00:00
|
|
|
<titledbox orient="vertical" id="advancedSettings" autostretch="never">
|
2000-04-30 02:47:45 +00:00
|
|
|
<title><text value="&advancedTitle.label;"/></title>
|
2000-05-02 03:01:38 +00:00
|
|
|
<checkbox id="advancedAlwaysLoadImages" value="&autoLoadImgCheck.label;" accesskey="&autoLoadImgCheck.accesskey;"
|
|
|
|
pref="true" preftype="bool" prefstring="advanced.always_load_images"
|
|
|
|
prefattribute="checked"/>
|
2000-04-25 02:17:38 +00:00
|
|
|
<checkbox id="advancedJavaAllow" value="&enbJavaCheck.label;" accesskey="&enbJavaCheck.accesskey;"
|
|
|
|
pref="true" preftype="bool" prefstring="security.enable_java"
|
|
|
|
prefattribute="checked"/>
|
|
|
|
<checkbox id="javascriptEnabled" value="&enbJsCheck.label;" accesskey="&enbJsCheck.accesskey;"
|
|
|
|
pref="true" preftype="bool" prefstring="javascript.enabled"
|
|
|
|
prefattribute="checked"/>
|
|
|
|
<checkbox id="advancedMailFTP" value="&sendAddFtpCheck.label;" accesskey="&sendAddFtpCheck.accesskey;"
|
|
|
|
pref="true" preftype="bool" prefstring="advanced.mailftp"
|
|
|
|
prefattribute="checked"/>
|
2000-04-30 02:47:45 +00:00
|
|
|
|
|
|
|
<separator/>
|
|
|
|
|
|
|
|
<html>&description.label;</html>
|
2000-02-14 01:42:09 +00:00
|
|
|
</titledbox>
|
1999-06-11 18:22:51 +00:00
|
|
|
|
2000-04-25 02:17:38 +00:00
|
|
|
|
1999-07-03 18:00:43 +00:00
|
|
|
</window>
|