gecko-dev/xpfe/components/permissions/content/cookieTasksOverlay.xul

139 строки
5.2 KiB
Plaintext
Исходник Обычный вид История

2001-02-21 08:14:11 +03: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):
-->
<!DOCTYPE window SYSTEM "chrome://cookie/locale/cookieTasksOverlay.dtd">
2001-02-21 08:14:11 +03:00
<overlay id="cookieTasksOverlay"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script type="application/x-javascript" src="chrome://cookie/content/cookieOverlay.js"/>
2001-02-21 08:14:11 +03:00
<script type="application/x-javascript">
2001-02-21 08:14:11 +03:00
<![CDATA[
// Remove the image entries from the task menu
function HideImage() {
var element;
element = document.getElementById("image");
element.setAttribute("style","display: none;" );
element.setAttribute("disabled","true" );
}
// determine if we need to remove the image entries from the task menu
function CheckForImage()
{
// remove image functions (unless overruled by the "imageblocker.enabled" pref)
try {
if (!this.pref.GetBoolPref("imageblocker.enabled")) {
HideImage();
}
} catch(e) {
HideImage();
2001-02-21 08:14:11 +03:00
dump("imageblocker.enabled pref is missing from all.js\n");
}
}
// perform a Cookie or Image action
function CookieImageAction(action) {
var cookieViewer =
Components.classes["@mozilla.org/cookieviewer/cookieviewer-world;1"]
.createInstance(Components.interfaces["nsICookieViewer"]);
var COOKIEPERMISSION = 0;
var IMAGEPERMISSION = 1;
switch (action) {
case "cookieAllow":
cookieViewer.AddPermission(window._content, true, COOKIEPERMISSION);
element = document.getElementById("AllowCookies");
alert(element.getAttribute("msg"));
break;
case "cookieBlock":
cookieViewer.AddPermission(window._content, false, COOKIEPERMISSION);
element = document.getElementById("BlockCookies");
alert(element.getAttribute("msg"));
break;
case "imageAllow":
cookieViewer.AddPermission(window._content, true, IMAGEPERMISSION);
element = document.getElementById("AllowImages");
alert(element.getAttribute("msg"));
break;
case "imageBlock":
cookieViewer.AddPermission(window._content, false, IMAGEPERMISSION);
element = document.getElementById("BlockImages");
alert(element.getAttribute("msg"));
break;
default:
}
}
]]>
</script>
<!-- tasksOverlay menu items -->
<menupopup id="personalManagers">
<menu label="&cookieCookieManager.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieCookieManager.accesskey;"
position="1">
<menupopup>
<menuitem label="&cookieDisplayCookiesCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieDisplayCookiesCmd.accesskey;"
oncommand="viewCookies();"/>
<menuitem id="AllowCookies" label="&cookieAllowCookiesCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieAllowCookiesCmd.accesskey;"
msg="&cookieAllowCookiesMsg.label;"
oncommand="CookieImageAction('cookieAllow');"/>
<menuitem id="BlockCookies" label="&cookieBlockCookiesCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieBlockCookiesCmd.accesskey;"
msg="&cookieBlockCookiesMsg.label;"
oncommand="CookieImageAction('cookieBlock');"/>
</menupopup>
</menu>
<menu label="&cookieImageManager.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieImageManager.accesskey;" id="image"
position="2">
<menupopup oncreate="CheckForImage()">
<menuitem label="&cookieDisplayImagesCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieDisplayImagesCmd.accesskey;"
oncommand="viewImages();"/>
<menuitem id="AllowImages" label="&cookieAllowImagesCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieAllowImagesCmd.accesskey;"
msg="&cookieAllowImagesMsg.label;"
oncommand="CookieImageAction('imageAllow');"/>
<menuitem id="BlockImages" label="&cookieBlockImagesCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieBlockImagesCmd.accesskey;"
msg="&cookieBlockImagesMsg.label;"
oncommand="CookieImageAction('imageBlock');"/>
</menupopup>
</menu>
<menuseparator insertbefore="lastInPersonalManagers"/>
<menuitem label="&cookieTutorialCmd.label;"
2001-02-21 08:14:11 +03:00
accesskey="&cookieTutorialCmd.accesskey;"
oncommand="viewTutorial();"
insertbefore="lastInPersonalManagers"/>
</menupopup>
</overlay>