mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
107 lines
3.0 KiB
XML
107 lines
3.0 KiB
XML
<?xml version="1.0"?>
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://global/skin/dialogs.css" type="text/css"?>
|
|
<?xml-stylesheet href="chrome://pref/skin/pref.css" type="text/css"?>
|
|
|
|
<!DOCTYPE window
|
|
[
|
|
<!ENTITY window.title "Advanced">
|
|
<!ENTITY advHeader "Advanced">
|
|
<!ENTITY autoLoadImgCheck.label "Automatically load images">
|
|
<!ENTITY enbJavaCheck.label "Enable Java">
|
|
<!ENTITY enbJsCheck.label "Enable JavaScript">
|
|
<!ENTITY enbJsCheck.labelforMailNNews "Enable JavaScript for Mail and News">
|
|
<!ENTITY enbCssCheck.label "Enable style sheets">
|
|
<!ENTITY sendAddFtpCheck.label "Send email address as anonymous FTP password">
|
|
<!ENTITY cookies "Cookies">
|
|
<!ENTITY accAllCookiesRadio.label "Accept all cookies">
|
|
<!ENTITY accpOrgCookiesRadio.label "Accept only cookies that get sent back to the originating server">
|
|
<!ENTITY disCookRadio.label "Disable cookies">
|
|
<!ENTITY warnCookCheck.label "Warn me before accepting a cookie">
|
|
]
|
|
|
|
>
|
|
|
|
<window xmlns:html="http://www.w3.org/TR/REC-html40"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
onload="return StartUp('Advanced');" title="&window.title;">
|
|
|
|
|
|
<html:script language="javascript" src="PrefsWindow.js"/>
|
|
|
|
<html:DIV ID="top"><html:SPAN ID="lefttext">
|
|
&advHeader;
|
|
</html:SPAN>
|
|
</html:DIV>
|
|
|
|
|
|
<html:table>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:advanced.always_load_images" />
|
|
&autoLoadImgCheck.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:security.enable_java" />
|
|
&enbJavaCheck.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:javascript.allow" />
|
|
&enbJsCheck.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:javascript.allow.mailnews" />
|
|
&enbJsCheck.labelforMailNNews;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:css.allow" />
|
|
&enbCssCheck.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:advanced.mailftp" />
|
|
&sendAddFtpCheck.label;
|
|
</html:td>
|
|
</html:tr>
|
|
|
|
</html:table>
|
|
|
|
&cookies;
|
|
<html:table>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input name="cookies" type="radio" id="pref:2:int:network.cookie.cookieBehavior" sel="checked" />
|
|
&accAllCookiesRadio.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input name="cookies" type="radio" id="pref:0:int:network.cookie.cookieBehavior" />
|
|
&accpOrgCookiesRadio.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input name="cookies" type="radio" id="pref:1:int:network.cookie.cookieBehavior" />
|
|
&disCookRadio.label;
|
|
</html:td>
|
|
</html:tr>
|
|
<html:tr>
|
|
<html:td>
|
|
<html:input type="checkbox" id="pref:0:bool:network.cookie.warnAboutCookies" />
|
|
&warnCookCheck.label;
|
|
</html:td>
|
|
</html:tr>
|
|
</html:table>
|
|
|
|
|
|
</window> |