Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd">
8 <overlay id="certDumpOverlay"
9 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
10 xmlns:cert="http://netscape.com/rdf-cert#"
11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
12 <vbox class="box-padded" id="certPrettyPrint" flex="1">
13 <label class="header" value="&certmgr.hierarchy.label;"/>
14 <tree id="treesetDump" onselect="updateCertDump();"
15 hidecolumnpicker="true" style="height: 8em;">
16 <treecols>
17 <treecol id="dumpCol" flex="1" primary="true" hideheader="true"/>
18 </treecols>
19 </tree>
21 <label class="header" value="&certmgr.details.label;"/>
22 <tree id="prettyDumpTree" style="height: 15em" treelines="true"
23 onselect="displaySelected();" hidecolumnpicker="true">
24 <treecols>
25 <treecol flex="1" id="certDataCol" primary="true" hideheader="true"/>
26 </treecols>
27 <treechildren/>
28 </tree>
30 <label class="header" value="&certmgr.fields.label;"/>
31 <textbox id="certDumpVal" multiline="true" rows="8"
32 readonly="true" style="font-family: -moz-fixed;"/>
34 <separator class="thin"/>
35 <hbox>
36 <button id="export_cert" class="normal" label="&certmgr.export.label;"
37 accesskey="&certmgr.export.accesskey;"
38 oncommand="exportToFile(window, getCurrentCert());"/>
39 </hbox>
40 </vbox>
41 </overlay>