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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/security/manager/pki/resources/content/certManager.xul	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,50 @@
     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 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
    1.10 +
    1.11 +<?xul-overlay href="chrome://pippki/content/MineOverlay.xul"?>
    1.12 +<?xul-overlay href="chrome://pippki/content/OthersOverlay.xul"?>
    1.13 +<?xul-overlay href="chrome://pippki/content/WebSitesOverlay.xul"?>
    1.14 +<?xul-overlay href="chrome://pippki/content/CAOverlay.xul"?>
    1.15 +<?xul-overlay href="chrome://pippki/content/OrphanOverlay.xul"?>
    1.16 +
    1.17 +<!DOCTYPE dialog SYSTEM "chrome://pippki/locale/certManager.dtd">
    1.18 +
    1.19 +<dialog id="certmanager" 
    1.20 +	windowtype="mozilla:certmanager"
    1.21 +	xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
    1.22 +        title="&certmgr.title;"
    1.23 +        onload="LoadCerts();"
    1.24 +        buttons="accept"
    1.25 +        style="width: 48em; height: 32em;"
    1.26 +        persist="screenX screenY width height">
    1.27 +
    1.28 +  <stringbundle id="pippki_bundle" src="chrome://pippki/locale/pippki.properties"/>
    1.29 +
    1.30 +  <script type="application/javascript" src="chrome://pippki/content/pippki.js"/>
    1.31 +  <script type="application/javascript" src="chrome://pippki/content/certManager.js"/>
    1.32 +
    1.33 +  <vbox flex="1">
    1.34 +    <tabbox id="certmanagertabs" flex="1" style="margin:5px" persist="selectedIndex">
    1.35 +      <tabs id="certMgrTabbox">
    1.36 +        <tab id="mine_tab" label="&certmgr.tab.mine;"/>
    1.37 +        <tab id="others_tab" label="&certmgr.tab.others2;"/>
    1.38 +        <tab id="websites_tab" label="&certmgr.tab.websites3;"/>
    1.39 +        <tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/>
    1.40 +        <tab id="orphan_tab" label="&certmgr.tab.orphan2;"/>
    1.41 +      </tabs>
    1.42 +      <tabpanels flex="1">
    1.43 +        <vbox id="myCerts" flex="1"/>
    1.44 +        <vbox id="othersCerts" flex="1"/>
    1.45 +        <vbox id="webCerts" flex="1"/>
    1.46 +        <vbox id="CACerts" flex="1"/>
    1.47 +        <vbox id="OrphanCerts" flex="1"/>
    1.48 +      </tabpanels>
    1.49 +    </tabbox>
    1.50 +
    1.51 +  </vbox>
    1.52 +
    1.53 +</dialog>

mercurial