security/manager/pki/resources/content/certDump.xul

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/manager/pki/resources/content/certDump.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,41 @@
     1.4 +<?xml version="1.0"?>
     1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
     1.6 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     1.8 +
     1.9 +<!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd">
    1.10 +
    1.11 +<overlay id="certDumpOverlay" 
    1.12 +         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
    1.13 +         xmlns:cert="http://netscape.com/rdf-cert#" 
    1.14 +         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
    1.15 +<vbox class="box-padded" id="certPrettyPrint" flex="1">
    1.16 +  <label class="header" value="&certmgr.hierarchy.label;"/>
    1.17 +  <tree id="treesetDump" onselect="updateCertDump();"
    1.18 +        hidecolumnpicker="true" style="height: 8em;">
    1.19 +    <treecols>
    1.20 +      <treecol id="dumpCol" flex="1" primary="true" hideheader="true"/>
    1.21 +    </treecols>
    1.22 +  </tree>
    1.23 +  
    1.24 +  <label class="header" value="&certmgr.details.label;"/>
    1.25 +  <tree id="prettyDumpTree" style="height: 15em" treelines="true"
    1.26 +            onselect="displaySelected();" hidecolumnpicker="true">
    1.27 +    <treecols>
    1.28 +      <treecol flex="1" id="certDataCol" primary="true" hideheader="true"/>
    1.29 +    </treecols>
    1.30 +    <treechildren/>
    1.31 +  </tree>
    1.32 +  
    1.33 +  <label class="header" value="&certmgr.fields.label;"/>
    1.34 +  <textbox id="certDumpVal"  multiline="true" rows="8"
    1.35 +           readonly="true" style="font-family: -moz-fixed;"/>
    1.36 +  
    1.37 +  <separator class="thin"/>
    1.38 +  <hbox>
    1.39 +    <button id="export_cert" class="normal" label="&certmgr.export.label;"
    1.40 +            accesskey="&certmgr.export.accesskey;"
    1.41 +            oncommand="exportToFile(window, getCurrentCert());"/>
    1.42 +  </hbox>
    1.43 +</vbox>
    1.44 +</overlay>

mercurial