mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
fd33841755
--HG-- extra : rebase_source : cc42d98604e38528f3bc9941dce4f15ec8ad5d67
114 lines
4.7 KiB
XML
114 lines
4.7 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!-- -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- -->
|
|
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
|
|
<!DOCTYPE overlay [
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
<!ENTITY % securityDTD SYSTEM "chrome://browser/locale/preferences/security.dtd">
|
|
%brandDTD;
|
|
%securityDTD;
|
|
]>
|
|
|
|
<overlay id="SecurityPaneOverlay"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
|
|
<prefpane id="paneSecurity"
|
|
onpaneload="gSecurityPane.init();"
|
|
helpTopic="prefs-security">
|
|
|
|
<preferences id="securityPreferences">
|
|
<!-- XXX buttons -->
|
|
<preference id="pref.privacy.disable_button.view_passwords"
|
|
name="pref.privacy.disable_button.view_passwords"
|
|
type="bool"/>
|
|
<preference id="pref.privacy.disable_button.view_passwords_exceptions"
|
|
name="pref.privacy.disable_button.view_passwords_exceptions"
|
|
type="bool"/>
|
|
|
|
<!-- Add-ons, malware, phishing -->
|
|
<preference id="xpinstall.whitelist.required"
|
|
name="xpinstall.whitelist.required"
|
|
type="bool"/>
|
|
<preference id="browser.safebrowsing.malware.enabled"
|
|
name="browser.safebrowsing.malware.enabled"
|
|
type="bool"/>
|
|
<preference id="browser.safebrowsing.enabled"
|
|
name="browser.safebrowsing.enabled"
|
|
type="bool"/>
|
|
|
|
<!-- Passwords -->
|
|
<preference id="signon.rememberSignons" name="signon.rememberSignons" type="bool"/>
|
|
|
|
</preferences>
|
|
|
|
<script type="application/javascript" src="chrome://browser/content/preferences/security.js"/>
|
|
|
|
<stringbundle id="bundlePreferences" src="chrome://browser/locale/preferences/preferences.properties"/>
|
|
|
|
<!-- addons, forgery (phishing) UI -->
|
|
<groupbox id="addonsPhishingGroup">
|
|
<hbox id="addonInstallBox">
|
|
<checkbox id="warnAddonInstall" flex="1"
|
|
label="&warnAddonInstall.label;"
|
|
accesskey="&warnAddonInstall.accesskey;"
|
|
preference="xpinstall.whitelist.required"
|
|
onsyncfrompreference="return gSecurityPane.readWarnAddonInstall();"/>
|
|
<button id="addonExceptions"
|
|
label="&addonExceptions.label;"
|
|
accesskey="&addonExceptions.accesskey;"
|
|
oncommand="gSecurityPane.showAddonExceptions();"/>
|
|
</hbox>
|
|
|
|
<separator class="thin"/>
|
|
<checkbox id="blockAttackSites"
|
|
label="&blockAttackSites.label;"
|
|
accesskey="&blockAttackSites.accesskey;"
|
|
preference="browser.safebrowsing.malware.enabled" />
|
|
<checkbox id="blockWebForgeries"
|
|
label="&blockWebForgeries.label;"
|
|
accesskey="&blockWebForgeries.accesskey;"
|
|
preference="browser.safebrowsing.enabled" />
|
|
</groupbox>
|
|
|
|
<!-- Passwords -->
|
|
<groupbox id="passwordsGroup" orient="vertical">
|
|
<caption label="&passwords.label;"/>
|
|
|
|
<hbox id="savePasswordsBox">
|
|
<checkbox id="savePasswords" flex="1"
|
|
label="&rememberPasswords.label;" accesskey="&rememberPasswords.accesskey;"
|
|
preference="signon.rememberSignons"
|
|
onsyncfrompreference="return gSecurityPane.readSavePasswords();"/>
|
|
<button id="passwordExceptions"
|
|
label="&passwordExceptions.label;"
|
|
accesskey="&passwordExceptions.accesskey;"
|
|
oncommand="gSecurityPane.showPasswordExceptions();"
|
|
preference="pref.privacy.disable_button.view_passwords_exceptions"/>
|
|
</hbox>
|
|
<hbox id="masterPasswordBox">
|
|
<checkbox id="useMasterPassword" flex="1"
|
|
oncommand="gSecurityPane.updateMasterPasswordButton();"
|
|
label="&useMasterPassword.label;"
|
|
accesskey="&useMasterPassword.accesskey;"/>
|
|
<button id="changeMasterPassword"
|
|
label="&changeMasterPassword.label;"
|
|
accesskey="&changeMasterPassword.accesskey;"
|
|
oncommand="gSecurityPane.changeMasterPassword();"/>
|
|
</hbox>
|
|
|
|
<hbox id="showPasswordsBox">
|
|
<spacer flex="1"/>
|
|
<button id="showPasswords"
|
|
label="&savedPasswords.label;" accesskey="&savedPasswords.accesskey;"
|
|
oncommand="gSecurityPane.showPasswords();"
|
|
preference="pref.privacy.disable_button.view_passwords"/>
|
|
</hbox>
|
|
</groupbox>
|
|
|
|
</prefpane>
|
|
|
|
</overlay>
|