|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!DOCTYPE html [ |
|
3 <!ENTITY % htmlDTD PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> |
|
4 %htmlDTD; |
|
5 <!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd"> |
|
6 %brandDTD; |
|
7 <!ENTITY % aboutRightsDTD SYSTEM "chrome://global/locale/aboutRights.dtd"> |
|
8 %aboutRightsDTD; |
|
9 ]> |
|
10 |
|
11 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
|
12 - License, v. 2.0. If a copy of the MPL was not distributed with this |
|
13 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
|
14 |
|
15 <html xmlns="http://www.w3.org/1999/xhtml"> |
|
16 |
|
17 <head> |
|
18 <title>&rights.pagetitle;</title> |
|
19 <link rel="stylesheet" href="chrome://global/skin/about.css" type="text/css"/> |
|
20 </head> |
|
21 |
|
22 <body id="your-rights" dir="&rights.locale-direction;" class="aboutPageWideContainer"> |
|
23 |
|
24 <h1>&rights.intro-header;</h1> |
|
25 |
|
26 <p>&rights.intro;</p> |
|
27 |
|
28 <ul> |
|
29 <li>&rights.intro-point1a;<a href="http://www.mozilla.org/MPL/">&rights.intro-point1b;</a>&rights.intro-point1c;</li> |
|
30 <!-- Point 2 discusses Mozilla trademarks, and isn't needed when the build is unbranded. |
|
31 - Point 3 discusses privacy policy, unbranded builds get a placeholder (for the vendor to replace) |
|
32 - Point 4 discusses web service terms, unbranded builds gets a placeholder (for the vendor to replace) --> |
|
33 <li>&rights.intro-point3-unbranded;</li> |
|
34 <li>&rights.intro-point4a-unbranded;<a href="about:rights#webservices" onclick="showServices();">&rights.intro-point4b-unbranded;</a>&rights.intro-point4c-unbranded;</li> |
|
35 </ul> |
|
36 |
|
37 <div id="webservices-container"> |
|
38 <a name="webservices"/> |
|
39 <h3>&rights2.webservices-header;</h3> |
|
40 |
|
41 <p>&rights.webservices-unbranded;</p> |
|
42 |
|
43 <ol> |
|
44 <!-- Terms only apply to official builds, unbranded builds get a placeholder. --> |
|
45 <li>&rights.webservices-term1-unbranded;</li> |
|
46 </ol> |
|
47 </div> |
|
48 |
|
49 <script type="application/javascript"><![CDATA[ |
|
50 var servicesDiv = document.getElementById("webservices-container"); |
|
51 servicesDiv.style.display = "none"; |
|
52 |
|
53 function showServices() { |
|
54 servicesDiv.style.display = ""; |
|
55 } |
|
56 ]]></script> |
|
57 |
|
58 </body> |
|
59 </html> |