toolkit/content/aboutRights.xhtml

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/toolkit/content/aboutRights.xhtml	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,95 @@
     1.4 +<?xml version="1.0" encoding="UTF-8"?>
     1.5 +<!DOCTYPE html [
     1.6 +  <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
     1.7 +  %htmlDTD;
     1.8 +  <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd">
     1.9 +  %brandDTD;
    1.10 +  <!ENTITY % securityPrefsDTD SYSTEM "chrome://browser/locale/preferences/security.dtd">
    1.11 +  %securityPrefsDTD;
    1.12 +  <!ENTITY % aboutRightsDTD SYSTEM "chrome://global/locale/aboutRights.dtd">
    1.13 +  %aboutRightsDTD;
    1.14 +]>
    1.15 +
    1.16 +<!-- This Source Code Form is subject to the terms of the Mozilla Public
    1.17 +   - License, v. 2.0. If a copy of the MPL was not distributed with this
    1.18 +   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
    1.19 +
    1.20 +<html xmlns="http://www.w3.org/1999/xhtml">
    1.21 +
    1.22 +<head>
    1.23 +  <title>&rights.pagetitle;</title>
    1.24 +  <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"/>
    1.25 +</head>
    1.26 +
    1.27 +<body id="your-rights" dir="&rights.locale-direction;" class="aboutPageWideContainer">
    1.28 +
    1.29 +<h1>&rights.intro-header;</h1>
    1.30 +
    1.31 +<p>&rights.intro;</p>
    1.32 +
    1.33 +<ul>
    1.34 +  <li>&rights.intro-point1a;<a href="http://www.mozilla.org/MPL/">&rights.intro-point1b;</a>&rights.intro-point1c;</li>
    1.35 +<!-- Point 2 discusses Mozilla trademarks, and isn't needed when the build is unbranded.
    1.36 +   - Point 3 discusses privacy policy, unbranded builds get a placeholder (for the vendor to replace)
    1.37 +   - Point 4 discusses web service terms, unbranded builds gets a placeholder (for the vendor to replace) -->
    1.38 +  <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>
    1.39 +  <li>&rights.intro-point2.5;</li>
    1.40 +  <li>&rights2.intro-point3a;<a href="https://www.mozilla.org/legal/privacy/firefox.html">&rights2.intro-point3b;</a>&rights.intro-point3c;</li>
    1.41 +  <li>&rights2.intro-point4a;<a href="about:rights#webservices" onclick="showServices();">&rights.intro-point4b;</a>&rights.intro-point4c;</li>
    1.42 +</ul>
    1.43 +
    1.44 +<div id="webservices-container">
    1.45 +  <a name="webservices"/>
    1.46 +  <h3>&rights2.webservices-header;</h3>
    1.47 +
    1.48 +  <p>&rights2.webservices-a;<a href="about:rights#disabling-webservices" onclick="showDisablingServices();">&rights2.webservices-b;</a>&rights3.webservices-c;</p>
    1.49 +
    1.50 +  <div id="disabling-webservices-container" style="margin-left:40px;">
    1.51 +    <a name="disabling-webservices"/>
    1.52 +    <p><strong>&rights.safebrowsing-a;</strong>&rights.safebrowsing-b;</p>
    1.53 +    <ul>
    1.54 +      <li>&rights.safebrowsing-term1;</li>
    1.55 +      <li>&rights.safebrowsing-term2;</li>
    1.56 +      <li>&rights.safebrowsing-term3;</li>
    1.57 +      <li>&rights.safebrowsing-term4;</li>
    1.58 +    </ul>
    1.59 +
    1.60 +    <p><strong>&rights.locationawarebrowsing-a;</strong>&rights.locationawarebrowsing-b;</p>
    1.61 +    <ul>
    1.62 +      <li>&rights.locationawarebrowsing-term1a;<code>&rights.locationawarebrowsing-term1b;</code></li>
    1.63 +      <li>&rights.locationawarebrowsing-term2;</li>
    1.64 +      <li>&rights.locationawarebrowsing-term3;</li>
    1.65 +      <li>&rights.locationawarebrowsing-term4;</li>
    1.66 +    </ul>
    1.67 +  </div>
    1.68 +
    1.69 +  <ol>
    1.70 +<!-- Terms only apply to official builds, unbranded builds get a placeholder. -->
    1.71 +    <li>&rights2.webservices-term1;</li>
    1.72 +    <li>&rights.webservices-term2;</li>
    1.73 +    <li>&rights2.webservices-term3;</li>
    1.74 +    <li><strong>&rights.webservices-term4;</strong></li>
    1.75 +    <li><strong>&rights.webservices-term5;</strong></li>
    1.76 +    <li>&rights.webservices-term6;</li>
    1.77 +    <li>&rights.webservices-term7;</li>
    1.78 +  </ol>
    1.79 +</div>
    1.80 +
    1.81 +<script type="application/javascript"><![CDATA[
    1.82 +  var servicesDiv = document.getElementById("webservices-container");
    1.83 +  servicesDiv.style.display = "none";
    1.84 +
    1.85 +  function showServices() {
    1.86 +    servicesDiv.style.display = "";
    1.87 +  }
    1.88 +  
    1.89 +  var disablingServicesDiv = document.getElementById("disabling-webservices-container");
    1.90 +  disablingServicesDiv.style.display = "none";
    1.91 +  
    1.92 +  function showDisablingServices() {
    1.93 +    disablingServicesDiv.style.display = "";
    1.94 +  }
    1.95 +]]></script>
    1.96 +
    1.97 +</body>
    1.98 +</html>

mercurial