tor-browser

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

clientauthask.xhtml (3813B)


      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:; ?>
      7 
      8 <!DOCTYPE window>
      9 
     10 <window
     11  data-l10n-id="client-auth-window"
     12  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     13  xmlns:html="http://www.w3.org/1999/xhtml"
     14 >
     15  <dialog
     16    id="certAuthAsk"
     17    buttons="accept,cancel"
     18    buttonidcancel="client-auth-send-no-certificate"
     19  >
     20    <linkset>
     21      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     22      <html:link
     23        rel="stylesheet"
     24        href="chrome://pippki/content/clientauthask.css"
     25      />
     26 
     27      <html:link rel="localization" href="security/pippki/pippki.ftl" />
     28    </linkset>
     29 
     30    <stringbundleset id="stringbundleset">
     31      <stringbundle
     32        id="pippki_bundle"
     33        src="chrome://pippki/locale/pippki.properties"
     34      />
     35    </stringbundleset>
     36 
     37    <script src="chrome://pippki/content/clientauthask.js" />
     38    <script src="chrome://global/content/globalOverlay.js" />
     39    <script src="chrome://global/content/editMenuOverlay.js" />
     40 
     41    <description
     42      class="important"
     43      id="clientAuthSiteIdentification"
     44      data-l10n-id="client-auth-site-identification"
     45      data-l10n-args='{"hostname":""}'
     46    ></description>
     47 
     48    <!-- The items in this menulist must never be sorted,
     49     but remain in the order filled by the application
     50 -->
     51    <menulist id="nicknames" native="true">
     52      <menupopup />
     53    </menulist>
     54 
     55    <description
     56      class="important"
     57      data-l10n-id="client-auth-cert-details"
     58    ></description>
     59    <vbox class="info-box-container">
     60      <description
     61        id="clientAuthCertDetailsIssuedTo"
     62        class="details"
     63        data-l10n-id="client-auth-cert-details-issued-to"
     64        data-l10n-args='{"issuedTo":""}'
     65      ></description>
     66      <description
     67        id="clientAuthCertDetailsSerialNumber"
     68        class="details"
     69        data-l10n-id="client-auth-cert-details-serial-number"
     70        data-l10n-args='{"serialNumber":""}'
     71      ></description>
     72      <description
     73        id="clientAuthCertDetailsValidityPeriod"
     74        class="details"
     75        data-l10n-id="client-auth-cert-details-validity-period"
     76        data-l10n-args='{"notBefore":"","notAfter":""}'
     77      ></description>
     78      <description
     79        id="clientAuthCertDetailsKeyUsages"
     80        class="details"
     81        data-l10n-id="client-auth-cert-details-key-usages"
     82        data-l10n-args='{"keyUsages":""}'
     83      ></description>
     84      <description
     85        id="clientAuthCertDetailsEmailAddresses"
     86        class="details"
     87        data-l10n-id="client-auth-cert-details-email-addresses"
     88        data-l10n-args='{"emailAddresses":""}'
     89      ></description>
     90      <description
     91        id="clientAuthCertDetailsIssuedBy"
     92        class="details"
     93        data-l10n-id="client-auth-cert-details-issued-by"
     94        data-l10n-args='{"issuedBy":""}'
     95      ></description>
     96      <description
     97        id="clientAuthCertDetailsStoredOn"
     98        class="details"
     99        data-l10n-id="client-auth-cert-details-stored-on"
    100        data-l10n-args='{"storedOn":""}'
    101      ></description>
    102    </vbox>
    103 
    104    <hbox align="center">
    105      <spacer flex="1" />
    106      <label data-l10n-id="client-auth-cert-remember-label" />
    107      <menulist id="rememberSetting" flex="1">
    108        <menupopup>
    109          <menuitem value="0" data-l10n-id="client-auth-cert-remember-never" />
    110          <menuitem value="1" data-l10n-id="client-auth-cert-remember-always" />
    111          <menuitem
    112            value="2"
    113            data-l10n-id="client-auth-cert-remember-temporarily"
    114          />
    115        </menupopup>
    116      </menulist>
    117    </hbox>
    118  </dialog>
    119 </window>