mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
59e8a98258
r=honzab
106 lines
4.4 KiB
XML
106 lines
4.4 KiB
XML
<?xml version="1.0"?>
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version
|
|
1.1 (the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
http://www.mozilla.org/MPL/
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis,
|
|
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
for the specific language governing rights and limitations under the
|
|
License.
|
|
|
|
The Original Code is Mozilla Communicator client code, released
|
|
March 31, 1998.
|
|
|
|
The Initial Developer of the Original Code is
|
|
Netscape Communications Corporation.
|
|
Portions created by the Initial Developer are Copyright (C) 1998-1999
|
|
the Initial Developer. All Rights Reserved.
|
|
|
|
Contributor(s):
|
|
David Drinan (ddrinan@netscape.com)
|
|
|
|
Alternatively, the contents of this file may be used under the terms of
|
|
either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
in which case the provisions of the GPL or the LGPL are applicable instead
|
|
of those above. If you wish to allow use of your version of this file only
|
|
under the terms of either the GPL or the LGPL, and not to allow others to
|
|
use your version of this file under the terms of the MPL, indicate your
|
|
decision by deleting the provisions above and replace them with the notice
|
|
and other provisions required by the GPL or the LGPL. If you do not delete
|
|
the provisions above, a recipient may use your version of this file under
|
|
the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
***** END LICENSE BLOCK ***** -->
|
|
|
|
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
|
|
|
|
<!DOCTYPE dialog [
|
|
<!ENTITY % prefValDTD SYSTEM "chrome://pippki/locale/validation.dtd">
|
|
%prefValDTD;
|
|
<!ENTITY % prefCertMgrDTD SYSTEM "chrome://pippki/locale/certManager.dtd">
|
|
%prefCertMgrDTD;
|
|
]>
|
|
|
|
<dialog id="crlviewer"
|
|
windowtype="mozilla:crlmanager"
|
|
title="&validation.crlmanager.label;"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
|
style="width: 65ch;"
|
|
onload="onLoad();"
|
|
buttons="accept"
|
|
buttonlabelaccept="&certmgr.close.label;"
|
|
persist="screenX screenY width height">
|
|
|
|
<stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
|
|
<script type="application/javascript" src="chrome://global/content/strres.js"/>
|
|
<script type="application/javascript" src="chrome://pippki/content/crlManager.js"/>
|
|
|
|
<description value="&validation.crlmanager.description;"/>
|
|
<separator class="thin"/>
|
|
<tree id="crltree" style="height: 10em;"
|
|
onselect="EnableCrlActions()" flex="1">
|
|
<treecols>
|
|
<treecol id="Col1" flex="3" label="&certmgr.certdetail.o;"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol id="Col2" flex="5" label="&certmgr.certdetail.ou;"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol id="Col3" flex="2" label="&validation.crllastupdate.label;"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol id="Col4" flex="2" label="&validation.crlnextupdate.label;"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol id="Col5" flex="2" label="&validation.crlautoupdateenabled.label;"/>
|
|
<splitter class="tree-splitter"/>
|
|
<treecol id="Col6" flex="3" label="&validation.crlautoupdatestatus.label;"/>
|
|
</treecols>
|
|
|
|
<treechildren id="crlList"/>
|
|
</tree>
|
|
<separator class="thin"/>
|
|
|
|
<hbox id="dialogButtons">
|
|
<button id="deleteCrl" disabled="true"
|
|
label="&validation.deletecrl.label;"
|
|
accesskey="&validation.deletecrl.accesskey;"
|
|
oncommand="DeleteCrlSelected();"/>
|
|
<button id="editPrefs" class="push" disabled="true"
|
|
label="&validation.advanced.label;"
|
|
accesskey="&validation.advanced.accesskey;"
|
|
oncommand="EditAutoUpdatePrefs();"/>
|
|
<button id="updateCRL" class="push" disabled="true"
|
|
label="&validation.updatecrl.label;"
|
|
accesskey="&validation.updatecrl.accesskey;"
|
|
oncommand="UpdateCRL();"/>
|
|
<button id="importCRL" class="push"
|
|
label="&certmgr.restore2.label;"
|
|
accesskey="&certmgr.restore2.accesskey;"
|
|
oncommand="ImportCRL();"/>
|
|
<spacer flex="2"/>
|
|
<button dlgtype="accept"/>
|
|
</hbox>
|
|
</dialog>
|