browser/components/preferences/in-content/security.xul

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 - License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 3 - You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 4
michael@0 5 <script type="application/javascript"
michael@0 6 src="chrome://browser/content/preferences/in-content/security.js"/>
michael@0 7
michael@0 8 <preferences id="securityPreferences">
michael@0 9 <!-- XXX buttons -->
michael@0 10 <preference id="pref.privacy.disable_button.view_passwords"
michael@0 11 name="pref.privacy.disable_button.view_passwords"
michael@0 12 type="bool"/>
michael@0 13 <preference id="pref.privacy.disable_button.view_passwords_exceptions"
michael@0 14 name="pref.privacy.disable_button.view_passwords_exceptions"
michael@0 15 type="bool"/>
michael@0 16
michael@0 17 <!-- Add-ons, malware, phishing -->
michael@0 18 <preference id="xpinstall.whitelist.required"
michael@0 19 name="xpinstall.whitelist.required"
michael@0 20 type="bool"/>
michael@0 21 <preference id="browser.safebrowsing.malware.enabled"
michael@0 22 name="browser.safebrowsing.malware.enabled"
michael@0 23 type="bool"/>
michael@0 24 <preference id="browser.safebrowsing.enabled"
michael@0 25 name="browser.safebrowsing.enabled"
michael@0 26 type="bool"/>
michael@0 27
michael@0 28 <!-- Passwords -->
michael@0 29 <preference id="signon.rememberSignons" name="signon.rememberSignons" type="bool"/>
michael@0 30
michael@0 31 </preferences>
michael@0 32
michael@0 33 <hbox id="header-security"
michael@0 34 class="header"
michael@0 35 hidden="true"
michael@0 36 data-category="paneSecurity">
michael@0 37 <image class="header-icon"/>
michael@0 38 <label class="header-name"
michael@0 39 value="&paneSecurity.title;"/>
michael@0 40 </hbox>
michael@0 41
michael@0 42 <!-- addons, forgery (phishing) UI -->
michael@0 43 <groupbox id="addonsPhishingGroup" data-category="paneSecurity" hidden="true">
michael@0 44 <caption label="&general.label;"/>
michael@0 45
michael@0 46 <hbox id="addonInstallBox">
michael@0 47 <checkbox id="warnAddonInstall" flex="1"
michael@0 48 label="&warnAddonInstall.label;"
michael@0 49 accesskey="&warnAddonInstall.accesskey;"
michael@0 50 preference="xpinstall.whitelist.required"
michael@0 51 onsyncfrompreference="return gSecurityPane.readWarnAddonInstall();"/>
michael@0 52 <button id="addonExceptions"
michael@0 53 label="&addonExceptions.label;"
michael@0 54 accesskey="&addonExceptions.accesskey;"
michael@0 55 oncommand="gSecurityPane.showAddonExceptions();"/>
michael@0 56 </hbox>
michael@0 57
michael@0 58 <separator class="thin"/>
michael@0 59 <checkbox id="blockAttackSites"
michael@0 60 label="&blockAttackSites.label;"
michael@0 61 accesskey="&blockAttackSites.accesskey;"
michael@0 62 preference="browser.safebrowsing.malware.enabled" />
michael@0 63 <checkbox id="blockWebForgeries"
michael@0 64 label="&blockWebForgeries.label;"
michael@0 65 accesskey="&blockWebForgeries.accesskey;"
michael@0 66 preference="browser.safebrowsing.enabled" />
michael@0 67 </groupbox>
michael@0 68
michael@0 69 <!-- Passwords -->
michael@0 70 <groupbox id="passwordsGroup" orient="vertical" data-category="paneSecurity" hidden="true">
michael@0 71 <caption label="&passwords.label;"/>
michael@0 72
michael@0 73 <hbox id="savePasswordsBox">
michael@0 74 <checkbox id="savePasswords" flex="1"
michael@0 75 label="&rememberPasswords.label;" accesskey="&rememberPasswords.accesskey;"
michael@0 76 preference="signon.rememberSignons"
michael@0 77 onsyncfrompreference="return gSecurityPane.readSavePasswords();"/>
michael@0 78 <button id="passwordExceptions"
michael@0 79 label="&passwordExceptions.label;"
michael@0 80 accesskey="&passwordExceptions.accesskey;"
michael@0 81 oncommand="gSecurityPane.showPasswordExceptions();"
michael@0 82 preference="pref.privacy.disable_button.view_passwords_exceptions"/>
michael@0 83 </hbox>
michael@0 84 <hbox id="masterPasswordBox">
michael@0 85 <checkbox id="useMasterPassword" flex="1"
michael@0 86 oncommand="gSecurityPane.updateMasterPasswordButton();"
michael@0 87 label="&useMasterPassword.label;"
michael@0 88 accesskey="&useMasterPassword.accesskey;"/>
michael@0 89 <button id="changeMasterPassword"
michael@0 90 label="&changeMasterPassword.label;"
michael@0 91 accesskey="&changeMasterPassword.accesskey;"
michael@0 92 oncommand="gSecurityPane.changeMasterPassword();"/>
michael@0 93 </hbox>
michael@0 94
michael@0 95 <hbox id="showPasswordsBox">
michael@0 96 <spacer flex="1"/>
michael@0 97 <button id="showPasswords"
michael@0 98 label="&savedPasswords.label;" accesskey="&savedPasswords.accesskey;"
michael@0 99 oncommand="gSecurityPane.showPasswords();"
michael@0 100 preference="pref.privacy.disable_button.view_passwords"/>
michael@0 101 </hbox>
michael@0 102 </groupbox>

mercurial