2009-09-03 22:04:50 +04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" [
|
|
|
|
<!ENTITY % brandDTD SYSTEM "chrome://branding/locale/brand.dtd" >
|
|
|
|
%brandDTD;
|
|
|
|
<!ENTITY % aboutDTD SYSTEM "chrome://global/locale/about.dtd" >
|
|
|
|
%aboutDTD;
|
|
|
|
<!ENTITY % globalDTD SYSTEM "chrome://global/locale/global.dtd">
|
|
|
|
%globalDTD;
|
|
|
|
<!ENTITY % fennecDTD SYSTEM "chrome://browser/locale/about.dtd">
|
|
|
|
%fennecDTD;
|
|
|
|
]>
|
|
|
|
|
2012-05-21 15:12:37 +04: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 22:04:50 +04:00
|
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<title>&aboutPage.title;</title>
|
2009-09-24 04:32:01 +04:00
|
|
|
<link rel="stylesheet" href="chrome://browser/skin/header.css" type="text/css"/>
|
2009-09-24 03:44:08 +04:00
|
|
|
<link rel="stylesheet" href="chrome://browser/skin/aboutPage.css" type="text/css"/>
|
2009-09-03 22:04:50 +04:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body dir="&locale.dir;">
|
2009-09-24 03:44:08 +04:00
|
|
|
<div id="wrapper">
|
|
|
|
<div id="aboutLogoContainer">
|
|
|
|
<img src="about:logo" alt="&brandShortName;"/>
|
2009-09-03 22:04:50 +04:00
|
|
|
#expand <p id="version">&about.version; __MOZ_APP_VERSION__</p>
|
2009-09-24 03:44:08 +04:00
|
|
|
</div>
|
2011-01-11 18:46:59 +03:00
|
|
|
#ifdef MOZ_UPDATER
|
2010-10-12 23:01:29 +04:00
|
|
|
<button id="update" onclick="checkForUpdates();">&aboutPage.checkForUpdates.button;</button>
|
|
|
|
<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>
|
2011-01-11 18:46:59 +03:00
|
|
|
#endif
|
2011-01-03 17:12:54 +03:00
|
|
|
|
2012-04-10 02:23:42 +04:00
|
|
|
<div id="aboutTelemetry" hidden="true">
|
|
|
|
<p id="telemetry">&aboutPage.warningVersion;&aboutPage.telemetryStart;<a href="http://www.mozilla.org/">&aboutPage.telemetryMozillaLink;</a>&aboutPage.telemetryEnd;</p>
|
|
|
|
</div>
|
|
|
|
|
2009-09-24 03:44:08 +04:00
|
|
|
<ul id="aboutLinks">
|
|
|
|
<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>
|
|
|
|
</ul>
|
2011-01-03 17:12:54 +03:00
|
|
|
|
2009-09-24 03:44:08 +04:00
|
|
|
<div id="aboutDetails">
|
2010-04-02 18:55:00 +04:00
|
|
|
<p id="license"><a href="about:license">&aboutPage.licenseLink;</a>&aboutPage.licenseLinkSuffix; &logoTrademark;</p>
|
2009-09-24 03:44:08 +04:00
|
|
|
<p id="aboutUA"/>
|
|
|
|
</div>
|
2011-01-03 17:12:54 +03:00
|
|
|
|
2009-09-24 03:44:08 +04:00
|
|
|
<script type="application/javascript;version=1.8"><![CDATA[
|
2010-10-12 23:01:29 +04:00
|
|
|
let Ci = Components.interfaces, Cc = Components.classes, Cu = Components.utils, Cr = Components.results;
|
2012-03-02 02:55:14 +04:00
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
|
2012-04-18 04:00:51 +04:00
|
|
|
// Include the build date and warning about Telemetry
|
|
|
|
// if this is an "a#" (nightly or aurora) build
|
2012-03-02 02:55:14 +04: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-18 04:00:51 +04:00
|
|
|
document.getElementById("aboutTelemetry").hidden = false;
|
2012-03-02 02:55:14 +04:00
|
|
|
}
|
2010-10-12 23:01:29 +04:00
|
|
|
|
2009-09-24 03:44:08 +04:00
|
|
|
// get URLs from prefs
|
|
|
|
try {
|
2010-10-12 23:01:29 +04:00
|
|
|
let formatter = Cc["@mozilla.org/toolkit/URLFormatterService;1"].getService(Ci.nsIURLFormatter);
|
2011-01-03 17:12:54 +03:00
|
|
|
|
2009-09-24 03:44:08 +04: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 17:12:54 +03:00
|
|
|
|
2009-09-24 03:44:08 +04: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 17:12:54 +03:00
|
|
|
|
2009-09-24 03:44:08 +04:00
|
|
|
let ua = navigator.userAgent;
|
|
|
|
if (ua) {
|
|
|
|
let uaP = document.getElementById("aboutUA");
|
|
|
|
uaP.appendChild(document.createTextNode(ua));
|
|
|
|
}
|
2010-10-12 23:01:29 +04:00
|
|
|
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
|
2011-01-11 18:46:59 +03:00
|
|
|
#ifdef MOZ_UPDATER
|
2010-10-12 23:01:29 +04:00
|
|
|
let Updater = {
|
|
|
|
isChecking: false,
|
|
|
|
update: null,
|
|
|
|
|
|
|
|
get updateEnabled() {
|
|
|
|
try {
|
|
|
|
return Services.prefs.getBoolPref("app.update.enabled");
|
|
|
|
}
|
|
|
|
catch (e) { }
|
|
|
|
return false; // Mobile default is false
|
|
|
|
},
|
|
|
|
|
2010-10-20 04:31:26 +04:00
|
|
|
startUpdate: function() {
|
2010-10-12 23:01:29 +04:00
|
|
|
if (!this.update)
|
|
|
|
this.update = this.um.activeUpdate;
|
2011-01-03 17:12:54 +03:00
|
|
|
|
2010-10-12 23:01:29 +04:00
|
|
|
this.aus.pauseDownload();
|
2010-10-20 04:31:26 +04:00
|
|
|
|
|
|
|
let updateTimerCallback = this.aus.QueryInterface(Ci.nsITimerCallback);
|
|
|
|
updateTimerCallback.notify(null);
|
2010-10-12 23:01:29 +04:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(Updater, "aus",
|
|
|
|
"@mozilla.org/updates/update-service;1",
|
|
|
|
"nsIApplicationUpdateService");
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(Updater, "checker",
|
|
|
|
"@mozilla.org/updates/update-checker;1",
|
|
|
|
"nsIUpdateChecker");
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(Updater, "um",
|
|
|
|
"@mozilla.org/updates/update-manager;1",
|
|
|
|
"nsIUpdateManager");
|
|
|
|
|
|
|
|
let UpdateCheckListener = {
|
|
|
|
onProgress: function(aRequest, aPosition, aTotalSize) {
|
|
|
|
},
|
|
|
|
|
|
|
|
onCheckComplete: function(aRequest, aUpdates, aUpdateCount) {
|
|
|
|
Updater.isChecking = false;
|
|
|
|
|
|
|
|
Updater.update = Updater.aus.selectUpdate(aUpdates, aUpdates.length);
|
|
|
|
if (!Updater.update || !Updater.aus.canApplyUpdates) {
|
|
|
|
showUpdateMessage(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Updater.update.appVersion || Services.vc.compare(Updater.update.appVersion, Services.appinfo.version) < 0) {
|
|
|
|
showUpdateMessage(false);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
showUpdateMessage(true);
|
2010-10-20 04:31:26 +04:00
|
|
|
Updater.startUpdate();
|
2010-10-12 23:01:29 +04:00
|
|
|
},
|
|
|
|
|
|
|
|
onError: function(aRequest, aUpdate) {
|
|
|
|
// Errors in the update check are treated as no updates found. If the
|
|
|
|
// update check fails repeatedly without a success the user will be
|
|
|
|
// notified with the normal app update user interface so this is safe.
|
|
|
|
Updater.isChecking = false;
|
|
|
|
showUpdateMessage(false);
|
|
|
|
},
|
|
|
|
|
|
|
|
QueryInterface: function(aIID) {
|
|
|
|
if (!aIID.equals(Ci.nsIUpdateCheckListener) && !aIID.equals(Ci.nsISupports))
|
|
|
|
throw Cr.NS_ERROR_NO_INTERFACE;
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!Updater.updateEnabled)
|
|
|
|
document.getElementById("update").style.display = "none";
|
|
|
|
|
|
|
|
function checkForUpdates() {
|
|
|
|
Updater.isChecking = true;
|
|
|
|
showCheckingMessage();
|
|
|
|
|
|
|
|
Updater.checker.checkForUpdates(UpdateCheckListener, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
let updateButton = document.getElementById("update");
|
|
|
|
let checkingSpan = document.getElementById("update-message-checking");
|
|
|
|
let noneSpan = document.getElementById("update-message-none");
|
|
|
|
let foundSpan = document.getElementById("update-message-found");
|
|
|
|
|
|
|
|
function showCheckingMessage() {
|
|
|
|
updateButton.style.display = "none";
|
|
|
|
noneSpan.style.display = "none";
|
|
|
|
foundSpan.style.display = "none";
|
|
|
|
checkingSpan.style.display = "block";
|
|
|
|
}
|
|
|
|
|
|
|
|
function showUpdateMessage(aHasUpdate) {
|
|
|
|
updateButton.style.display = "none";
|
|
|
|
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";
|
|
|
|
updateButton.style.display = "block";
|
|
|
|
}, 2000);
|
|
|
|
}
|
2011-01-11 18:46:59 +03:00
|
|
|
#endif
|
2009-09-24 03:44:08 +04:00
|
|
|
]]></script>
|
2009-09-03 22:04:50 +04:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|