mobile/android/chrome/content/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/. -->
    15 <html xmlns="http://www.w3.org/1999/xhtml">
    17 <head>
    18   <title>&rights.pagetitle;</title>
    19   <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"/>
    20 </head>
    22 <body id="your-rights" dir="&rights.locale-direction;" class="aboutPageWideContainer">
    24 <h1>&rights.intro-header;</h1>
    26 <p>&rights.intro;</p>
    28 <ul>
    29   <li>&rights.intro-point1a;<a href="http://www.mozilla.org/MPL/">&rights.intro-point1b;</a>&rights.intro-point1c;</li>
    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   <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>
    34   <li>&rights.intro-point2.5;</li>
    35   <li>&rights2.intro-point3a;<a href="https://www.mozilla.org/legal/privacy/firefox.html">&rights2.intro-point3b;</a>&rights.intro-point3c;</li>
    36   <li>&rights2.intro-point4a;<a href="about:rights#webservices" onclick="showServices();">&rights.intro-point4b;</a>&rights.intro-point4c;</li>
    37 </ul>
    39 <div id="webservices-container">
    40   <a name="webservices"/>
    41   <h3>&rights2.webservices-header;</h3>
    43   <p>&rights2.webservices-a;<a href="about:rights#disabling-webservices" onclick="showDisablingServices();">&rights2.webservices-b;</a>&rights3.webservices-c;</p>
    45   <div id="disabling-webservices-container" style="margin-left:40px;">
    46     <a name="disabling-webservices"/>
    47     <!-- Safe Browsing cannot be disabled in Firefox Mobile; these instructions show how to do it on desktop
    48     <p><strong>&rights.safebrowsing-a;</strong>&rights.safebrowsing-b;</p>
    49     <ul>
    50       <li>&rights.safebrowsing-term1;</li>
    51       <li>&rights.safebrowsing-term2;</li>
    52       <li>&rights.safebrowsing-term3;</li>
    53       <li>&rights.safebrowsing-term4;</li>
    54     </ul>
    55     -->
    57     <p><strong>&rights.locationawarebrowsing-a;</strong>&rights.locationawarebrowsing-b;</p>
    58     <ul>
    59       <li>&rights.locationawarebrowsing-term1a;<code>&rights.locationawarebrowsing-term1b;</code></li>
    60       <li>&rights.locationawarebrowsing-term2;</li>
    61       <li>&rights.locationawarebrowsing-term3;</li>
    62       <li>&rights.locationawarebrowsing-term4;</li>
    63     </ul>
    64   </div>
    66   <ol>
    67     <!-- Terms only apply to official builds, unbranded builds get a placeholder. -->
    68     <li>&rights2.webservices-term1;</li>
    69     <li>&rights.webservices-term2;</li>
    70     <li>&rights2.webservices-term3;</li>
    71     <li><strong>&rights.webservices-term4;</strong></li>
    72     <li><strong>&rights.webservices-term5;</strong></li>
    73     <li>&rights.webservices-term6;</li>
    74     <li>&rights.webservices-term7;</li>
    75   </ol>
    76 </div>
    78 <script type="application/javascript"><![CDATA[
    79   var servicesDiv = document.getElementById("webservices-container");
    80   servicesDiv.style.display = "none";
    82   function showServices() {
    83     servicesDiv.style.display = "";
    84   }
    86   var disablingServicesDiv = document.getElementById("disabling-webservices-container");
    87   disablingServicesDiv.style.display = "none";
    89   function showDisablingServices() {
    90     disablingServicesDiv.style.display = "";
    91   }
    92 ]]></script>
    94 </body>
    95 </html>

mercurial