Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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="MineOverlay" |
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="myCerts"> |
michael@0 | 16 | <description>&certmgr.mine;</description> |
michael@0 | 17 | <separator class="thin"/> |
michael@0 | 18 | <tree id="user-tree" flex="1" enableColumnDrag="true" |
michael@0 | 19 | onselect="mine_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 | <splitter class="tree-splitter"/> |
michael@0 | 27 | <treecol id="serialnumcol" label="&certmgr.serial;" |
michael@0 | 28 | persist="hidden width ordinal" flex="1"/> |
michael@0 | 29 | <splitter class="tree-splitter"/> |
michael@0 | 30 | <treecol id="issuedcol" label="&certmgr.begins;" |
michael@0 | 31 | hidden="true" persist="hidden width ordinal" flex="1"/> |
michael@0 | 32 | <splitter class="tree-splitter"/> |
michael@0 | 33 | <treecol id="expiredcol" label="&certmgr.expires;" |
michael@0 | 34 | persist="hidden width ordinal" flex="1"/> |
michael@0 | 35 | </treecols> |
michael@0 | 36 | <treechildren ondblclick="viewCerts();"/> |
michael@0 | 37 | </tree> |
michael@0 | 38 | |
michael@0 | 39 | <separator class="thin"/> |
michael@0 | 40 | |
michael@0 | 41 | <hbox> |
michael@0 | 42 | <button id="mine_viewButton" class="normal" |
michael@0 | 43 | label="&certmgr.view2.label;" |
michael@0 | 44 | accesskey="&certmgr.view2.accesskey;" |
michael@0 | 45 | disabled="true" oncommand="viewCerts();"/> |
michael@0 | 46 | <button id="mine_backupButton" class="normal" |
michael@0 | 47 | label="&certmgr.backup2.label;" |
michael@0 | 48 | accesskey="&certmgr.backup2.accesskey;" |
michael@0 | 49 | disabled="true" oncommand="backupCerts();"/> |
michael@0 | 50 | <button id="mine_backupAllButton" class="normal" |
michael@0 | 51 | label="&certmgr.backupall2.label;" |
michael@0 | 52 | accesskey="&certmgr.backupall2.accesskey;" |
michael@0 | 53 | oncommand="backupAllCerts();"/> |
michael@0 | 54 | <button id="mine_restoreButton" class="normal" |
michael@0 | 55 | label="&certmgr.restore2.label;" |
michael@0 | 56 | accesskey="&certmgr.restore2.accesskey;" |
michael@0 | 57 | oncommand="restoreCerts();"/> |
michael@0 | 58 | <button id="mine_deleteButton" class="normal" |
michael@0 | 59 | label="&certmgr.delete2.label;" |
michael@0 | 60 | accesskey="&certmgr.delete2.accesskey;" |
michael@0 | 61 | disabled="true" oncommand="deleteCerts();"/> |
michael@0 | 62 | </hbox> |
michael@0 | 63 | </vbox> |
michael@0 | 64 | </overlay> |