tor-browser

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

aboutPolicies.html (3128B)


      1 <!--
      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 <!doctype html>
      7 
      8 <html>
      9  <head>
     10    <meta charset="utf-8" />
     11    <meta
     12      http-equiv="Content-Security-Policy"
     13      content="default-src chrome:; object-src 'none'"
     14    />
     15    <meta name="color-scheme" content="light dark" />
     16    <title data-l10n-id="about-policies-title"></title>
     17    <link
     18      rel="stylesheet"
     19      href="chrome://browser/content/policies/aboutPolicies.css"
     20    />
     21    <link rel="localization" href="branding/brand.ftl" />
     22    <link rel="localization" href="browser/aboutPolicies.ftl" />
     23    <link
     24      rel="localization"
     25      href="browser/policies/policies-descriptions.ftl"
     26    />
     27    <link rel="localization" href="toolkit/branding/brandings.ftl" />
     28    <script src="chrome://browser/content/policies/aboutPolicies.js"></script>
     29  </head>
     30  <body id="body">
     31    <moz-page-nav id="categories-nav" data-l10n-id="aboutpolicies-page-heading">
     32      <moz-page-nav-button
     33        data-l10n-id="active-policies-tab"
     34        id="category-active"
     35        view="view-one"
     36        iconSrc="chrome://browser/content/policies/policies-active.svg"
     37      >
     38      </moz-page-nav-button>
     39      <moz-page-nav-button
     40        data-l10n-id="documentation-tab"
     41        id="category-documentation"
     42        view="view-two"
     43        iconSrc="chrome://browser/content/policies/policies-documentation.svg"
     44      >
     45      </moz-page-nav-button>
     46      <moz-page-nav-button
     47        data-l10n-id="errors-tab"
     48        id="category-errors"
     49        view="view-three"
     50        iconSrc="chrome://browser/content/policies/policies-error.svg"
     51      >
     52      </moz-page-nav-button>
     53    </moz-page-nav>
     54    <div class="main-content">
     55      <div class="header">
     56        <h1
     57          id="sectionTitle"
     58          class="header-name"
     59          data-l10n-id="active-policies-tab"
     60        ></h1>
     61      </div>
     62 
     63      <div id="active" class="tab active">
     64        <h3
     65          class="inactive-service-message"
     66          data-l10n-id="inactive-message"
     67        ></h3>
     68        <h3
     69          class="no-specified-policies-message"
     70          data-l10n-id="no-specified-policies-message"
     71        ></h3>
     72        <table>
     73          <thead>
     74            <tr>
     75              <th data-l10n-id="policy-name"></th>
     76              <th data-l10n-id="policy-value"></th>
     77            </tr>
     78          </thead>
     79          <tbody id="activeContent"></tbody>
     80        </table>
     81      </div>
     82 
     83      <div id="documentation" class="tab" hidden="true">
     84        <table>
     85          <thead>
     86            <tr>
     87              <th data-l10n-id="policy-name"></th>
     88            </tr>
     89          </thead>
     90          <tbody id="documentationContent"></tbody>
     91        </table>
     92      </div>
     93 
     94      <div id="errors" class="tab" hidden="true">
     95        <table>
     96          <thead>
     97            <tr>
     98              <th data-l10n-id="policy-errors"></th>
     99            </tr>
    100          </thead>
    101          <tbody id="errorsContent"></tbody>
    102        </table>
    103      </div>
    104    </div>
    105  </body>
    106 </html>