summaryrefslogtreecommitdiffstats
path: root/application/basilisk/base/content/aboutDialog.js
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2018-02-02 05:06:10 -0500
committerMatt A. Tobin <email@mattatobin.com>2018-02-02 05:06:10 -0500
commit6d614170cbfa958564eb5f824234ad5a9e484344 (patch)
tree3e1eb384382f30987cb2e64bd654afa8b74fd06b /application/basilisk/base/content/aboutDialog.js
parent2a6b605d64b19411a300efdbbd7f78c349f90206 (diff)
downloadUXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.gz
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.lz
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.tar.xz
UXP-6d614170cbfa958564eb5f824234ad5a9e484344.zip
Revert "Add Basilisk"
This reverts commit e72ef92b5bdc43cd2584198e2e54e951b70299e8.
Diffstat (limited to 'application/basilisk/base/content/aboutDialog.js')
-rw-r--r--application/basilisk/base/content/aboutDialog.js83
1 files changed, 0 insertions, 83 deletions
diff --git a/application/basilisk/base/content/aboutDialog.js b/application/basilisk/base/content/aboutDialog.js
deleted file mode 100644
index d8965ec55..000000000
--- a/application/basilisk/base/content/aboutDialog.js
+++ /dev/null
@@ -1,83 +0,0 @@
-/* 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/. */
-
-"use strict";
-
-// Services = object with smart getters for common XPCOM services
-Components.utils.import("resource://gre/modules/Services.jsm");
-
-function init(aEvent) {
- if (aEvent.target != document)
- return;
-
- try {
- var distroId = Services.prefs.getCharPref("distribution.id");
- if (distroId) {
- var distroVersion = Services.prefs.getCharPref("distribution.version");
-
- var distroIdField = document.getElementById("distributionId");
- distroIdField.value = distroId + " - " + distroVersion;
- distroIdField.style.display = "block";
-
- try {
- // This is in its own try catch due to bug 895473 and bug 900925.
- var distroAbout = Services.prefs.getComplexValue("distribution.about",
- Components.interfaces.nsISupportsString);
- var distroField = document.getElementById("distribution");
- distroField.value = distroAbout;
- distroField.style.display = "block";
- } catch (ex) {
- // Pref is unset
- Components.utils.reportError(ex);
- }
- }
- } catch (e) {
- // Pref is unset
- }
-
- // Include the build ID
- let versionField = document.getElementById("version");
- let version = Services.appinfo.version;
- let buildID = Services.appinfo.appBuildID;
- let year = buildID.slice(0, 4);
- let month = buildID.slice(4, 6);
- let day = buildID.slice(6, 8);
- let hour = buildID.slice(8, 10);
- let minute = buildID.slice(10, 12);
- if (Services.prefs.getBoolPref("general.useragent.appVersionIsBuildID")) {
- versionField.textContent = `${year}.${month}.${day}`;
- } else {
- versionField.textContent = `v` + version + ` (${year}-${month}-${day})`;
- }
-
- // Display warning if this is an "a#" (nightly or aurora) build
- if (/a\d+$/.test(version)) {
- document.getElementById("experimental").hidden = false;
- document.getElementById("communityDesc").hidden = true;
- }
-
- // Append "(32-bit)" or "(64-bit)" build architecture to the version number:
- let bundle = Services.strings.createBundle("chrome://browser/locale/browser.properties");
- let archResource = Services.appinfo.is64Bit
- ? "aboutDialog.architecture.sixtyFourBit"
- : "aboutDialog.architecture.thirtyTwoBit";
- let arch = bundle.GetStringFromName(archResource);
- versionField.textContent += ` (${arch})`;
-
-#ifdef MOZ_UPDATER
- gAppUpdater = new appUpdater();
-
- let channelLabel = document.getElementById("currentChannel");
- let currentChannelText = document.getElementById("currentChannelText");
- channelLabel.value = UpdateUtils.UpdateChannel;
- if (/^release($|\-)/.test(channelLabel.value))
- currentChannelText.hidden = true;
-#endif
-
-#ifdef XP_MACOSX
- // it may not be sized at this point, and we need its width to calculate its position
- window.sizeToContent();
- window.moveTo((screen.availWidth / 2) - (window.outerWidth / 2), screen.availHeight / 5);
-#endif
-}