home *** CD-ROM | disk | FTP | other *** search
- <?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/
-
- 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):
- Hσkan Waara <hwaara@chello.se>
- Peter Annema <disttsc@bart.nl>
- -->
-
- <?xml-stylesheet href="chrome://communicator/skin/" type="text/css"?>
- <?xml-stylesheet href="chrome://communicator/skin/dialogOverlay.css" type="text/css"?>
-
- <!DOCTYPE window SYSTEM "chrome://cookie/locale/pref-cookies.dtd">
-
- <window xmlns:html="http://www.w3.org/1999/xhtml" id="cookieWindow"
- xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- class="color-dialog"
- orient="vertical"
- onload="init();">
-
- <script type="application/x-javascript" src="chrome://cookie/content/cookieOverlay.js"/>
-
- <script type="application/x-javascript">
- <![CDATA[
-
- var _elementIDs = ["networkCookieBehaviour", "networkWarnAboutCookies"];
-
- function init()
- {
- parent.initPanel('chrome://cookie/content/pref-cookies.xul');
-
- var enabled = document.getElementById("networkCookieBehaviour").value != "2";
- setWarnAboutCookiesEnabled(enabled);
- }
-
- function setWarnAboutCookiesEnabled(aEnabled)
- {
- var warnCheckbox = document.getElementById("networkWarnAboutCookies");
- warnCheckbox.disabled = !aEnabled;
- if (parent.hPrefWindow.getPrefIsLocked(warnCheckbox.getAttribute("prefstring")) )
- warnCheckbox.disabled = true;
- }
-
- ]]>
- </script>
-
- <hbox class="box-smallheader" id="cookieHeader" title="&lHeader;"/>
-
- <groupbox orient="vertical">
- <label value="&cookiePolicy.label;"/>
-
- <html>&cookieDetails;</html>
-
- <radiogroup id="networkCookieBehaviour" orient="vertical" autostretch="never"
- pref="true" preftype="int" prefstring="network.cookie.cookieBehavior"
- prefattribute="value">
- <radio group="networkCookieBehaviour" value="2" label="&disableCookies.label;"
- accesskey="&disableCookies.accesskey;" oncommand="setWarnAboutCookiesEnabled(false);"/>
- <radio group="networkCookieBehaviour" value="1" label="&accOrgCookiesRadio.label;"
- accesskey="&accOrgCookiesRadio.accesskey;" oncommand="setWarnAboutCookiesEnabled(true);"/>
- <radio group="networkCookieBehaviour" value="0" label="&accAllCookiesRadio.label;"
- accesskey="&accAllCookiesRadio.accesskey;" oncommand="setWarnAboutCookiesEnabled(true);"/>
- </radiogroup>
-
- <separator/>
-
- <hbox autostretch="never">
- <checkbox id="networkWarnAboutCookies" label="&warnAboutCookies.label;" accesskey="&warnAboutCookies.accesskey;"
- pref="true" preftype="bool" prefstring="network.cookie.warnAboutCookies"
- prefattribute="checked"/>
- </hbox>
-
- <separator/>
-
- <hbox pack="end">
- <button class="dialog" label="&viewCookies.label;" accesskey="&viewCookies.accesskey;" oncommand="viewCookies();"
- id="viewCookieButton" pref="true" preftype="bool"
- prefstring="pref.advanced.cookies.disable_button.view_cookies" prefattribute="disabled"/>
- <button class="dialog" label="&viewTutorial.label;" accesskey="&viewTutorial.accesskey;" oncommand="viewTutorial();"
- id="moreInformation" pref="true" preftype="bool"
- prefstring="pref.advanced.cookies.disable_button.more_info" prefattribute="disabled"/>
- </hbox>
- </groupbox>
-
- </window>
-