mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
241 lines
9.0 KiB
JavaScript
241 lines
9.0 KiB
JavaScript
# -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
#
|
|
# The contents of this file are subject to the Mozilla 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/MPL/
|
|
#
|
|
# 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 the Firefox Preferences System.
|
|
#
|
|
# The Initial Developer of the Original Code is Ben Goodger.
|
|
# Portions created by the Initial Developer are Copyright (C) 2005
|
|
# the Initial Developer. All Rights Reserved.
|
|
#
|
|
# Contributor(s):
|
|
# Ben Goodger <ben@mozilla.org>
|
|
#
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
# the provisions above, a recipient may use your version of this file under
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
|
#
|
|
# ***** END LICENSE BLOCK *****
|
|
|
|
var gPrivacyPane = {
|
|
_inited: false,
|
|
tabSelectionChanged: function (event)
|
|
{
|
|
if (event.target.localName != "tabpanels" || !this._inited)
|
|
return;
|
|
var privacyPrefs = document.getElementById("privacyPrefs");
|
|
var preference = document.getElementById("browser.preferences.privacy.selectedTabIndex");
|
|
preference.valueFromPreferences = privacyPrefs.selectedIndex;
|
|
},
|
|
|
|
_sanitizer: null,
|
|
init: function ()
|
|
{
|
|
this._inited = true;
|
|
var privacyPrefs = document.getElementById("privacyPrefs");
|
|
var preference = document.getElementById("browser.preferences.privacy.selectedTabIndex");
|
|
if (preference.value !== null)
|
|
privacyPrefs.selectedIndex = preference.value;
|
|
|
|
// Update the clear buttons
|
|
if (!this._sanitizer)
|
|
this._sanitizer = new Sanitizer();
|
|
this._updateClearButtons();
|
|
|
|
window.addEventListener("unload", this.uninit, false);
|
|
|
|
// Update the MP buttons
|
|
this.updateMasterPasswordButton();
|
|
},
|
|
|
|
uninit: function ()
|
|
{
|
|
if (this._updateInterval != -1)
|
|
clearInterval(this._updateInterval);
|
|
},
|
|
|
|
_updateInterval: -1,
|
|
_updateClearButtons: function ()
|
|
{
|
|
var buttons = document.getElementsByAttribute("item", "*");
|
|
var buttonCount = buttons.length;
|
|
for (var i = 0; i < buttonCount; ++i)
|
|
buttons[i].disabled = !this._sanitizer.canClearItem(buttons[i].getAttribute("item"));
|
|
},
|
|
|
|
#if 0
|
|
onItemSelect: function ()
|
|
{
|
|
var itemList = document.getElementById("itemList");
|
|
var itemPreferences = document.getElementById("itemPreferences");
|
|
itemPreferences.setAttribute("selectedIndex", itemList.selectedIndex);
|
|
itemList.setAttribute("lastSelected", itemList.selectedIndex);
|
|
document.persist("itemList", "lastSelected");
|
|
},
|
|
#endif
|
|
showSanitizeSettings: function ()
|
|
{
|
|
document.documentElement.openSubDialog("chrome://browser/content/preferences/sanitize.xul",
|
|
"", null);
|
|
},
|
|
|
|
_enableRestrictedWasChecked: false,
|
|
writeEnableCookiesPref: function ()
|
|
{
|
|
var enableCookies = document.getElementById("enableCookies");
|
|
if (enableCookies.checked) {
|
|
var enableRestricted = document.getElementById("enableCookiesForOriginating");
|
|
this._enableRestrictedWasChecked = enableRestricted.checked;
|
|
return this._enableRestrictedWasChecked ? 1 : 0;
|
|
}
|
|
return 2;
|
|
},
|
|
|
|
readEnableCookiesPref: function ()
|
|
{
|
|
var pref = document.getElementById("network.cookie.cookieBehavior");
|
|
var enableRestricted = document.getElementById("enableCookiesForOriginating");
|
|
enableRestricted.disabled = pref.value == 2;
|
|
this.enableCookiesChanged();
|
|
return (pref.value == 0 || pref.value == 1);
|
|
},
|
|
|
|
readEnableRestrictedPref: function ()
|
|
{
|
|
var pref = document.getElementById("network.cookie.cookieBehavior");
|
|
return pref.value != 2 ? pref.value : this._enableRestrictedWasChecked;
|
|
},
|
|
|
|
enableCookiesChanged: function ()
|
|
{
|
|
var preference = document.getElementById("network.cookie.cookieBehavior");
|
|
var blockFutureCookies = document.getElementById("network.cookie.blockFutureCookies");
|
|
blockFutureCookies.disabled = preference.value == 2;
|
|
var lifetimePref = document.getElementById("network.cookie.lifetimePolicy");
|
|
lifetimePref.disabled = preference.value == 2;
|
|
},
|
|
|
|
readCacheSizePref: function ()
|
|
{
|
|
var preference = document.getElementById("browser.cache.disk.capacity");
|
|
return preference.value / 1000;
|
|
},
|
|
|
|
writeCacheSizePref: function ()
|
|
{
|
|
var cacheSize = document.getElementById("cacheSize");
|
|
var intValue = parseInt(cacheSize.value, 10) + '';
|
|
return intValue != "NaN" ? intValue * 1000 : 0;
|
|
},
|
|
|
|
_sanitizer: null,
|
|
clear: function (aButton)
|
|
{
|
|
var category = aButton.getAttribute("item");
|
|
this._sanitizer.clearItem(category);
|
|
if (category == "cache")
|
|
aButton.disabled = true;
|
|
else
|
|
aButton.disabled = !this._sanitizer.canClearItem(category);
|
|
if (this._updateInterval == -1)
|
|
this._updateInterval = setInterval("gPrivacyPane._updateClearButtons()", 10000);
|
|
},
|
|
|
|
viewCookies: function (aCategory)
|
|
{
|
|
document.documentElement.openWindow("Browser:Cookies",
|
|
"chrome://browser/content/preferences/cookies.xul",
|
|
"", null);
|
|
},
|
|
viewDownloads: function (aCategory)
|
|
{
|
|
document.documentElement.openWindow("Download:Manager",
|
|
"chrome://mozapps/content/downloads/downloads.xul",
|
|
"", null);
|
|
},
|
|
viewPasswords: function (aCategory)
|
|
{
|
|
document.documentElement.openWindow("Toolkit:PasswordManager",
|
|
"chrome://passwordmgr/content/passwordManager.xul",
|
|
"", null);
|
|
},
|
|
|
|
viewCookieExceptions: function ()
|
|
{
|
|
var bundlePreferences = document.getElementById("bundlePreferences");
|
|
var params = { blockVisible : true,
|
|
sessionVisible : true,
|
|
allowVisible : true,
|
|
prefilledHost : "",
|
|
permissionType : "cookie",
|
|
windowTitle : bundlePreferences.getString("cookiepermissionstitle"),
|
|
introText : bundlePreferences.getString("cookiepermissionstext") };
|
|
document.documentElement.openWindow("Browser:Permissions",
|
|
"chrome://browser/content/preferences/permissions.xul",
|
|
"", params);
|
|
},
|
|
|
|
changeMasterPassword: function ()
|
|
{
|
|
document.documentElement.openSubDialog("chrome://mozapps/content/preferences/changemp.xul",
|
|
"", null);
|
|
this.updateMasterPasswordButton();
|
|
},
|
|
|
|
updateMasterPasswordButton: function ()
|
|
{
|
|
// See if there's a master password and set the button label accordingly
|
|
var secmodDB = Components.classes["@mozilla.org/security/pkcs11moduledb;1"]
|
|
.getService(Components.interfaces.nsIPKCS11ModuleDB);
|
|
var slot = secmodDB.findSlotByName("");
|
|
if (slot) {
|
|
const nsIPKCS11Slot = Components.interfaces.nsIPKCS11Slot;
|
|
var status = slot.status;
|
|
var noMP = status == nsIPKCS11Slot.SLOT_UNINITIALIZED ||
|
|
status == nsIPKCS11Slot.SLOT_READY;
|
|
|
|
var bundle = document.getElementById("bundlePreferences");
|
|
var button = document.getElementById("setMasterPassword");
|
|
button.label = bundle.getString(noMP ? "setMasterPassword" : "changeMasterPassword");
|
|
|
|
var removeButton = document.getElementById("removeMasterPassword");
|
|
removeButton.disabled = noMP;
|
|
}
|
|
},
|
|
|
|
removeMasterPassword: function ()
|
|
{
|
|
var secmodDB = Components.classes["@mozilla.org/security/pkcs11moduledb;1"]
|
|
.getService(Components.interfaces.nsIPKCS11ModuleDB);
|
|
if (secmodDB.isFIPSEnabled) {
|
|
var bundle = document.getElementById("bundlePreferences");
|
|
promptService.alert(window,
|
|
bundle.getString("pw_change_failed_title"),
|
|
bundle.getString("pw_change2empty_in_fips_mode"));
|
|
}
|
|
else {
|
|
document.documentElement.openSubDialog("chrome://mozapps/content/preferences/removemp.xul",
|
|
"", null);
|
|
this.updateMasterPasswordButton();
|
|
document.getElementById("setMasterPassword").focus();
|
|
}
|
|
}
|
|
};
|