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 | <?xul-overlay href="chrome://pippki/content/MineOverlay.xul"?> |
michael@0 | 9 | <?xul-overlay href="chrome://pippki/content/OthersOverlay.xul"?> |
michael@0 | 10 | <?xul-overlay href="chrome://pippki/content/WebSitesOverlay.xul"?> |
michael@0 | 11 | <?xul-overlay href="chrome://pippki/content/CAOverlay.xul"?> |
michael@0 | 12 | <?xul-overlay href="chrome://pippki/content/OrphanOverlay.xul"?> |
michael@0 | 13 | |
michael@0 | 14 | <!DOCTYPE dialog SYSTEM "chrome://pippki/locale/certManager.dtd"> |
michael@0 | 15 | |
michael@0 | 16 | <dialog id="certmanager" |
michael@0 | 17 | windowtype="mozilla:certmanager" |
michael@0 | 18 | xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
michael@0 | 19 | title="&certmgr.title;" |
michael@0 | 20 | onload="LoadCerts();" |
michael@0 | 21 | buttons="accept" |
michael@0 | 22 | style="width: 48em; height: 32em;" |
michael@0 | 23 | persist="screenX screenY width height"> |
michael@0 | 24 | |
michael@0 | 25 | <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/> |
michael@0 | 26 | |
michael@0 | 27 | <script type="application/javascript" src="chrome://pippki/content/pippki.js"/> |
michael@0 | 28 | <script type="application/javascript" src="chrome://pippki/content/certManager.js"/> |
michael@0 | 29 | |
michael@0 | 30 | <vbox flex="1"> |
michael@0 | 31 | <tabbox id="certmanagertabs" flex="1" style="margin:5px" persist="selectedIndex"> |
michael@0 | 32 | <tabs id="certMgrTabbox"> |
michael@0 | 33 | <tab id="mine_tab" label="&certmgr.tab.mine;"/> |
michael@0 | 34 | <tab id="others_tab" label="&certmgr.tab.others2;"/> |
michael@0 | 35 | <tab id="websites_tab" label="&certmgr.tab.websites3;"/> |
michael@0 | 36 | <tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/> |
michael@0 | 37 | <tab id="orphan_tab" label="&certmgr.tab.orphan2;"/> |
michael@0 | 38 | </tabs> |
michael@0 | 39 | <tabpanels flex="1"> |
michael@0 | 40 | <vbox id="myCerts" flex="1"/> |
michael@0 | 41 | <vbox id="othersCerts" flex="1"/> |
michael@0 | 42 | <vbox id="webCerts" flex="1"/> |
michael@0 | 43 | <vbox id="CACerts" flex="1"/> |
michael@0 | 44 | <vbox id="OrphanCerts" flex="1"/> |
michael@0 | 45 | </tabpanels> |
michael@0 | 46 | </tabbox> |
michael@0 | 47 | |
michael@0 | 48 | </vbox> |
michael@0 | 49 | |
michael@0 | 50 | </dialog> |