Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 | <!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd"> |
michael@0 | 7 | |
michael@0 | 8 | <overlay id="certDumpOverlay" |
michael@0 | 9 | xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
michael@0 | 10 | xmlns:cert="http://netscape.com/rdf-cert#" |
michael@0 | 11 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> |
michael@0 | 12 | <vbox class="box-padded" id="certPrettyPrint" flex="1"> |
michael@0 | 13 | <label class="header" value="&certmgr.hierarchy.label;"/> |
michael@0 | 14 | <tree id="treesetDump" onselect="updateCertDump();" |
michael@0 | 15 | hidecolumnpicker="true" style="height: 8em;"> |
michael@0 | 16 | <treecols> |
michael@0 | 17 | <treecol id="dumpCol" flex="1" primary="true" hideheader="true"/> |
michael@0 | 18 | </treecols> |
michael@0 | 19 | </tree> |
michael@0 | 20 | |
michael@0 | 21 | <label class="header" value="&certmgr.details.label;"/> |
michael@0 | 22 | <tree id="prettyDumpTree" style="height: 15em" treelines="true" |
michael@0 | 23 | onselect="displaySelected();" hidecolumnpicker="true"> |
michael@0 | 24 | <treecols> |
michael@0 | 25 | <treecol flex="1" id="certDataCol" primary="true" hideheader="true"/> |
michael@0 | 26 | </treecols> |
michael@0 | 27 | <treechildren/> |
michael@0 | 28 | </tree> |
michael@0 | 29 | |
michael@0 | 30 | <label class="header" value="&certmgr.fields.label;"/> |
michael@0 | 31 | <textbox id="certDumpVal" multiline="true" rows="8" |
michael@0 | 32 | readonly="true" style="font-family: -moz-fixed;"/> |
michael@0 | 33 | |
michael@0 | 34 | <separator class="thin"/> |
michael@0 | 35 | <hbox> |
michael@0 | 36 | <button id="export_cert" class="normal" label="&certmgr.export.label;" |
michael@0 | 37 | accesskey="&certmgr.export.accesskey;" |
michael@0 | 38 | oncommand="exportToFile(window, getCurrentCert());"/> |
michael@0 | 39 | </hbox> |
michael@0 | 40 | </vbox> |
michael@0 | 41 | </overlay> |