mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
60 lines
2.0 KiB
HTML
60 lines
2.0 KiB
HTML
<?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 % 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-point3-unbranded;</li>
|
|
<li>&rights.intro-point4a-unbranded;<a href="about:rights#webservices" onclick="showServices();">&rights.intro-point4b-unbranded;</a>&rights.intro-point4c-unbranded;</li>
|
|
</ul>
|
|
|
|
<div id="webservices-container">
|
|
<a name="webservices"/>
|
|
<h3>&rights2.webservices-header;</h3>
|
|
|
|
<p>&rights.webservices-unbranded;</p>
|
|
|
|
<ol>
|
|
<!-- Terms only apply to official builds, unbranded builds get a placeholder. -->
|
|
<li>&rights.webservices-term1-unbranded;</li>
|
|
</ol>
|
|
</div>
|
|
|
|
<script type="application/javascript"><![CDATA[
|
|
var servicesDiv = document.getElementById("webservices-container");
|
|
servicesDiv.style.display = "none";
|
|
|
|
function showServices() {
|
|
servicesDiv.style.display = "";
|
|
}
|
|
]]></script>
|
|
|
|
</body>
|
|
</html>
|