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.
1 <?xml version="1.0"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3 - License, v. 2.0. If a copy of the MPL was not distributed with this
4 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
6 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xul-overlay href="chrome://pippki/content/MineOverlay.xul"?>
9 <?xul-overlay href="chrome://pippki/content/OthersOverlay.xul"?>
10 <?xul-overlay href="chrome://pippki/content/WebSitesOverlay.xul"?>
11 <?xul-overlay href="chrome://pippki/content/CAOverlay.xul"?>
12 <?xul-overlay href="chrome://pippki/content/OrphanOverlay.xul"?>
14 <!DOCTYPE dialog SYSTEM "chrome://pippki/locale/certManager.dtd">
16 <dialog id="certmanager"
17 windowtype="mozilla:certmanager"
18 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
19 title="&certmgr.title;"
20 onload="LoadCerts();"
21 buttons="accept"
22 style="width: 48em; height: 32em;"
23 persist="screenX screenY width height">
25 <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
27 <script type="application/javascript" src="chrome://pippki/content/pippki.js"/>
28 <script type="application/javascript" src="chrome://pippki/content/certManager.js"/>
30 <vbox flex="1">
31 <tabbox id="certmanagertabs" flex="1" style="margin:5px" persist="selectedIndex">
32 <tabs id="certMgrTabbox">
33 <tab id="mine_tab" label="&certmgr.tab.mine;"/>
34 <tab id="others_tab" label="&certmgr.tab.others2;"/>
35 <tab id="websites_tab" label="&certmgr.tab.websites3;"/>
36 <tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/>
37 <tab id="orphan_tab" label="&certmgr.tab.orphan2;"/>
38 </tabs>
39 <tabpanels flex="1">
40 <vbox id="myCerts" flex="1"/>
41 <vbox id="othersCerts" flex="1"/>
42 <vbox id="webCerts" flex="1"/>
43 <vbox id="CACerts" flex="1"/>
44 <vbox id="OrphanCerts" flex="1"/>
45 </tabpanels>
46 </tabbox>
48 </vbox>
50 </dialog>