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

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 <?xml version="1.0"?>
michael@0 2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
michael@0 3 - License, v. 2.0. If a copy of the MPL was not distributed with this file,
michael@0 4 - You can obtain one at http://mozilla.org/MPL/2.0/. -->
michael@0 5
michael@0 6 <?xml-stylesheet href="chrome://global/skin/global.css"?>
michael@0 7
michael@0 8 <?xml-stylesheet href="chrome://mozapps/content/preferences/preferences.css"?>
michael@0 9
michael@0 10 <?xml-stylesheet href="chrome://browser/skin/preferences/preferences.css"?>
michael@0 11 <?xml-stylesheet
michael@0 12 href="chrome://browser/skin/preferences/in-content/preferences.css"?>
michael@0 13 <?xml-stylesheet
michael@0 14 href="chrome://browser/content/preferences/handlers.css"?>
michael@0 15 <?xml-stylesheet href="chrome://browser/skin/preferences/applications.css"?>
michael@0 16
michael@0 17 <!DOCTYPE page [
michael@0 18 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
michael@0 19 <!ENTITY % preferencesDTD SYSTEM
michael@0 20 "chrome://browser/locale/preferences/preferences.dtd">
michael@0 21 <!ENTITY % privacyDTD SYSTEM "chrome://browser/locale/preferences/privacy.dtd">
michael@0 22 <!ENTITY % tabsDTD SYSTEM "chrome://browser/locale/preferences/tabs.dtd">
michael@0 23 <!ENTITY % syncBrandDTD SYSTEM "chrome://browser/locale/syncBrand.dtd">
michael@0 24 <!ENTITY % syncDTD SYSTEM "chrome://browser/locale/preferences/sync.dtd">
michael@0 25 <!ENTITY % securityDTD SYSTEM
michael@0 26 "chrome://browser/locale/preferences/security.dtd">
michael@0 27 <!ENTITY % sanitizeDTD SYSTEM "chrome://browser/locale/sanitize.dtd">
michael@0 28 <!ENTITY % mainDTD SYSTEM "chrome://browser/locale/preferences/main.dtd">
michael@0 29 <!ENTITY % aboutHomeDTD SYSTEM "chrome://browser/locale/aboutHome.dtd">
michael@0 30 <!ENTITY % contentDTD SYSTEM "chrome://browser/locale/preferences/content.dtd">
michael@0 31 <!ENTITY % applicationsDTD SYSTEM
michael@0 32 "chrome://browser/locale/preferences/applications.dtd">
michael@0 33 <!ENTITY % advancedDTD SYSTEM
michael@0 34 "chrome://browser/locale/preferences/advanced.dtd">
michael@0 35 %brandDTD;
michael@0 36 %preferencesDTD;
michael@0 37 %privacyDTD;
michael@0 38 %tabsDTD;
michael@0 39 %syncBrandDTD;
michael@0 40 %syncDTD;
michael@0 41 %securityDTD;
michael@0 42 %sanitizeDTD;
michael@0 43 %mainDTD;
michael@0 44 %aboutHomeDTD;
michael@0 45 %contentDTD;
michael@0 46 %applicationsDTD;
michael@0 47 %advancedDTD;
michael@0 48 ]>
michael@0 49
michael@0 50 #ifdef XP_WIN
michael@0 51 #define USE_WIN_TITLE_STYLE
michael@0 52 #endif
michael@0 53
michael@0 54 <page xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
michael@0 55 xmlns:html="http://www.w3.org/1999/xhtml"
michael@0 56 #ifdef USE_WIN_TITLE_STYLE
michael@0 57 title="&prefWindow.titleWin;">
michael@0 58 #else
michael@0 59 title="&prefWindow.titleGNOME;">
michael@0 60 #endif
michael@0 61
michael@0 62 <script type="application/javascript"
michael@0 63 src="chrome://browser/content/utilityOverlay.js"/>
michael@0 64 <script type="application/javascript"
michael@0 65 src="chrome://browser/content/preferences/in-content/preferences.js"/>
michael@0 66
michael@0 67 <stringbundle id="bundleBrand"
michael@0 68 src="chrome://branding/locale/brand.properties"/>
michael@0 69 <stringbundle id="bundlePreferences"
michael@0 70 src="chrome://browser/locale/preferences/preferences.properties"/>
michael@0 71
michael@0 72 <stringbundleset id="appManagerBundleset">
michael@0 73 <stringbundle id="appManagerBundle"
michael@0 74 src="chrome://browser/locale/preferences/applicationManager.properties"/>
michael@0 75 </stringbundleset>
michael@0 76
michael@0 77 <hbox flex="1">
michael@0 78
michael@0 79 <!-- category list -->
michael@0 80 <richlistbox id="categories">
michael@0 81 <richlistitem id="category-general" class="category" align="center"
michael@0 82 value="paneGeneral" tooltiptext="&paneGeneral.title;">
michael@0 83 <image class="category-icon"/>
michael@0 84 <label class="category-name" flex="1" value="&paneGeneral.title;"/>
michael@0 85 </richlistitem>
michael@0 86
michael@0 87 <richlistitem id="category-content" class="category" align="center"
michael@0 88 value="paneContent" tooltiptext="&paneContent.title;">
michael@0 89 <image class="category-icon"/>
michael@0 90 <label class="category-name" flex="1" value="&paneContent.title;"/>
michael@0 91 </richlistitem>
michael@0 92
michael@0 93 <richlistitem id="category-application" class="category" align="center"
michael@0 94 value="paneApplications" tooltiptext="&paneApplications.title;">
michael@0 95 <image class="category-icon"/>
michael@0 96 <label class="category-name" flex="1" value="&paneApplications.title;"/>
michael@0 97 </richlistitem>
michael@0 98
michael@0 99 <richlistitem id="category-privacy" class="category" align="center"
michael@0 100 value="panePrivacy" tooltiptext="&panePrivacy.title;">
michael@0 101 <image class="category-icon"/>
michael@0 102 <label class="category-name" flex="1" value="&panePrivacy.title;"/>
michael@0 103 </richlistitem>
michael@0 104
michael@0 105 <richlistitem id="category-security" class="category" align="center"
michael@0 106 value="paneSecurity" tooltiptext="&paneSecurity.title;">
michael@0 107 <image class="category-icon"/>
michael@0 108 <label class="category-name" flex="1" value="&paneSecurity.title;"/>
michael@0 109 </richlistitem>
michael@0 110
michael@0 111 #ifdef MOZ_SERVICES_SYNC
michael@0 112 <richlistitem id="category-sync" class="category" align="center"
michael@0 113 value="paneSync" tooltiptext="&paneSync.title;">
michael@0 114 <image class="category-icon"/>
michael@0 115 <label class="category-name" flex="1" value="&paneSync.title;"/>
michael@0 116 </richlistitem>
michael@0 117 #endif
michael@0 118
michael@0 119 <richlistitem id="category-advanced" class="category" align="center"
michael@0 120 value="paneAdvanced" tooltiptext="&paneAdvanced.title;">
michael@0 121 <image class="category-icon"/>
michael@0 122 <label class="category-name" flex="1" value="&paneAdvanced.title;"/>
michael@0 123 </richlistitem>
michael@0 124 </richlistbox>
michael@0 125
michael@0 126 <box class="main-content" flex="1">
michael@0 127 <prefpane flex="1" id="mainPrefPane">
michael@0 128 #include main.xul
michael@0 129 #include privacy.xul
michael@0 130 #include advanced.xul
michael@0 131 #include applications.xul
michael@0 132 #include content.xul
michael@0 133 #include security.xul
michael@0 134 #ifdef MOZ_SERVICES_SYNC
michael@0 135 #include sync.xul
michael@0 136 #endif
michael@0 137 </prefpane>
michael@0 138 </box>
michael@0 139
michael@0 140 </hbox>
michael@0 141 </page>

mercurial