tor-browser

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

securityInformation.inc.xhtml (7606B)


      1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      2   - License, v. 2.0. If a copy of the MPL was not distributed with this
      3   - file, You can obtain one at https://mozilla.org/MPL/2.0/. -->
      4 
      5      <vbox class="panel-subview-body">
      6        <hbox class="identity-popup-security-connection identity-popup-section" align="center">
      7          <image class="identity-popup-security-connection-icon"/>
      8          <description class="identity-popup-connection-not-secure security-view"
      9                       when-connection="not-secure secure-cert-user-overridden cert-error-page net-error-page https-only-error-page" data-l10n-id="identity-connection-not-secure-security-view"></description>
     10          <description class="identity-popup-connection-secure security-view"
     11                       when-connection="secure secure-ev secure-etsi" data-l10n-id="identity-connection-verified"></description>
     12          <!-- These descriptions are shown on a seperate subview when trustpanel is disabled and
     13               are only visible here under the trustpanel -->
     14          <box class="only-trustpanel">
     15            <description when-connection="chrome" data-l10n-id="identity-connection-internal"></description>
     16            <description when-connection="file" data-l10n-id="identity-connection-file"></description>
     17            <description when-connection="associated" data-l10n-id="identity-connection-associated"></description>
     18            <description when-connection="extension" data-l10n-id="identity-extension-page"></description >
     19            <description class="identity-popup-connection-secure upgraded"
     20                         when-httpsonlystatus="upgraded failed-sub"
     21                         data-l10n-id="identity-https-only-connection-upgraded"></description>
     22          </box>
     23        </hbox>
     24 
     25        <vbox id="identity-popup-securityView-extended-info" class="identity-popup-section">
     26          <!-- (EV) Certificate Information -->
     27          <description id="identity-popup-content-owner-label"
     28                       when-connection="secure-ev secure-etsi" data-l10n-id="identity-ev-owner-label"></description>
     29          <description id="identity-popup-content-owner"
     30                       when-connection="secure-ev secure-etsi"
     31                       class="header"/>
     32          <description id="identity-popup-content-supplemental"
     33                       when-connection="secure-ev secure-etsi"/>
     34          <description id="identity-popup-content-verifier"
     35                       when-connection="secure secure-ev secure-etsi secure-cert-user-overridden"/>
     36          <description id="identity-popup-content-etsi"
     37                       when-connection="secure-etsi"
     38                       data-l10n-id="identity-etsi"/>
     39          <description id="identity-popup-content-verifier-unknown"
     40                       class="identity-popup-warning-box identity-popup-warning-gray"
     41                       when-customroot="true">
     42            <label data-l10n-id="identity-description-custom-root2"/>
     43            <html:a is="moz-support-link" id="identity-popup-custom-root-learn-more" support-page="enterprise-roots"/>
     44          </description>
     45 
     46          <!-- Remove Certificate Exception -->
     47          <button id="identity-popup-remove-cert-exception"
     48                  when-connection="secure-cert-user-overridden"
     49                  data-l10n-id="identity-remove-cert-exception"
     50                  class="panel-button"/>
     51 
     52          <!-- Connection is Not Secure -->
     53          <description when-connection="not-secure cert-error-page net-error-page https-only-error-page"
     54                       data-l10n-id="identity-description-insecure"></description>
     55 
     56          <!-- Weak Cipher -->
     57          <description when-ciphers="weak" data-l10n-id="identity-description-weak-cipher-intro"></description>
     58          <description class="identity-popup-warning-box identity-popup-warning-yellow"
     59                       when-ciphers="weak" data-l10n-id="identity-description-weak-cipher-risk"></description>
     60 
     61          <!-- Active Mixed Content Blocked -->
     62          <description class="identity-popup-warning-box identity-popup-warning-gray"
     63                       when-mixedcontent="active-blocked">
     64            <label data-l10n-id="identity-description-active-blocked2"/>
     65            <html:a is="moz-support-link" class="identity-popup-mcb-learn-more" support-page="mixed-content"/>
     66          </description>
     67 
     68          <!-- Passive Mixed Content Loaded -->
     69          <description when-mixedcontent="passive-loaded" data-l10n-id="identity-description-passive-loaded"></description>
     70          <description class="identity-popup-warning-box identity-popup-warning-yellow"
     71                       when-mixedcontent="passive-loaded">
     72            <label data-l10n-id="identity-description-passive-loaded-insecure2"/>
     73            <html:a is="moz-support-link" class="identity-popup-mcb-learn-more" support-page="mixed-content"/>
     74          </description>
     75 
     76          <!-- Passive Mixed Content Loaded, Active Mixed Content Blocked -->
     77          <description when-mixedcontent="passive-loaded active-blocked" data-l10n-id="identity-description-passive-loaded"></description>
     78          <description when-mixedcontent="passive-loaded active-blocked"
     79                       class="identity-popup-warning-box identity-popup-warning-yellow">
     80            <label data-l10n-id="identity-description-passive-loaded-mixed2"/>
     81            <html:a is="moz-support-link" class="identity-popup-mcb-learn-more" support-page="mixed-content"/>
     82          </description>
     83 
     84          <!-- Active Mixed Content Blocking Disabled -->
     85          <description when-mixedcontent="active-loaded"
     86                       data-l10n-id="identity-description-active-loaded"></description>
     87          <description when-mixedcontent="active-loaded"
     88                       data-l10n-id="identity-description-active-loaded-insecure"></description>
     89          <hbox>
     90            <html:a is="moz-support-link" when-mixedcontent="active-loaded"
     91                       and-when-loginforms="secure" class="identity-popup-mcb-learn-more" support-page="mixed-content"/>
     92          </hbox>
     93 
     94          <!-- This section is only shown here when the trustpanel is active, otherwise it
     95               is shown in a seperate subview inside the identityPanel -->
     96          <vbox id="trustpanel-popup-security-httpsonlymode" when-httpsonlystatus="exception upgraded failed-top failed-sub" class="only-trustpanel">
     97            <label flex="1" data-l10n-id="identity-https-only-label2"></label>
     98            <menulist id="trustpanel-popup-security-httpsonlymode-menulist" sizetopopup="none">
     99              <menupopup>
    100                <menuitem value="0" data-l10n-id="identity-https-only-dropdown-on" />
    101                <menuitem value="1" data-l10n-id="identity-https-only-dropdown-off"
    102                          id="trustpanel-popup-security-menulist-off-item" />
    103                <menuitem value="2" data-l10n-id="identity-https-only-dropdown-off-temporarily" />
    104              </menupopup>
    105            </menulist>
    106            <vbox id="trustpanel-popup-security-httpsonlymode-info">
    107              <description when-httpsonlystatus="exception" flex="1" data-l10n-id="identity-https-only-info-turn-on3"></description>
    108              <description when-httpsonlystatus="failed-sub" flex="1" data-l10n-id="identity-https-only-info-turn-off3"></description>
    109              <description when-httpsonlystatus="failed-top" flex="1" data-l10n-id="identity-https-only-info-no-upgrade"></description>
    110            </vbox>
    111          </vbox>
    112        </vbox>
    113      </vbox>