summaryrefslogtreecommitdiffstats
path: root/toolkit/content/aboutRights.xhtml
blob: cdd94e13cd7f7d5fcf56a9e00c25ef583b6c25b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html [
  <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
  %htmlDTD;
  <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
  %brandDTD;
  <!ENTITY % securityPrefsDTD SYSTEM "chrome://browser/locale/preferences/security.dtd">
  %securityPrefsDTD;
  <!ENTITY % aboutRightsDTD SYSTEM "chrome://global/locale/aboutRights.dtd">
  %aboutRightsDTD;
]>

<!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
  <title>&rights.pagetitle;</title>
  <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"/>
</head>

<body id="your-rights" dir="&rights.locale-direction;" class="aboutPageWideContainer">

<h1>&rights.intro-header;</h1>

<p>&rights.intro;</p>

<ul>
  <li>&rights.intro-point1a;<a href="http://www.mozilla.org/MPL/">&rights.intro-point1b;</a>&rights.intro-point1c;</li>
<!-- Point 2 discusses Mozilla trademarks, and isn't needed when the build is unbranded.
   - Point 3 discusses privacy policy, unbranded builds get a placeholder (for the vendor to replace)
   - Point 4 discusses web service terms, unbranded builds gets a placeholder (for the vendor to replace) -->
  <li>&rights.intro-point2-a;<a href="http://www.palemoon.org/branding.shtml">&rights.intro-point2-b;</a>&rights.intro-point2-c;</li>
  <li>&rights.intro-point2.5;</li>
  <li>&rights2.intro-point3a;<a href="http://www.palemoon.org/privacy.shtml">&rights2.intro-point3b;</a>&rights.intro-point3c;</li>
  <li>&rights2.intro-point4a;<a href="about:rights#webservices" onclick="showServices();">&rights.intro-point4b;</a>&rights.intro-point4c;</li>
  <li>&rights.intro-point5;</li>
</ul>

<div id="webservices-container">
  <a name="webservices"/>
  <h3>&rights2.webservices-header;</h3>

  <p>&rights2.webservices-a;<a href="about:rights#disabling-webservices" onclick="showDisablingServices();">&rights2.webservices-b;</a>&rights3.webservices-c;</p>

  <div id="disabling-webservices-container" style="margin-left:40px;">
    <a name="disabling-webservices"/>
#ifdef MOZ_SAFE_BROWSING
    <p><strong>&rights.safebrowsing-a;</strong>&rights.safebrowsing-b;</p>
    <ul>
      <li>&rights.safebrowsing-term1;</li>
      <li>&rights.safebrowsing-term2;</li>
      <li>&rights2.safebrowsing-term3;</li>
      <li>&rights.safebrowsing-term4;</li>
    </ul>
#endif
    <p><strong>&rights.locationawarebrowsing-a;</strong>&rights.locationawarebrowsing-b;</p>
    <ul>
      <li>&rights.locationawarebrowsing-term1a;<code>&rights.locationawarebrowsing-term1b;</code></li>
      <li>&rights.locationawarebrowsing-term2;</li>
      <li>&rights.locationawarebrowsing-term3;</li>
      <li>&rights.locationawarebrowsing-term4;</li>
    </ul>
  </div>

  <ol>
<!-- Terms only apply to official builds, unbranded builds get a placeholder. -->
    <li>&rights2.webservices-term1;</li>
    <li>&rights.webservices-term2;</li>
    <li>&rights2.webservices-term3;</li>
    <li><strong>&rights.webservices-term4;</strong></li>
    <li><strong>&rights.webservices-term5;</strong></li>
    <li>&rights.webservices-term6;</li>
    <li>&rights.webservices-term7;</li>
  </ol>
</div>

<script type="application/javascript"><![CDATA[
  var servicesDiv = document.getElementById("webservices-container");
  servicesDiv.style.display = "none";

  function showServices() {
    servicesDiv.style.display = "";
  }
  
  var disablingServicesDiv = document.getElementById("disabling-webservices-container");
  disablingServicesDiv.style.display = "none";
  
  function showDisablingServices() {
    disablingServicesDiv.style.display = "";
  }
]]></script>

</body>
</html>