browser/metro/base/content/pages/aboutRights.xhtml

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!DOCTYPE html [
     3   <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
     4   %htmlDTD;
     5   <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
     6   %brandDTD;
     7   <!ENTITY % aboutRightsDTD SYSTEM "chrome://global/locale/aboutRights.dtd">
     8   %aboutRightsDTD;
     9 ]>
    11 <!-- This Source Code Form is subject to the terms of the Mozilla Public
    12    - License, v. 2.0. If a copy of the MPL was not distributed with this
    13    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
    14 <html xmlns="http://www.w3.org/1999/xhtml">
    16 <head>
    17   <title>&rights.pagetitle;</title>
    18   <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"/>
    19 </head>
    21 <body id="your-rights" dir="&rights.locale-direction;" class="aboutPageWideContainer">
    23 <h1>&rights.intro-header;</h1>
    25 <p>&rights.intro;</p>
    27 <ul>
    28   <li>&rights.intro-point1a;<a href="http://www.mozilla.org/MPL/">&rights.intro-point1b;</a>&rights.intro-point1c;</li>
    29   <!--
    30     Point 2 discusses Mozilla trademarks, and isn't needed when the build is unbranded.
    31     Point 3 discusses privacy policy, unbranded builds get a placeholder (for the vendor to replace)
    32     Point 4 discusses web service terms, unbranded builds gets a placeholder (for the vendor to replace)
    33   -->
    34   <li>&rights.intro-point2-a;<a href="http://www.mozilla.org/foundation/trademarks/policy.html">&rights.intro-point2-b;</a>&rights.intro-point2-c;</li>
    35   <li>&rights.intro-point2.5;</li>
    36   <li>&rights2.intro-point3a;<a href="https://www.mozilla.org/legal/privacy/">&rights2.intro-point3b;</a>&rights.intro-point3c;</li>
    37   <li>&rights2.intro-point4a;<a href="about:rights#webservices" onclick="showServices();">&rights.intro-point4b;</a>&rights.intro-point4c;</li>
    38 </ul>
    40 <div id="webservices-container">
    41   <a name="webservices"/>
    42   <h3>&rights2.webservices-header;</h3>
    44   <p>&rights2.webservices-a;<a href="about:rights#disabling-webservices" onclick="showDisablingServices();">&rights2.webservices-b;</a>&rights3.webservices-c;</p>
    46   <div id="disabling-webservices-container" style="margin-left:40px;">
    47     <a name="disabling-webservices"/>
    48     <!-- XXX Safe Browsing is not enabled in Firefox Mobile -->
    49     <!--
    50     <p><strong>&rights.safebrowsing-a;</strong>&rights.safebrowsing-b;</p>
    51     <ul>
    52       <li>&rights.safebrowsing-term1;</li>
    53       <li>&rights.safebrowsing-term2;</li>
    54       <li>&rights.safebrowsing-term3;</li>
    55       <li>&rights.safebrowsing-term4;</li>
    56     </ul>
    57     -->
    59     <p><strong>&rights.locationawarebrowsing-a;</strong>&rights.locationawarebrowsing-b;</p>
    60     <ul>
    61       <li>&rights.locationawarebrowsing-term1a;<code>&rights.locationawarebrowsing-term1b;</code></li>
    62       <li>&rights.locationawarebrowsing-term2;</li>
    63       <li>&rights.locationawarebrowsing-term3;</li>
    64       <li>&rights.locationawarebrowsing-term4;</li>
    65     </ul>
    66   </div>
    68   <ol>
    69     <!-- Terms only apply to official builds, unbranded builds get a placeholder. -->
    70     <li>&rights2.webservices-term1;</li>
    71     <li>&rights.webservices-term2;</li>
    72     <li>&rights2.webservices-term3;</li>
    73     <li><strong>&rights.webservices-term4;</strong></li>
    74     <li><strong>&rights.webservices-term5;</strong></li>
    75     <li>&rights.webservices-term6;</li>
    76     <li>&rights.webservices-term7;</li>
    77   </ol>
    78 </div>
    80 <script type="application/javascript"><![CDATA[
    81   var servicesDiv = document.getElementById("webservices-container");
    82   servicesDiv.style.display = "none";
    84   function showServices() {
    85     servicesDiv.style.display = "";
    86   }
    88   var disablingServicesDiv = document.getElementById("disabling-webservices-container");
    89   disablingServicesDiv.style.display = "none";
    91   function showDisablingServices() {
    92     disablingServicesDiv.style.display = "";
    93   }
    94 ]]></script>
    96 </body>
    97 </html>

mercurial