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