1 # ***** BEGIN LICENSE BLOCK *****
2 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
4 # The contents of this file are subject to the Mozilla Public License Version
5 # 1.1 (the "License"); you may not use this file except in compliance with
6 # the License. You may obtain a copy of the License at
7 # http://www.mozilla.org/MPL/
9 # Software distributed under the License is distributed on an "AS IS" basis,
10 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 # for the specific language governing rights and limitations under the
14 # The Original Code is Mozilla Firebird about dialog.
16 # The Initial Developer of the Original Code is
17 # Blake Ross (blaker@netscape.com).
18 # Portions created by the Initial Developer are Copyright (C) 2002
19 # the Initial Developer. All Rights Reserved.
22 # Ehsan Akhgari <ehsan.akhgari@gmail.com>
24 # Alternatively, the contents of this file may be used under the terms of
25 # either the GNU General Public License Version 2 or later (the "GPL"), or
26 # the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the LGPL or the GPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK ***** -->
42 if (aEvent.target != document)
45 var
prefs = Components.classes[
"@mozilla.org/preferences-service;1"]
46 .getService(Components.interfaces.nsIPrefBranch);
49 var distroId = prefs.getCharPref(
"distribution.id");
51 var distroVersion = prefs.getCharPref(
"distribution.version");
52 var distroAbout = prefs.getComplexValue(
"distribution.about",
53 Components.interfaces.nsISupportsString);
55 var distroField = document.getElementById(
"distribution");
56 distroField.value = distroAbout;
57 distroField.style.display =
"block";
59 var distroIdField = document.getElementById(
"distributionId");
60 distroIdField.value = distroId +
" - " + distroVersion;
61 distroIdField.style.display =
"block";
68 var userAgentField = document.getElementById(
"userAgent");
69 userAgentField.value = navigator.userAgent;
71 var button = document.documentElement.getButton(
"extra2");
72 button.setAttribute(
"label", document.documentElement.getAttribute(
"creditslabel"));
73 button.setAttribute(
"accesskey", document.documentElement.getAttribute(
"creditsaccesskey"));
74 button.addEventListener(
"command",
switchPage,
false);
76 var acceptButton = document.documentElement.getButton(
"accept");
78 acceptButton.setAttribute(
"icon",
"close");
85 window.moveTo((screen.availWidth / 2) - (
window.outerWidth / 2), screen.availHeight / 5);
91 if (aEvent.target != document)
93 var iframe = document.getElementById(
"creditsIframe");
94 iframe.setAttribute(
"src",
"");
99 var button = aEvent.target;
100 if (button.localName !=
"button")
103 var iframe = document.getElementById(
"creditsIframe");
105 iframe.setAttribute(
"src",
"chrome://browser/content/credits.xhtml");
106 button.setAttribute(
"label", document.documentElement.getAttribute(
"aboutlabel"));
107 button.setAttribute(
"accesskey", document.documentElement.getAttribute(
"aboutaccesskey"));
111 iframe.setAttribute(
"src",
"");
112 button.setAttribute(
"label", document.documentElement.getAttribute(
"creditslabel"));
113 button.setAttribute(
"accesskey", document.documentElement.getAttribute(
"creditsaccesskey"));
116 var modes = document.getElementById(
"modes");
function switchPage(aEvent)