summaryrefslogtreecommitdiffstats
path: root/security/manager/pki/resources/content/certDump.xul
blob: 74d9b3f8bb738b84438fa4fb391c192616b6cc51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<!DOCTYPE overlay SYSTEM "chrome://pippki/locale/certManager.dtd">

<overlay id="certDumpOverlay"
         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:cert="http://netscape.com/rdf-cert#"
         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<vbox class="box-padded" id="certPrettyPrint" flex="1">
  <label class="header" value="&certmgr.hierarchy.label;"
         control="treesetDump" accesskey="&certmgr.hierarchy.accesskey2;"/>
  <tree id="treesetDump" onselect="updateCertDump();" flex="1"
        hidecolumnpicker="true" style="height: 8em;">
    <treecols>
      <treecol id="dumpCol" flex="1" primary="true" hideheader="true"/>
    </treecols>
  </tree>

  <label class="header" value="&certmgr.details.label;"
         control="prettyDumpTree" accesskey="&certmgr.details.accesskey;"/>
  <tree id="prettyDumpTree" style="height: 15em" treelines="true" flex="1"
            onselect="displaySelected();" hidecolumnpicker="true">
    <treecols>
      <treecol flex="1" id="certDataCol" primary="true" hideheader="true"/>
    </treecols>
    <treechildren/>
  </tree>

  <label class="header" value="&certmgr.fields.label;"
         control="certDumpVal" accesskey="&certmgr.fields.accesskey;"/>
  <textbox id="certDumpVal" multiline="true" flex="1"
           readonly="true" style="height: 11em; font-family: -moz-fixed;"/>

  <separator class="thin"/>
  <hbox>
    <button id="export_cert" class="normal" label="&certmgr.export.label;"
            accesskey="&certmgr.export.accesskey;"
            oncommand="exportToFile(window, getCurrentCert());"/>
  </hbox>
</vbox>
</overlay>