tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

downloadcert.xhtml (1796B)


      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/. -->
      5 
      6 <?csp default-src chrome:; style-src chrome: 'unsafe-inline'; ?>
      7 
      8 <!DOCTYPE window>
      9 
     10 <window
     11  data-l10n-id="download-cert-window2"
     12  data-l10n-attrs="title, style"
     13  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     14  xmlns:html="http://www.w3.org/1999/xhtml"
     15 >
     16  <dialog id="download_cert" buttons="accept,cancel">
     17    <linkset>
     18      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     19 
     20      <html:link rel="localization" href="security/pippki/pippki.ftl" />
     21    </linkset>
     22 
     23    <stringbundle
     24      id="pippki_bundle"
     25      src="chrome://pippki/locale/pippki.properties"
     26    />
     27 
     28    <script src="chrome://pippki/content/downloadcert.js" />
     29 
     30    <!--  Let 'em know what they're doing -->
     31    <vbox>
     32      <description data-l10n-id="download-cert-message"></description>
     33    </vbox>
     34 
     35    <separator />
     36 
     37    <!--  checkboxes for trust bits
     38     -  "do you want to?"
     39     -  * trust for SSL
     40     -  * trust for email
     41    -->
     42    <vbox>
     43      <description id="trustHeader" />
     44      <checkbox data-l10n-id="download-cert-trust-ssl" id="trustSSL" />
     45      <checkbox data-l10n-id="download-cert-trust-email" id="trustEmail" />
     46    </vbox>
     47 
     48    <separator />
     49 
     50    <vbox>
     51      <description data-l10n-id="download-cert-message-desc"></description>
     52      <separator />
     53      <hbox>
     54        <button id="viewC-button" data-l10n-id="download-cert-view-cert" />
     55        <description
     56          style="margin: 4px"
     57          data-l10n-id="download-cert-view-text"
     58        ></description>
     59      </hbox>
     60    </vbox>
     61  </dialog>
     62 </window>