2009-09-03 18:04:50 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2011-12-21 11:40:31 +00:00
|
|
|
<!DOCTYPE html [
|
2009-09-03 18:04:50 +00:00
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
|
|
|
|
%brandDTD;
|
|
|
|
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
|
|
|
|
%globalDTD;
|
|
|
|
<!ENTITY % fennecDTD SYSTEM "chrome://browser/locale/about.dtd">
|
|
|
|
%fennecDTD;
|
|
|
|
]>
|
|
|
|
|
2012-05-21 11:12:37 +00:00
|
|
|
<!-- 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/. -->
|
2009-09-03 18:04:50 +00:00
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2011-12-05 18:26:44 +00:00
|
|
|
<meta name="viewport" content="width=480; initial-scale=.6667; user-scalable=no"/>
|
2009-09-03 18:04:50 +00:00
|
|
|
<title>&aboutPage.title;</title>
|
2009-09-23 23:44:08 +00:00
|
|
|
<link rel="stylesheet" href="chrome://browser/skin/aboutPage.css" type="text/css"/>
|
2012-12-14 04:32:25 +00:00
|
|
|
<link rel="icon" type="image/png" sizes="64x64" href="chrome://branding/content/favicon64.png" />
|
2009-09-03 18:04:50 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body dir="&locale.dir;">
|
2011-12-21 11:40:31 +00:00
|
|
|
<div id="header">
|
|
|
|
<div id="wordmark"></div>
|
|
|
|
#expand <p id="version">__MOZ_APP_VERSION__</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="banner">
|
|
|
|
<div id="logo"></div>
|
2011-12-21 11:06:24 +00:00
|
|
|
#ifdef MOZ_UPDATER
|
2011-12-21 11:40:31 +00:00
|
|
|
<div id="updateBox">
|
|
|
|
<a id="updateLink" href="" onclick="checkForUpdates();">&aboutPage.checkForUpdates.link;</a>
|
|
|
|
<span id="update-message-checking">&aboutPage.checkForUpdates.checking;</span>
|
|
|
|
<span id="update-message-none">&aboutPage.checkForUpdates.none;</span>
|
|
|
|
<span id="update-message-found">&aboutPage.checkForUpdates.found;</span>
|
|
|
|
</div>
|
2011-01-11 15:46:59 +00:00
|
|
|
#endif
|
2012-12-10 22:25:50 +00:00
|
|
|
|
2012-04-09 22:23:42 +00:00
|
|
|
<div id="aboutTelemetry" hidden="true">
|
2012-12-10 22:25:50 +00:00
|
|
|
<p id="telemetry">
|
|
|
|
&aboutPage.warningVersion;
|
|
|
|
#ifdef MOZ_TELEMETRY_ON_BY_DEFAULT
|
|
|
|
&aboutPage.telemetryStart;<a href="http://www.mozilla.org/">&aboutPage.telemetryMozillaLink;</a>&aboutPage.telemetryEnd;
|
|
|
|
#endif
|
|
|
|
</p>
|
2012-04-09 22:23:42 +00:00
|
|
|
</div>
|
2011-12-21 11:40:31 +00:00
|
|
|
</div>
|
2011-01-03 14:12:54 +00:00
|
|
|
|
2009-09-23 23:44:08 +00:00
|
|
|
<ul id="aboutLinks">
|
2011-12-21 11:40:31 +00:00
|
|
|
<div class="top-border"></div>
|
2009-09-23 23:44:08 +00:00
|
|
|
<li><a id="faqURL">&aboutPage.faq.label;</a></li>
|
|
|
|
<li><a id="supportURL">&aboutPage.support.label;</a></li>
|
|
|
|
<li><a id="privacyURL">&aboutPage.privacyPolicy.label;</a></li>
|
|
|
|
<li><a href="about:rights">&aboutPage.rights.label;</a></li>
|
|
|
|
<li><a id="releaseNotesURL">&aboutPage.relNotes.label;</a></li>
|
|
|
|
<li><a id="creditsURL">&aboutPage.credits.label;</a></li>
|
2011-12-27 13:26:18 +00:00
|
|
|
<li><a href="about:license">&aboutPage.license.label;</a></li>
|
2011-12-21 11:40:31 +00:00
|
|
|
<div class="bottom-border"></div>
|
2009-09-23 23:44:08 +00:00
|
|
|
</ul>
|
2011-01-03 14:12:54 +00:00
|
|
|
|
2009-09-23 23:44:08 +00:00
|
|
|
<div id="aboutDetails">
|
2011-12-27 13:26:18 +00:00
|
|
|
<p>&logoTrademark;</p>
|
2009-09-23 23:44:08 +00:00
|
|
|
</div>
|
2011-01-03 14:12:54 +00:00
|
|
|
|
2009-09-23 23:44:08 +00:00
|
|
|
<script type="application/javascript;version=1.8"><![CDATA[
|
2010-10-12 19:01:29 +00:00
|
|
|
let Ci = Components.interfaces, Cc = Components.classes, Cu = Components.utils, Cr = Components.results;
|
2011-12-21 22:20:02 +00:00
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
|
2012-04-09 22:23:42 +00:00
|
|
|
// Include the build date and a warning about Telemetry
|
|
|
|
// if this is an "a#" (nightly or aurora) build
|
2011-12-21 22:20:02 +00:00
|
|
|
#expand const version = "__MOZ_APP_VERSION__";
|
|
|
|
if (/a\d+$/.test(version)) {
|
|
|
|
let buildID = Services.appinfo.appBuildID;
|
|
|
|
let buildDate = buildID.slice(0,4) + "-" + buildID.slice(4,6) + "-" + buildID.slice(6,8);
|
|
|
|
let br = document.createElement("br");
|
|
|
|
let versionPara = document.getElementById("version");
|
|
|
|
versionPara.appendChild(br);
|
|
|
|
let date = document.createTextNode("(" + buildDate + ")");
|
|
|
|
versionPara.appendChild(date);
|
2012-04-09 22:23:42 +00:00
|
|
|
document.getElementById("aboutTelemetry").hidden = false;
|
2011-12-21 22:20:02 +00:00
|
|
|
}
|
2010-10-12 19:01:29 +00:00
|
|
|
|
2009-09-23 23:44:08 +00:00
|
|
|
// get URLs from prefs
|
|
|
|
try {
|
2010-10-12 19:01:29 +00:00
|
|
|
let formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"].getService(Ci.nsIURLFormatter);
|
2011-01-03 14:12:54 +00:00
|
|
|
|
2009-09-23 23:44:08 +00:00
|
|
|
let links = [
|
|
|
|
{id: "releaseNotesURL", pref: "app.releaseNotesURL"},
|
|
|
|
{id: "supportURL", pref: "app.support.baseURL"},
|
|
|
|
{id: "faqURL", pref: "app.faqURL"},
|
|
|
|
{id: "privacyURL", pref: "app.privacyURL"},
|
|
|
|
{id: "creditsURL", pref: "app.creditsURL"},
|
|
|
|
];
|
2011-01-03 14:12:54 +00:00
|
|
|
|
2009-09-23 23:44:08 +00:00
|
|
|
links.forEach(function (link) {
|
|
|
|
let url = formatter.formatURLPref(link.pref);
|
|
|
|
let element = document.getElementById(link.id);
|
|
|
|
element.setAttribute("href", url);
|
|
|
|
});
|
|
|
|
} catch (ex) {}
|
2011-01-03 14:12:54 +00:00
|
|
|
|
2011-01-11 15:46:59 +00:00
|
|
|
#ifdef MOZ_UPDATER
|
2010-10-12 19:01:29 +00:00
|
|
|
let Updater = {
|
|
|
|
isChecking: false,
|
|
|
|
update: null,
|
|
|
|
|
2012-08-31 13:31:29 +00:00
|
|
|
init: function() {
|
|
|
|
Services.obs.addObserver(this, "Update:CheckResult", false);
|
2010-10-12 19:01:29 +00:00
|
|
|
},
|
|
|
|
|
2012-08-31 13:31:29 +00:00
|
|
|
observe: function(aSubject, aTopic, aData) {
|
|
|
|
if (aTopic == "Update:CheckResult") {
|
|
|
|
showUpdateMessage(aData == "true");
|
2010-10-12 19:01:29 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-08-31 13:31:29 +00:00
|
|
|
Updater.init();
|
2010-10-12 19:01:29 +00:00
|
|
|
|
|
|
|
function checkForUpdates() {
|
|
|
|
Updater.isChecking = true;
|
|
|
|
showCheckingMessage();
|
|
|
|
|
2012-08-31 13:31:29 +00:00
|
|
|
let bridge = Cc["@mozilla.org/android/bridge;1"].getService(Ci.nsIAndroidBridge);
|
|
|
|
bridge.handleGeckoMessage(JSON.stringify({
|
|
|
|
gecko: {
|
|
|
|
type: "Update:Check",
|
|
|
|
}
|
|
|
|
}));
|
2010-10-12 19:01:29 +00:00
|
|
|
}
|
|
|
|
|
2011-12-21 11:40:31 +00:00
|
|
|
let updateLink = document.getElementById("updateLink");
|
2010-10-12 19:01:29 +00:00
|
|
|
let checkingSpan = document.getElementById("update-message-checking");
|
|
|
|
let noneSpan = document.getElementById("update-message-none");
|
|
|
|
let foundSpan = document.getElementById("update-message-found");
|
|
|
|
|
|
|
|
function showCheckingMessage() {
|
2011-12-21 11:40:31 +00:00
|
|
|
updateLink.style.display = "none";
|
2010-10-12 19:01:29 +00:00
|
|
|
noneSpan.style.display = "none";
|
|
|
|
foundSpan.style.display = "none";
|
|
|
|
checkingSpan.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
function showUpdateMessage(aHasUpdate) {
|
2011-12-21 11:40:31 +00:00
|
|
|
updateLink.style.display = "none";
|
2010-10-12 19:01:29 +00:00
|
|
|
checkingSpan.style.display = "none";
|
|
|
|
if (aHasUpdate) {
|
|
|
|
noneSpan.style.display = "none";
|
|
|
|
foundSpan.style.display = "block";
|
|
|
|
} else {
|
|
|
|
foundSpan.style.display = "none";
|
|
|
|
noneSpan.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
setTimeout(function() {
|
|
|
|
noneSpan.style.display = "none";
|
|
|
|
foundSpan.style.display = "none";
|
|
|
|
checkingSpan.style.display = "none";
|
2011-12-21 11:40:31 +00:00
|
|
|
updateLink.style.display = "block";
|
2010-10-12 19:01:29 +00:00
|
|
|
}, 2000);
|
|
|
|
}
|
2011-01-11 15:46:59 +00:00
|
|
|
#endif
|
2009-09-23 23:44:08 +00:00
|
|
|
]]></script>
|
2009-09-03 18:04:50 +00:00
|
|
|
</body>
|
|
|
|
</html>
|