|
1 <?xml version="1.0"?> |
|
2 |
|
3 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
4 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
6 |
|
7 <?xml-stylesheet href="chrome://global/skin/"?> |
|
8 |
|
9 <!DOCTYPE prefwindow [ |
|
10 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> |
|
11 <!ENTITY % ocspDTD SYSTEM "chrome://mozapps/locale/preferences/ocsp.dtd"> |
|
12 %brandDTD; |
|
13 %ocspDTD; |
|
14 ]> |
|
15 |
|
16 <prefwindow id="OCSPDialog" type="child" |
|
17 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
18 dlgbuttons="accept,cancel" |
|
19 title="&ocspDialog.title;"> |
|
20 |
|
21 <prefpane id="OCSPDialogPane" onpaneload="gOCSPDialog._updateUI(0)"> |
|
22 <script type="application/javascript" src="chrome://mozapps/content/preferences/ocsp.js"/> |
|
23 |
|
24 <preferences> |
|
25 <preference id="security.OCSP.enabled" name="security.OCSP.enabled" type="int"/> |
|
26 <preference id="security.OCSP.require" name="security.OCSP.require" type="bool"/> |
|
27 </preferences> |
|
28 |
|
29 <checkbox id="enableOCSP" |
|
30 label="&enableOCSP.label;" |
|
31 accesskey="&enableOCSP.accesskey;" |
|
32 oncommand="gOCSPDialog._updateUI(1)"/> |
|
33 <checkbox id="requireOCSP" |
|
34 preference="security.OCSP.require" |
|
35 label="&requireOCSP.label;" |
|
36 accesskey="&requireOCSP.accesskey;"/> |
|
37 </prefpane> |
|
38 </prefwindow> |