gecko-dev/xpfe/AppCores/xul/pref-advanced.xul

108 строки
3.0 KiB
XML

<?xml version="1.0"?>
<?xml-stylesheet href="xul.css" type="text/css"?>
<?xml-stylesheet href="dialog.css" type="text/css"?>
<?xml-stylesheet href="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:script>
<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:advanced.java.allow" />
&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>