2007-03-22 10:30:00 -07:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
2012-06-25 16:11:16 -07:00
|
|
|
<!-- 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/. -->
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/"?>
|
|
|
|
|
|
|
|
<!DOCTYPE prefwindow [
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
|
|
|
|
<!ENTITY % ocspDTD SYSTEM "chrome://mozapps/locale/preferences/ocsp.dtd">
|
|
|
|
%brandDTD;
|
|
|
|
%ocspDTD;
|
|
|
|
]>
|
|
|
|
|
|
|
|
<prefwindow id="OCSPDialog" type="child"
|
|
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
|
|
dlgbuttons="accept,cancel"
|
2007-05-30 16:13:28 -07:00
|
|
|
title="&ocspDialog.title;">
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-10-15 20:39:11 -07:00
|
|
|
<prefpane id="OCSPDialogPane" onpaneload="gOCSPDialog._updateUI(0)">
|
2007-05-23 13:40:13 -07:00
|
|
|
<script type="application/javascript" src="chrome://mozapps/content/preferences/ocsp.js"/>
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
<preferences>
|
|
|
|
<preference id="security.OCSP.enabled" name="security.OCSP.enabled" type="int"/>
|
2007-05-30 16:13:28 -07:00
|
|
|
<preference id="security.OCSP.require" name="security.OCSP.require" type="bool"/>
|
2007-03-22 10:30:00 -07:00
|
|
|
</preferences>
|
|
|
|
|
2012-10-15 20:39:11 -07:00
|
|
|
<checkbox id="enableOCSP"
|
|
|
|
label="&enableOCSP.label;"
|
|
|
|
accesskey="&enableOCSP.accesskey;"
|
|
|
|
oncommand="gOCSPDialog._updateUI(1)"/>
|
|
|
|
<checkbox id="requireOCSP"
|
|
|
|
preference="security.OCSP.require"
|
2007-05-30 16:13:28 -07:00
|
|
|
label="&requireOCSP.label;"
|
|
|
|
accesskey="&requireOCSP.accesskey;"/>
|
2007-03-22 10:30:00 -07:00
|
|
|
</prefpane>
|
|
|
|
</prefwindow>
|