Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <?xml version="1.0"?> |
michael@0 | 2 | <!-- This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | - License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
michael@0 | 5 | |
michael@0 | 6 | <?xml-stylesheet href="chrome://global/skin/" type="text/css"?> |
michael@0 | 7 | |
michael@0 | 8 | <!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd"> |
michael@0 | 9 | |
michael@0 | 10 | <overlay id="OrphanOverlay" |
michael@0 | 11 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
michael@0 | 12 | xmlns:cert="http://netscape.com/rdf-cert#" |
michael@0 | 13 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
michael@0 | 14 | |
michael@0 | 15 | <vbox id="OrphanCerts"> |
michael@0 | 16 | <description>&certmgr.orphans;</description> |
michael@0 | 17 | <separator class="thin"/> |
michael@0 | 18 | <tree id="orphan-tree" flex="1" enableColumnDrag="true" |
michael@0 | 19 | onselect="orphan_enableButtons()"> |
michael@0 | 20 | <treecols> |
michael@0 | 21 | <treecol id="certcol" label="&certmgr.certname;" primary="true" |
michael@0 | 22 | persist="hidden width ordinal" flex="1"/> |
michael@0 | 23 | <splitter class="tree-splitter"/> |
michael@0 | 24 | <treecol id="tokencol" label="&certmgr.tokenname;" |
michael@0 | 25 | persist="hidden width ordinal" flex="1"/> |
michael@0 | 26 | </treecols> |
michael@0 | 27 | <treechildren ondblclick="viewCerts();"/> |
michael@0 | 28 | </tree> |
michael@0 | 29 | |
michael@0 | 30 | <separator class="thin"/> |
michael@0 | 31 | |
michael@0 | 32 | <hbox> |
michael@0 | 33 | <button id="orphan_viewButton" class="normal" |
michael@0 | 34 | label="&certmgr.view2.label;" |
michael@0 | 35 | accesskey="&certmgr.view2.accesskey;" |
michael@0 | 36 | disabled="true" oncommand="viewCerts();"/> |
michael@0 | 37 | <button id="orphan_exportButton" class="normal" |
michael@0 | 38 | label="&certmgr.export.label;" |
michael@0 | 39 | accesskey="&certmgr.export.accesskey;" |
michael@0 | 40 | disabled="true" oncommand="exportCerts();"/> |
michael@0 | 41 | <button id="orphan_deleteButton" class="normal" |
michael@0 | 42 | label="&certmgr.delete2.label;" |
michael@0 | 43 | accesskey="&certmgr.delete2.accesskey;" |
michael@0 | 44 | disabled="true" oncommand="deleteCerts();"/> |
michael@0 | 45 | </hbox> |
michael@0 | 46 | </vbox> |
michael@0 | 47 | </overlay> |