toolkit/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.

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

mercurial