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="OthersOverlay" |
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="othersCerts"> |
michael@0 | 16 | <description>&certmgr.others;</description> |
michael@0 | 17 | <separator class="thin"/> |
michael@0 | 18 | <tree id="email-tree" flex="1" |
michael@0 | 19 | onselect="email_enableButtons()"> |
michael@0 | 20 | <treecols> |
michael@0 | 21 | <treecol id="certcol" label="&certmgr.certname;" primary="true" |
michael@0 | 22 | flex="1"/> |
michael@0 | 23 | <splitter class="tree-splitter"/> |
michael@0 | 24 | <treecol id="emailcol" label="&certmgr.email;" |
michael@0 | 25 | flex="1"/> |
michael@0 | 26 | <splitter class="tree-splitter"/> |
michael@0 | 27 | <treecol id="expiredcol" label="&certmgr.expires;" |
michael@0 | 28 | flex="1"/> |
michael@0 | 29 | </treecols> |
michael@0 | 30 | <treechildren flex="1" ondblclick="viewCerts();"/> |
michael@0 | 31 | </tree> |
michael@0 | 32 | |
michael@0 | 33 | <separator class="thin"/> |
michael@0 | 34 | |
michael@0 | 35 | <hbox> |
michael@0 | 36 | <button id="email_viewButton" |
michael@0 | 37 | label="&certmgr.view2.label;" |
michael@0 | 38 | accesskey="&certmgr.view2.accesskey;" |
michael@0 | 39 | disabled="true" oncommand="viewCerts();"/> |
michael@0 | 40 | <button id="email_editButton" |
michael@0 | 41 | label="&certmgr.edit3.label;" |
michael@0 | 42 | accesskey="&certmgr.edit3.accesskey;" |
michael@0 | 43 | disabled="true" oncommand="editCerts();"/> |
michael@0 | 44 | <button id="email_addButton" |
michael@0 | 45 | label="&certmgr.restore2.label;" |
michael@0 | 46 | accesskey="&certmgr.restore2.accesskey;" |
michael@0 | 47 | oncommand="addEmailCert();"/> |
michael@0 | 48 | <button id="email_exportButton" |
michael@0 | 49 | label="&certmgr.export.label;" |
michael@0 | 50 | accesskey="&certmgr.export.accesskey;" |
michael@0 | 51 | disabled="true" oncommand="exportCerts();"/> |
michael@0 | 52 | <button id="email_deleteButton" |
michael@0 | 53 | label="&certmgr.delete2.label;" |
michael@0 | 54 | accesskey="&certmgr.delete2.accesskey;" |
michael@0 | 55 | disabled="true" oncommand="deleteCerts();"/> |
michael@0 | 56 | </hbox> |
michael@0 | 57 | </vbox> |
michael@0 | 58 | </overlay> |