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

Wed, 31 Dec 2014 06:55:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:50 +0100
changeset 2
7e26c7da4463
permissions
-rw-r--r--

Added tag UPSTREAM_283F7C6 for changeset ca08bd8f51b2

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

mercurial