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 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd">
10 <overlay id="OrphanOverlay"
11 xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
12 xmlns:cert="http://netscape.com/rdf-cert#"
13 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
15 <vbox id="OrphanCerts">
16 <description>&certmgr.orphans;</description>
17 <separator class="thin"/>
18 <tree id="orphan-tree" flex="1" enableColumnDrag="true"
19 onselect="orphan_enableButtons()">
20 <treecols>
21 <treecol id="certcol" label="&certmgr.certname;" primary="true"
22 persist="hidden width ordinal" flex="1"/>
23 <splitter class="tree-splitter"/>
24 <treecol id="tokencol" label="&certmgr.tokenname;"
25 persist="hidden width ordinal" flex="1"/>
26 </treecols>
27 <treechildren ondblclick="viewCerts();"/>
28 </tree>
30 <separator class="thin"/>
32 <hbox>
33 <button id="orphan_viewButton" class="normal"
34 label="&certmgr.view2.label;"
35 accesskey="&certmgr.view2.accesskey;"
36 disabled="true" oncommand="viewCerts();"/>
37 <button id="orphan_exportButton" class="normal"
38 label="&certmgr.export.label;"
39 accesskey="&certmgr.export.accesskey;"
40 disabled="true" oncommand="exportCerts();"/>
41 <button id="orphan_deleteButton" class="normal"
42 label="&certmgr.delete2.label;"
43 accesskey="&certmgr.delete2.accesskey;"
44 disabled="true" oncommand="deleteCerts();"/>
45 </hbox>
46 </vbox>
47 </overlay>