- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-var FullScreen =
-{
- toggle: function()
- {
- // show/hide all menubars, toolbars, and statusbars (except the full screen toolbar)
- this.showXULChrome("menubar", window.fullScreen);
- this.showXULChrome("toolbar", window.fullScreen);
- this.showXULChrome("statusbar", window.fullScreen);
- },
-
- showXULChrome: function(aTag, aShow)
- {
- var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
- var els = document.getElementsByTagNameNS(XULNS, aTag);
-
- var i;
- for (i = 0; i < els.length; ++i) {
- // XXX don't interfere with previously collapsed toolbars
- if (els[i].getAttribute("fullscreentoolbar") == "true") {
- this.setToolbarButtonMode(els[i], aShow ? "" : "small");
- } else {
- // use moz-collapsed so it doesn't persist hidden/collapsed,
- // so that new windows don't have missing toolbars
- if (aShow)
- els[i].removeAttribute("moz-collapsed");
- else
- els[i].setAttribute("moz-collapsed", "true");
- }
- }
-
- var controls = document.getElementsByAttribute("fullscreencontrol", "true");
- for (i = 0; i < controls.length; ++i)
- controls[i].hidden = aShow;
- },
-
- setToolbarButtonMode: function(aToolbar, aMode)
- {
- aToolbar.setAttribute("toolbarmode", aMode);
- this.setToolbarButtonModeFor(aToolbar, "toolbarbutton", aMode);
- this.setToolbarButtonModeFor(aToolbar, "button", aMode);
- this.setToolbarButtonModeFor(aToolbar, "textbox", aMode);
- },
-
- setToolbarButtonModeFor: function(aToolbar, aTag, aMode)
- {
- var XULNS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
- var els = aToolbar.getElementsByTagNameNS(XULNS, aTag);
-
- for (var i = 0; i < els.length; ++i) {
- els[i].setAttribute("toolbarmode", aMode);
- }
- }
-
-};
diff --git a/xpfe/global/resources/content/globalOverlay.js b/xpfe/global/resources/content/globalOverlay.js
deleted file mode 100644
index 829a617de86e..000000000000
--- a/xpfe/global/resources/content/globalOverlay.js
+++ /dev/null
@@ -1,150 +0,0 @@
-function goQuitApplication()
-{
- var ObserverService = Components.classes["@mozilla.org/observer-service;1"].getService();
- ObserverService = ObserverService.QueryInterface(Components.interfaces.nsIObserverService);
- if (ObserverService)
- {
- try
- {
- // XXX FIX! we should have a way to cancel a requested quit; see
- // bugzilla bug 149764
- ObserverService.notifyObservers(null, "quit-application-requested", null);
- }
- catch (ex)
- {
- // dump("no observer found \n");
- }
- }
-
- var windowManager = Components.classes['@mozilla.org/appshell/window-mediator;1'].getService();
- var windowManagerInterface = windowManager.QueryInterface( Components.interfaces.nsIWindowMediator);
- var enumerator = windowManagerInterface.getEnumerator( null );
- var appStartup = Components.classes["@mozilla.org/toolkit/app-startup;1"].
- getService(Components.interfaces.nsIAppStartup);
-
- var nativeAppSupport = null;
- try {
- nativeAppSupport = appStartup.nativeAppSupport;
- }
- catch ( ex ) {
- }
-
- while ( enumerator.hasMoreElements() )
- {
- var domWindow = enumerator.getNext();
- if (("tryToClose" in domWindow) && !domWindow.tryToClose())
- return false;
- domWindow.close();
- };
- if (!nativeAppSupport || !nativeAppSupport.isServerMode)
- appStartup.quit(Components.interfaces.nsIAppStartup.eAttemptQuit);
- return true;
-}
-
-//
-// Command Updater functions
-//
-function goUpdateCommand(command)
-{
- try {
- var controller = top.document.commandDispatcher.getControllerForCommand(command);
-
- var enabled = false;
-
- if ( controller )
- enabled = controller.isCommandEnabled(command);
-
- goSetCommandEnabled(command, enabled);
- }
- catch (e) {
- dump("An error occurred updating the "+command+" command\n");
- }
-}
-
-function goDoCommand(command)
-{
- try {
- var controller = top.document.commandDispatcher.getControllerForCommand(command);
- if ( controller && controller.isCommandEnabled(command))
- controller.doCommand(command);
- }
- catch (e) {
- dump("An error occurred executing the " + command + " command\n" + e + "\n");
- }
-}
-
-
-function goSetCommandEnabled(id, enabled)
-{
- var node = document.getElementById(id);
-
- if ( node )
- {
- if ( enabled )
- node.removeAttribute("disabled");
- else
- node.setAttribute('disabled', 'true');
- }
-}
-
-function goSetMenuValue(command, labelAttribute)
-{
- var commandNode = top.document.getElementById(command);
- if ( commandNode )
- {
- var label = commandNode.getAttribute(labelAttribute);
- if ( label )
- commandNode.setAttribute('label', label);
- }
-}
-
-function goSetAccessKey(command, valueAttribute)
-{
- var commandNode = top.document.getElementById(command);
- if ( commandNode )
- {
- var value = commandNode.getAttribute(valueAttribute);
- if ( value )
- commandNode.setAttribute('accesskey', value);
- }
-}
-
-// this function is used to inform all the controllers attached to a node that an event has occurred
-// (e.g. the tree controllers need to be informed of blur events so that they can change some of the
-// menu items back to their default values)
-function goOnEvent(node, event)
-{
- var numControllers = node.controllers.getControllerCount();
- var controller;
-
- for ( var controllerIndex = 0; controllerIndex < numControllers; controllerIndex++ )
- {
- controller = node.controllers.getControllerAt(controllerIndex);
- if ( controller )
- controller.onEvent(event);
- }
-}
-
-function setTooltipText(aID, aTooltipText)
-{
- var element = document.getElementById(aID);
- if (element)
- element.setAttribute("tooltiptext", aTooltipText);
-}
-
-function FillInTooltip ( tipElement )
-{
- var retVal = false;
- var textNode = document.getElementById("TOOLTIP-tooltipText");
- if (textNode) {
- while (textNode.hasChildNodes())
- textNode.removeChild(textNode.firstChild);
- var tipText = tipElement.getAttribute("tooltiptext");
- if (tipText) {
- var node = document.createTextNode(tipText);
- textNode.appendChild(node);
- retVal = true;
- }
- }
- return retVal;
-}
diff --git a/xpfe/global/resources/content/globalOverlay.xul b/xpfe/global/resources/content/globalOverlay.xul
deleted file mode 100644
index 7e1f25169c19..000000000000
--- a/xpfe/global/resources/content/globalOverlay.xul
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/hiddenWindow.xul b/xpfe/global/resources/content/hiddenWindow.xul
deleted file mode 100644
index e6620bf6acbc..000000000000
--- a/xpfe/global/resources/content/hiddenWindow.xul
+++ /dev/null
@@ -1,115 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-%brandDTD;
-
-%buildDTD;
-
-%navigatorDTD;
-]>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/license.html b/xpfe/global/resources/content/license.html
deleted file mode 100755
index bc49ca1924c3..000000000000
--- a/xpfe/global/resources/content/license.html
+++ /dev/null
@@ -1,2597 +0,0 @@
-
-
-
-
-
-
- about:license
-
-
-
-
-
-
-
- about:license
-
-
-
-
Official binaries of this product released by the
- Mozilla Foundation
- are made available under
- the corresponding
- EULA.
-
-
Except as described
- here, all
- of the source code to this product is
- available
- under licenses which are both
- free and
- open source.
- Most is available under any one of the following:
- the Mozilla Public License (MPL), the GNU General Public
- License (GPL) and the GNU Lesser General Public License (LGPL).
- That is, you may copy and distribute such software according to the
- terms of any one of those three licenses.
-
-
-
-
-
The remainder of the software which is not under the MPL/LGPL/GPL
- tri-license is available under one of
- a variety of more permissive licenses. Those that require reproduction
- of the license text in the distribution are given below.
- (Note: your copy of this product may not contain code covered by one
- or more of the licenses listed here, depending on the exact product
- and version you choose.)
-
-
-
-
-
-
-
-
-
-
- Mozilla Public License
-
- Version 1.1
-
- 1. Definitions.
-
-
- - 1.0.1. "Commercial Use"
-
- - means distribution or otherwise making the Covered Code available to
- a third party.
-
- - 1.1. "Contributor"
-
- - means each entity that creates or contributes to the creation of
- Modifications.
-
- - 1.2. "Contributor Version"
-
- - means the combination of the Original Code, prior Modifications used
- by a Contributor, and the Modifications made by that particular
- Contributor.
-
- - 1.3. "Covered Code"
-
- - means the Original Code or Modifications or the combination of the
- Original Code and Modifications, in each case including portions
- thereof.
-
- - 1.4. "Electronic Distribution Mechanism"
-
- - means a mechanism generally accepted in the software development
- community for the electronic transfer of data.
-
- - 1.5. "Executable"
-
- - means Covered Code in any form other than Source Code.
-
- - 1.6. "Initial Developer"
-
- - means the individual or entity identified as the Initial Developer in
- the Source Code notice required by Exhibit
- A.
-
- - 1.7. "Larger Work"
-
- - means a work which combines Covered Code or portions thereof with
- code not governed by the terms of this License.
-
- - 1.8. "License"
-
- - means this document.
-
- - 1.8.1. "Licensable"
-
- - means having the right to grant, to the maximum extent possible,
- whether at the time of the initial grant or subsequently acquired, any
- and all of the rights conveyed herein.
-
- - 1.9. "Modifications"
-
- -
-
means any addition to or deletion from the substance or structure of
- either the Original Code or any previous Modifications. When Covered
- Code is released as a series of files, a Modification is:
-
-
- - Any addition to or deletion from the contents
- of a file containing Original Code or previous Modifications.
-
- - Any new file that contains any part of the
- Original Code or previous Modifications.
-
-
-
- - 1.10. "Original Code"
-
- - means Source Code of computer software code which is described in the
- Source Code notice required by Exhibit A as
- Original Code, and which, at the time of its release under this License
- is not already Covered Code governed by this License.
-
- - 1.10.1. "Patent Claims"
-
- - means any patent claim(s), now owned or hereafter acquired, including
- without limitation, method, process, and apparatus claims, in any patent
- Licensable by grantor.
-
- - 1.11. "Source Code"
-
- - means the preferred form of the Covered Code for making modifications
- to it, including all modules it contains, plus any associated interface
- definition files, scripts used to control compilation and installation of
- an Executable, or source code differential comparisons against either the
- Original Code or another well known, available Covered Code of the
- Contributor's choice. The Source Code can be in a compressed or archival
- form, provided the appropriate decompression or de-archiving software is
- widely available for no charge.
-
- - 1.12. "You" (or "Your")
-
- - means an individual or a legal entity exercising rights under, and
- complying with all of the terms of, this License or a future version of
- this License issued under Section 6.1. For
- legal entities, "You" includes any entity which controls, is controlled
- by, or is under common control with You. For purposes of this definition,
- "control" means (a) the power, direct or indirect, to cause the direction
- or management of such entity, whether by contract or otherwise, or (b)
- ownership of more than fifty percent (50%) of the outstanding shares or
- beneficial ownership of such entity.
-
-
- 2. Source Code License.
-
- 2.1. The Initial Developer Grant.
-
- The Initial Developer hereby grants You a world-wide, royalty-free,
- non-exclusive license, subject to third party intellectual property
- claims:
-
-
- - under intellectual property rights (other than
- patent or trademark) Licensable by Initial Developer to use, reproduce,
- modify, display, perform, sublicense and distribute the Original Code (or
- portions thereof) with or without Modifications, and/or as part of a
- Larger Work; and
-
- - under Patents Claims infringed by the making,
- using or selling of Original Code, to make, have made, use, practice,
- sell, and offer for sale, and/or otherwise dispose of the Original Code
- (or portions thereof).
-
- - the licenses granted in this Section 2.1 (a) and (b) are
- effective on the date Initial Developer first distributes Original Code
- under the terms of this License.
-
- - Notwithstanding Section 2.1 (b) above, no patent license is granted: 1) for code
- that You delete from the Original Code; 2) separate from the Original
- Code; or 3) for infringements caused by: i) the modification of the
- Original Code or ii) the combination of the Original Code with other
- software or devices.
-
-
- 2.2. Contributor Grant.
-
- Subject to third party intellectual property claims, each Contributor
- hereby grants You a world-wide, royalty-free, non-exclusive license
-
-
- - under intellectual property rights (other than
- patent or trademark) Licensable by Contributor, to use, reproduce,
- modify, display, perform, sublicense and distribute the Modifications
- created by such Contributor (or portions thereof) either on an unmodified
- basis, with other Modifications, as Covered Code and/or as part of a
- Larger Work; and
-
- - under Patent Claims infringed by the making,
- using, or selling of Modifications made by that Contributor either alone
- and/or in combination with its Contributor Version (or portions of such
- combination), to make, use, sell, offer for sale, have made, and/or
- otherwise dispose of: 1) Modifications made by that Contributor (or
- portions thereof); and 2) the combination of Modifications made by that
- Contributor with its Contributor Version (or portions of such
- combination).
-
- - the licenses granted in Sections 2.2 (a) and 2.2 (b) are
- effective on the date Contributor first makes Commercial Use of the
- Covered Code.
-
- - Notwithstanding Section 2.2 (b) above, no patent license is granted: 1) for any
- code that Contributor has deleted from the Contributor Version; 2)
- separate from the Contributor Version; 3) for infringements caused by: i)
- third party modifications of Contributor Version or ii) the combination
- of Modifications made by that Contributor with other software (except as
- part of the Contributor Version) or other devices; or 4) under Patent
- Claims infringed by Covered Code in the absence of Modifications made by
- that Contributor.
-
-
- 3. Distribution Obligations.
-
- 3.1. Application of License.
-
- The Modifications which You create or to which You contribute are
- governed by the terms of this License, including without limitation Section
- 2.2. The Source Code version of Covered Code may
- be distributed only under the terms of this License or a future version of
- this License released under Section 6.1, and You
- must include a copy of this License with every copy of the Source Code You
- distribute. You may not offer or impose any terms on any Source Code
- version that alters or restricts the applicable version of this License or
- the recipients' rights hereunder. However, You may include an additional
- document offering the additional rights described in Section 3.5.
-
- 3.2. Availability of Source Code.
-
- Any Modification which You create or to which You contribute must be
- made available in Source Code form under the terms of this License either
- on the same media as an Executable version or via an accepted Electronic
- Distribution Mechanism to anyone to whom you made an Executable version
- available; and if made available via Electronic Distribution Mechanism,
- must remain available for at least twelve (12) months after the date it
- initially became available, or at least six (6) months after a subsequent
- version of that particular Modification has been made available to such
- recipients. You are responsible for ensuring that the Source Code version
- remains available even if the Electronic Distribution Mechanism is
- maintained by a third party.
-
- 3.3. Description of Modifications.
-
- You must cause all Covered Code to which You contribute to contain a
- file documenting the changes You made to create that Covered Code and the
- date of any change. You must include a prominent statement that the
- Modification is derived, directly or indirectly, from Original Code
- provided by the Initial Developer and including the name of the Initial
- Developer in (a) the Source Code, and (b) in any notice in an Executable
- version or related documentation in which You describe the origin or
- ownership of the Covered Code.
-
- 3.4. Intellectual Property Matters
-
- (a) Third Party Claims
-
- If Contributor has knowledge that a license under a third party's
- intellectual property rights is required to exercise the rights granted by
- such Contributor under Sections 2.1 or 2.2, Contributor must include a text file with the
- Source Code distribution titled "LEGAL" which describes the claim and the
- party making the claim in sufficient detail that a recipient will know whom
- to contact. If Contributor obtains such knowledge after the Modification is
- made available as described in Section 3.2,
- Contributor shall promptly modify the LEGAL file in all copies Contributor
- makes available thereafter and shall take other steps (such as notifying
- appropriate mailing lists or newsgroups) reasonably calculated to inform
- those who received the Covered Code that new knowledge has been
- obtained.
-
- (b) Contributor APIs
-
- If Contributor's Modifications include an application programming
- interface and Contributor has knowledge of patent licenses which are
- reasonably necessary to implement that API, Contributor must
- also include this information in the legal file.
-
- (c) Representations.
-
- Contributor represents that, except as disclosed pursuant to Section 3.4
- (a) above, Contributor believes that
- Contributor's Modifications are Contributor's original creation(s) and/or
- Contributor has sufficient rights to grant the rights conveyed by this
- License.
-
- 3.5. Required Notices.
-
- You must duplicate the notice in Exhibit A in
- each file of the Source Code. If it is not possible to put such notice in a
- particular Source Code file due to its structure, then You must include
- such notice in a location (such as a relevant directory) where a user would
- be likely to look for such a notice. If You created one or more
- Modification(s) You may add your name as a Contributor to the notice
- described in Exhibit A. You must also duplicate
- this License in any documentation for the Source Code where You describe
- recipients' rights or ownership rights relating to Covered Code. You may
- choose to offer, and to charge a fee for, warranty, support, indemnity or
- liability obligations to one or more recipients of Covered Code. However,
- You may do so only on Your own behalf, and not on behalf of the Initial
- Developer or any Contributor. You must make it absolutely clear than any
- such warranty, support, indemnity or liability obligation is offered by You
- alone, and You hereby agree to indemnify the Initial Developer and every
- Contributor for any liability incurred by the Initial Developer or such
- Contributor as a result of warranty, support, indemnity or liability terms
- You offer.
-
- 3.6. Distribution of Executable Versions.
-
- You may distribute Covered Code in Executable form only if the
- requirements of Sections 3.1, 3.2, 3.3, 3.4 and 3.5 have been met for
- that Covered Code, and if You include a notice stating that the Source Code
- version of the Covered Code is available under the terms of this License,
- including a description of how and where You have fulfilled the obligations
- of Section 3.2. The notice must be conspicuously
- included in any notice in an Executable version, related documentation or
- collateral in which You describe recipients' rights relating to the Covered
- Code. You may distribute the Executable version of Covered Code or
- ownership rights under a license of Your choice, which may contain terms
- different from this License, provided that You are in compliance with the
- terms of this License and that the license for the Executable version does
- not attempt to limit or alter the recipient's rights in the Source Code
- version from the rights set forth in this License. If You distribute the
- Executable version under a different license You must make it absolutely
- clear that any terms which differ from this License are offered by You
- alone, not by the Initial Developer or any Contributor. You hereby agree to
- indemnify the Initial Developer and every Contributor for any liability
- incurred by the Initial Developer or such Contributor as a result of any
- such terms You offer.
-
- 3.7. Larger Works.
-
- You may create a Larger Work by combining Covered Code with other code
- not governed by the terms of this License and distribute the Larger Work as
- a single product. In such a case, You must make sure the requirements of
- this License are fulfilled for the Covered Code.
-
- 4. Inability to Comply Due to Statute or
- Regulation.
-
- If it is impossible for You to comply with any of the terms of this
- License with respect to some or all of the Covered Code due to statute,
- judicial order, or regulation then You must: (a) comply with the terms of
- this License to the maximum extent possible; and (b) describe the
- limitations and the code they affect. Such description must be included in
- the legal file described in Section 3.4 and must be included with all distributions of
- the Source Code. Except to the extent prohibited by statute or regulation,
- such description must be sufficiently detailed for a recipient of ordinary
- skill to be able to understand it.
-
- 5. Application of this License.
-
- This License applies to code to which the Initial Developer has attached
- the notice in Exhibit A and to related Covered
- Code.
-
- 6. Versions of the License.
-
- 6.1. New Versions
-
- Netscape Communications Corporation ("Netscape") may publish revised
- and/or new versions of the License from time to time. Each version will be
- given a distinguishing version number.
-
- 6.2. Effect of New Versions
-
- Once Covered Code has been published under a particular version of the
- License, You may always continue to use it under the terms of that version.
- You may also choose to use such Covered Code under the terms of any
- subsequent version of the License published by Netscape. No one other than
- Netscape has the right to modify the terms applicable to Covered Code
- created under this License.
-
- 6.3. Derivative Works
-
- If You create or use a modified version of this License (which you may
- only do in order to apply it to code which is not already Covered Code
- governed by this License), You must (a) rename Your license so that the
- phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", "MPL", "NPL" or any
- confusingly similar phrase do not appear in your license (except to note
- that your license differs from this License) and (b) otherwise make it
- clear that Your version of the license contains terms which differ from the
- Mozilla Public License and Netscape Public License. (Filling in the name of
- the Initial Developer, Original Code or Contributor in the notice described
- in Exhibit A shall not of themselves be deemed to
- be modifications of this License.)
-
- 7. Disclaimer of
- warranty
-
- Covered code is provided under this license
- on an "as is" basis, without warranty of any kind, either expressed or
- implied, including, without limitation, warranties that the covered code is
- free of defects, merchantable, fit for a particular purpose or
- non-infringing. The entire risk as to the quality and performance of the
- covered code is with you. Should any covered code prove defective in any
- respect, you (not the initial developer or any other contributor) assume
- the cost of any necessary servicing, repair or correction. This disclaimer
- of warranty constitutes an essential part of this license. No use of any
- covered code is authorized hereunder except under this
- disclaimer.
-
- 8. Termination
-
- 8.1. This License and the rights granted hereunder will
- terminate automatically if You fail to comply with terms herein and fail to
- cure such breach within 30 days of becoming aware of the breach. All
- sublicenses to the Covered Code which are properly granted shall survive
- any termination of this License. Provisions which, by their nature, must
- remain in effect beyond the termination of this License shall survive.
-
- 8.2. If You initiate litigation by asserting a patent
- infringement claim (excluding declatory judgment actions) against Initial
- Developer or a Contributor (the Initial Developer or Contributor against
- whom You file such action is referred to as "Participant") alleging
- that:
-
-
- - such Participant's Contributor Version directly or
- indirectly infringes any patent, then any and all rights granted by such
- Participant to You under Sections 2.1 and/or
- 2.2 of this License shall, upon 60 days notice
- from Participant terminate prospectively, unless if within 60 days after
- receipt of notice You either: (i) agree in writing to pay Participant a
- mutually agreeable reasonable royalty for Your past and future use of
- Modifications made by such Participant, or (ii) withdraw Your litigation
- claim with respect to the Contributor Version against such Participant.
- If within 60 days of notice, a reasonable royalty and payment arrangement
- are not mutually agreed upon in writing by the parties or the litigation
- claim is not withdrawn, the rights granted by Participant to You under
- Sections 2.1 and/or 2.2 automatically terminate at the expiration of the
- 60 day notice period specified above.
-
- - any software, hardware, or device, other than such
- Participant's Contributor Version, directly or indirectly infringes any
- patent, then any rights granted to You by such Participant under Sections
- 2.1(b) and 2.2(b) are revoked effective as of the date You first
- made, used, sold, distributed, or had made, Modifications made by that
- Participant.
-
-
- 8.3. If You assert a patent infringement claim against
- Participant alleging that such Participant's Contributor Version directly
- or indirectly infringes any patent where such claim is resolved (such as by
- license or settlement) prior to the initiation of patent infringement
- litigation, then the reasonable value of the licenses granted by such
- Participant under Sections 2.1 or 2.2 shall be taken into account in determining the
- amount or value of any payment or license.
-
- 8.4. In the event of termination under Sections 8.1 or 8.2 above, all
- end user license agreements (excluding distributors and resellers) which
- have been validly granted by You or any distributor hereunder prior to
- termination shall survive termination.
-
- 9. Limitation of
- liability
-
- Under no circumstances and under no legal
- theory, whether tort (including negligence), contract, or otherwise, shall
- you, the initial developer, any other contributor, or any distributor of
- covered code, or any supplier of any of such parties, be liable to any
- person for any indirect, special, incidental, or consequential damages of
- any character including, without limitation, damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all other
- commercial damages or losses, even if such party shall have been informed
- of the possibility of such damages. This limitation of liability shall not
- apply to liability for death or personal injury resulting from such party's
- negligence to the extent applicable law prohibits such limitation. Some
- jurisdictions do not allow the exclusion or limitation of incidental or
- consequential damages, so this exclusion and limitation may not apply to
- you.
-
- 10. U.S. government
- end users
-
- The Covered Code is a "commercial item," as that term is defined in 48
- C.F.R. 2.101 (Oct. 1995),
- consisting of "commercial computer software" and "commercial computer
- software documentation," as such terms are used in 48 C.F.R.
- 12.212 (Sept. 1995). Consistent with 48
- C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through
- 227.7202-4 (June 1995), all U.S. Government End Users acquire
- Covered Code with only those rights set forth herein.
-
- 11. Miscellaneous
-
- This License represents the complete agreement concerning subject matter
- hereof. If any provision of this License is held to be unenforceable, such
- provision shall be reformed only to the extent necessary to make it
- enforceable. This License shall be governed by California law provisions
- (except to the extent applicable law, if any, provides otherwise),
- excluding its conflict-of-law provisions. With respect to disputes in which
- at least one party is a citizen of, or an entity chartered or registered to
- do business in the United States of America, any litigation relating to
- this License shall be subject to the jurisdiction of the Federal Courts of
- the Northern District of California, with venue lying in Santa Clara
- County, California, with the losing party responsible for costs, including
- without limitation, court costs and reasonable attorneys' fees and
- expenses. The application of the United Nations Convention on Contracts for
- the International Sale of Goods is expressly excluded. Any law or
- regulation which provides that the language of a contract shall be
- construed against the drafter shall not apply to this License.
-
- 12. Responsibility for claims
-
- As between Initial Developer and the Contributors, each party is
- responsible for claims and damages arising, directly or indirectly, out of
- its utilization of rights under this License and You agree to work with
- Initial Developer and Contributors to distribute such responsibility on an
- equitable basis. Nothing herein is intended or shall be deemed to
- constitute any admission of liability.
-
- 13. Multiple-licensed code
-
- Initial Developer may designate portions of the Covered Code as
- "Multiple-Licensed". "Multiple-Licensed" means that the Initial Developer
- permits you to utilize portions of the Covered Code under Your choice of
- the MPL or the alternative licenses, if any, specified by the
- Initial Developer in the file described in Exhibit
- A.
-
- Exhibit A - Mozilla Public License.
-
-
-"The contents of this file are subject to the Mozilla Public License
-Version 1.1 (the "License"); you may not use this file except in
-compliance with the License. You may obtain a copy of the License at
-http://www.mozilla.org/MPL/
-
-Software distributed under the License is distributed on an "AS IS"
-basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
-License for the specific language governing rights and limitations
-under the License.
-
-The Original Code is ______________________________________.
-
-The Initial Developer of the Original Code is ________________________.
-Portions created by ______________________ are Copyright (C) ______
-_______________________. All Rights Reserved.
-
-Contributor(s): ______________________________________.
-
-Alternatively, the contents of this file may be used under the terms
-of the _____ license (the "[___] License"), in which case the
-provisions of [______] License are applicable instead of those
-above. If you wish to allow use of your version of this file only
-under the terms of the [____] License and not to allow others to use
-your version of this file under the MPL, indicate your decision by
-deleting the provisions above and replace them with the notice and
-other provisions required by the [___] License. If you do not delete
-the provisions above, a recipient may use your version of this file
-under either the MPL or the [___] License."
-
-
- NOTE: The text of this Exhibit A may differ slightly from the text of
- the notices in the Source Code files of the Original Code. You should use
- the text of this Exhibit A rather than the text found in the Original Code
- Source Code for Your Modifications.
-
-
-
- Initial Developers
-
-
- In accordance with MPL
- section 3.3, we state that this
- software is derived, directly or indirectly, from Original Code provided
- by some or all of the following people, companies and organisations:
-
-
-
-
-
-Aaron Leventhal,
-Aaron Schulman,
-ActiveState Tool Corp,
-Akkana Peck,
-Alex Fritze,
-Alexa Internet,
-Alexander J. Vincent,
-Alexander Surkov,
-Andreas Otte,
-Andreas Premstaller,
-Andrew Thompson,
-ArentJan Banck,
-Asaf Romano,
-Axel Hecht,
-Ben Bucksch,
-Ben Goodger,
-Ben Turner,
-Benjamin Smedberg,
-Bernd Mielke,
-Blake Ross,
-Boris Zbarsky,
-Bradley Baetz,
-Brendan Eich,
-Brian Bober,
-Brian Ryner,
-Brian Stell,
-Bruce Davidson,
-Bruno Haible,
-Calum Robinson,
-Cedric Chantepie,
-Chiaki Koufugata,
-Chris McAfee,
-Christian Biesinger,
-Christopher A. Aillon,
-Christopher Blizzard,
-Christopher Hoess,
-Christopher Seawood,
-Collabnet,
-Conrad Carlen,
-Crocodile Clips Ltd,
-Cyrus Patel,
-Dainis Jonitis,
-Dan Mosedale,
-Daniel Brooks,
-Daniel Glazman,
-Daniel Kouril,
-Daniel Witte,
-Dantifer Dang,
-Darin Fisher,
-Dave Liebreich,
-David Bienvenu,
-David Bradley,
-David Einstein,
-David Hyatt,
-David P. Caldwell,
-Deogtae Kim,
-Dietrich Ayala,
-Digital Creations 2 Inc,
-Disruptive Innovations SARL,
-Doron Rosenberg,
-Doug Turner,
-Elika J. Etemad,
-Eric Belhaire,
-Eric Hodel,
-Esben Mose Hansen,
-Florian QUEZE,
-Frank Schönheit,
-Fredrik Holmqvist,
-Gavin Sharp,
-Geocast Network Systems,
-Geoff Beier,
-Gervase Markham,
-Gijs Kruitbosch,
-Giorgio Maone,
-Google Inc,
-Håkan Waara,
-Heriot-Watt University,
-Hewlett-Packard Company,
-i-DNS.net International,
-Ian Hickson,
-Ian Oeschger,
-IBM Corporation,
-Igor Bukanov,
-InnoTek Systemberatung GmbH,
-Intel Corporation,
-James L. Nance,
-James Ross,
-Jamie Zawinski,
-Jan Varga,
-Jason Barnabe,
-Jean-Francois Ducarroz,
-Jeff Tsai,
-Jeff Walden,
-Jefferson Software Inc,
-Joe Hewitt,
-Joey Minta,
-John B. Keiser,
-John C. Griggs,
-John Fairhurst,
-John Wolfe,
-Jonas Sicking,
-Jonathan Watt,
-Josh Aas,
-Josh Soref,
-Juan Lang,
-Jungshik Shin,
-Jussi Kukkonen,
-Karsten Düsterloh,
-Keith Visco,
-Ken Herron,
-Kevin Gerich,
-Kipp E.B. Hickman,
-L. David Baron,
-Leif Hedstrom,
-Lixto GmbH,
-Makoto Kato,
-Marc Bevand,
-Marcio S. Galli,
-Marco Manfredini,
-Marco Pesenti Gritti,
-Mark Banner,
-Mark Hammond,
-Mark Mentovai,
-Markus G. Kuhn,
-Matt Judy,
-Matthew Willis,
-Merle Sterling,
-Michael J. Fromberger,
-Michal Ceresna,
-Michel C. C. Buijsman,
-Michiel van Leeuwen,
-Mike Connor,
-Mike Pinkerton,
-Mike Potter,
-Mike Shaver,
-MITRE Corporation,
-Mozdev Group,
-Mozilla Corporation,
-Mozilla Foundation,
-Mozilla Japan,
-Naoki Hotta,
-Neil Deakin,
-Neil Rashbrook,
-Nelson B. Bolyard,
-Netscape Communications Corporation,
-New Dimensions Consulting,
-Nick Kreeger,
-Nickolay Ponomarev,
-Novell Inc,
-NTT,
-OEone Corporation,
-Oleg Romashin,
-Olli Pettay,
-Oracle Corporation,
-Paul Ashford,
-Paul Kocher,
-Paul Sandoz,
-Paul Tomlin,
-Peter Annema,
-Peter Van der Beken,
-Peter Weilbacher,
-Phil Ringnalda,
-Philipp Kewisch,
-Pierre Chanial,
-Prachi Gauriar,
-Qualcomm Inc,
-R.J. Keller,
-Rajiv Dayal,
-Ramalingam Saravanan,
-Red Hat Inc,
-Rich Megginson,
-Rich Salz,
-Richard C. Swift,
-Richard L. Walsh,
-Richard Verhoeven,
-Rick Gessner,
-Robert Accettura,
-Robert G. Ginda,
-Robert John Churchill,
-Robert Kaiser,
-Robert Longson,
-Robert Marshall,
-Robert O'Callahan,
-Robert Sayre,
-Robert Strong,
-Roland Mainz,
-RSA Security Inc,
-Rusty Lynch,
-Ryan Cassin,
-Samphan Raruenrom,
-Scooter Morris,
-Scott MacGregor,
-Sergei Dolgov,
-Seth Spitzer,
-Shawn Wilsher,
-Shy Shalom,
-Silverstone Interactive,
-Simdesk Technologies Inc,
-Simmule Turner,
-Simon Bünzli,
-Simon Fraser,
-Simon Montagu,
-Simon Paquet,
-Simon Wilkinson,
-Sqlite Project,
-Srilatha Moturi,
-Stefan Sitter,
-Stephen Horlander,
-Steve Swanson,
-Stuart Morgan,
-Stuart Parmenter,
-Sun Microsystems Inc,
-Ted Mielczarek,
-Theppitak Karoonboonyanan,
-Tim Copperfield,
-timeless,
-Tomas Müller,
-University of Queensland,
-Vincent Béron,
-Vladimir Vukicevic,
-Wolfgang Rosenauer,
-YAMASHITA Makoto,
-Zack Rusin,
-Zero-Knowledge Systems.
-
-
-
-
- GNU General Public License
-
- Version 2, June 1991
-
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-
Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
-
When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
-
To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
-
For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
-rights.
-
-
We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
-
Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
-
Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
-
The precise terms and conditions for copying, distribution and
-modification follow.
-
-
GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0.
-This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-
-
Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
-
1.
-You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-
You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
-
2.
-You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-
-
These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-
Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-
In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-
3.
-You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
-
The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-
If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-
4.
-You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
-
5.
-You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
-
6.
-Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
-
7.
-If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-
If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-
It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-
This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-
8.
-If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
-the limitation as if written in the body of this License.
-
-
9.
-The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-
Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
-
10.
-If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
-
NO WARRANTY
-
-11.
-BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
-
12.
-IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
-
END OF TERMS AND CONDITIONS
-
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
-
To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
-
- <one line to give the program's name and a brief idea of what it does.>
- Copyright (C) <year> <name of author>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-Also add information on how to contact you by electronic and paper mail.
-
-
If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
-
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-
You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
-
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- <signature of Ty Coon>, 1 April 1989
- Ty Coon, President of Vice
-
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General
-Public License instead of this License.
-
-
-
-
-
- GNU Lesser General Public License
-
- Version 2.1, February 1999
-
-Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
-
[This is the first released version of the Lesser GPL. It also counts
- as the successor of the GNU Library Public License, version 2, hence
- the version number 2.1.]
-
-
Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-Licenses are intended to guarantee your freedom to share and change
-free software--to make sure the software is free for all its users.
-
-
This license, the Lesser General Public License, applies to some
-specially designated software packages--typically libraries--of the
-Free Software Foundation and other authors who decide to use it. You
-can use it too, but we suggest you first think carefully about whether
-this license or the ordinary General Public License is the better
-strategy to use in any particular case, based on the explanations below.
-
-
When we speak of free software, we are referring to freedom of use,
-not price. Our General Public Licenses are designed to make sure that
-you have the freedom to distribute copies of free software (and charge
-for this service if you wish); that you receive source code or can get
-it if you want it; that you can change the software and use pieces of
-it in new free programs; and that you are informed that you can do
-these things.
-
-
To protect your rights, we need to make restrictions that forbid
-distributors to deny you these rights or to ask you to surrender these
-rights. These restrictions translate to certain responsibilities for
-you if you distribute copies of the library or if you modify it.
-
-
For example, if you distribute copies of the library, whether gratis
-or for a fee, you must give the recipients all the rights that we gave
-you. You must make sure that they, too, receive or can get the source
-code. If you link other code with the library, you must provide
-complete object files to the recipients, so that they can relink them
-with the library after making changes to the library and recompiling
-it. And you must show them these terms so they know their rights.
-
-
We protect your rights with a two-step method: (1) we copyright the
-library, and (2) we offer you this license, which gives you legal
-permission to copy, distribute and/or modify the library.
-
-
To protect each distributor, we want to make it very clear that
-there is no warranty for the free library. Also, if the library is
-modified by someone else and passed on, the recipients should know
-that what they have is not the original version, so that the original
-author's reputation will not be affected by problems that might be
-introduced by others.
-
-
Finally, software patents pose a constant threat to the existence of
-any free program. We wish to make sure that a company cannot
-effectively restrict the users of a free program by obtaining a
-restrictive license from a patent holder. Therefore, we insist that
-any patent license obtained for a version of the library must be
-consistent with the full freedom of use specified in this license.
-
-
Most GNU software, including some libraries, is covered by the
-ordinary GNU General Public License. This license, the GNU Lesser
-General Public License, applies to certain designated libraries, and
-is quite different from the ordinary General Public License. We use
-this license for certain libraries in order to permit linking those
-libraries into non-free programs.
-
-
When a program is linked with a library, whether statically or using
-a shared library, the combination of the two is legally speaking a
-combined work, a derivative of the original library. The ordinary
-General Public License therefore permits such linking only if the
-entire combination fits its criteria of freedom. The Lesser General
-Public License permits more lax criteria for linking other code with
-the library.
-
-
We call this license the "Lesser" General Public License because it
-does Less to protect the user's freedom than the ordinary General
-Public License. It also provides other free software developers Less
-of an advantage over competing non-free programs. These disadvantages
-are the reason we use the ordinary General Public License for many
-libraries. However, the Lesser license provides advantages in certain
-special circumstances.
-
-
For example, on rare occasions, there may be a special need to
-encourage the widest possible use of a certain library, so that it becomes
-a de-facto standard. To achieve this, non-free programs must be
-allowed to use the library. A more frequent case is that a free
-library does the same job as widely used non-free libraries. In this
-case, there is little to gain by limiting the free library to free
-software only, so we use the Lesser General Public License.
-
-
In other cases, permission to use a particular library in non-free
-programs enables a greater number of people to use a large body of
-free software. For example, permission to use the GNU C Library in
-non-free programs enables many more people to use the whole GNU
-operating system, as well as its variant, the GNU/Linux operating
-system.
-
-
Although the Lesser General Public License is Less protective of the
-users' freedom, it does ensure that the user of a program that is
-linked with the Library has the freedom and the wherewithal to run
-that program using a modified version of the Library.
-
-
The precise terms and conditions for copying, distribution and
-modification follow. Pay close attention to the difference between a
-"work based on the library" and a "work that uses the library". The
-former contains code derived from the library, whereas the latter must
-be combined with the library in order to run.
-
-
GNU LESSER GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
-0.
-This License Agreement applies to any software library or other
-program which contains a notice placed by the copyright holder or
-other authorized party saying it may be distributed under the terms of
-this Lesser General Public License (also called "this License").
-Each licensee is addressed as "you".
-
-
A "library" means a collection of software functions and/or data
-prepared so as to be conveniently linked with application programs
-(which use some of those functions and data) to form executables.
-
-
The "Library", below, refers to any such software library or work
-which has been distributed under these terms. A "work based on the
-Library" means either the Library or any derivative work under
-copyright law: that is to say, a work containing the Library or a
-portion of it, either verbatim or with modifications and/or translated
-straightforwardly into another language. (Hereinafter, translation is
-included without limitation in the term "modification".)
-
-
"Source code" for a work means the preferred form of the work for
-making modifications to it. For a library, complete source code means
-all the source code for all modules it contains, plus any associated
-interface definition files, plus the scripts used to control compilation
-and installation of the library.
-
-
Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running a program using the Library is not restricted, and output from
-such a program is covered only if its contents constitute a work based
-on the Library (independent of the use of the Library in a tool for
-writing it). Whether that is true depends on what the Library does
-and what the program that uses the Library does.
-
-
1.
-You may copy and distribute verbatim copies of the Library's
-complete source code as you receive it, in any medium, provided that
-you conspicuously and appropriately publish on each copy an
-appropriate copyright notice and disclaimer of warranty; keep intact
-all the notices that refer to this License and to the absence of any
-warranty; and distribute a copy of this License along with the
-Library.
-
-
You may charge a fee for the physical act of transferring a copy,
-and you may at your option offer warranty protection in exchange for a
-fee.
-
-
2.
-You may modify your copy or copies of the Library or any portion
-of it, thus forming a work based on the Library, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) The modified work must itself be a software library.
-
- b) You must cause the files modified to carry prominent notices
- stating that you changed the files and the date of any change.
-
- c) You must cause the whole of the work to be licensed at no
- charge to all third parties under the terms of this License.
-
- d) If a facility in the modified Library refers to a function or a
- table of data to be supplied by an application program that uses
- the facility, other than as an argument passed when the facility
- is invoked, then you must make a good faith effort to ensure that,
- in the event an application does not supply such function or
- table, the facility still operates, and performs whatever part of
- its purpose remains meaningful.
-
- (For example, a function in a library to compute square roots has
- a purpose that is entirely well-defined independent of the
- application. Therefore, Subsection 2d requires that any
- application-supplied function or table used by this function must
- be optional: if the application does not supply it, the square
- root function must still compute square roots.)
-
-
These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Library,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Library, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote
-it.
-
-
Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Library.
-
-
In addition, mere aggregation of another work not based on the Library
-with the Library (or with a work based on the Library) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
-
3.
-You may opt to apply the terms of the ordinary GNU General Public
-License instead of this License to a given copy of the Library. To do
-this, you must alter all the notices that refer to this License, so
-that they refer to the ordinary GNU General Public License, version 2,
-instead of to this License. (If a newer version than version 2 of the
-ordinary GNU General Public License has appeared, then you can specify
-that version instead if you wish.) Do not make any other change in
-these notices.
-
-
Once this change is made in a given copy, it is irreversible for
-that copy, so the ordinary GNU General Public License applies to all
-subsequent copies and derivative works made from that copy.
-
-
This option is useful when you wish to copy part of the code of
-the Library into a program that is not a library.
-
-
4.
-You may copy and distribute the Library (or a portion or
-derivative of it, under Section 2) in object code or executable form
-under the terms of Sections 1 and 2 above provided that you accompany
-it with the complete corresponding machine-readable source code, which
-must be distributed under the terms of Sections 1 and 2 above on a
-medium customarily used for software interchange.
-
-
If distribution of object code is made by offering access to copy
-from a designated place, then offering equivalent access to copy the
-source code from the same place satisfies the requirement to
-distribute the source code, even though third parties are not
-compelled to copy the source along with the object code.
-
-
5.
-A program that contains no derivative of any portion of the
-Library, but is designed to work with the Library by being compiled or
-linked with it, is called a "work that uses the Library". Such a
-work, in isolation, is not a derivative work of the Library, and
-therefore falls outside the scope of this License.
-
-
However, linking a "work that uses the Library" with the Library
-creates an executable that is a derivative of the Library (because it
-contains portions of the Library), rather than a "work that uses the
-library". The executable is therefore covered by this License.
-Section 6 states terms for distribution of such executables.
-
-
When a "work that uses the Library" uses material from a header file
-that is part of the Library, the object code for the work may be a
-derivative work of the Library even though the source code is not.
-Whether this is true is especially significant if the work can be
-linked without the Library, or if the work is itself a library. The
-threshold for this to be true is not precisely defined by law.
-
-
If such an object file uses only numerical parameters, data
-structure layouts and accessors, and small macros and small inline
-functions (ten lines or less in length), then the use of the object
-file is unrestricted, regardless of whether it is legally a derivative
-work. (Executables containing this object code plus portions of the
-Library will still fall under Section 6.)
-
-
Otherwise, if the work is a derivative of the Library, you may
-distribute the object code for the work under the terms of Section 6.
-Any executables containing that work also fall under Section 6,
-whether or not they are linked directly with the Library itself.
-
-
6.
-As an exception to the Sections above, you may also combine or
-link a "work that uses the Library" with the Library to produce a
-work containing portions of the Library, and distribute that work
-under terms of your choice, provided that the terms permit
-modification of the work for the customer's own use and reverse
-engineering for debugging such modifications.
-
-
You must give prominent notice with each copy of the work that the
-Library is used in it and that the Library and its use are covered by
-this License. You must supply a copy of this License. If the work
-during execution displays copyright notices, you must include the
-copyright notice for the Library among them, as well as a reference
-directing the user to the copy of this License. Also, you must do one
-of these things:
-
- a) Accompany the work with the complete corresponding
- machine-readable source code for the Library including whatever
- changes were used in the work (which must be distributed under
- Sections 1 and 2 above); and, if the work is an executable linked
- with the Library, with the complete machine-readable "work that
- uses the Library", as object code and/or source code, so that the
- user can modify the Library and then relink to produce a modified
- executable containing the modified Library. (It is understood
- that the user who changes the contents of definitions files in the
- Library will not necessarily be able to recompile the application
- to use the modified definitions.)
-
- b) Use a suitable shared library mechanism for linking with the
- Library. A suitable mechanism is one that (1) uses at run time a
- copy of the library already present on the user's computer system,
- rather than copying library functions into the executable, and (2)
- will operate properly with a modified version of the library, if
- the user installs one, as long as the modified version is
- interface-compatible with the version that the work was made with.
-
- c) Accompany the work with a written offer, valid for at
- least three years, to give the same user the materials
- specified in Subsection 6a, above, for a charge no more
- than the cost of performing this distribution.
-
- d) If distribution of the work is made by offering access to copy
- from a designated place, offer equivalent access to copy the above
- specified materials from the same place.
-
- e) Verify that the user has already received a copy of these
- materials or that you have already sent this user a copy.
-
-
For an executable, the required form of the "work that uses the
-Library" must include any data and utility programs needed for
-reproducing the executable from it. However, as a special exception,
-the materials to be distributed need not include anything that is
-normally distributed (in either source or binary form) with the major
-components (compiler, kernel, and so on) of the operating system on
-which the executable runs, unless that component itself accompanies
-the executable.
-
-
It may happen that this requirement contradicts the license
-restrictions of other proprietary libraries that do not normally
-accompany the operating system. Such a contradiction means you cannot
-use both them and the Library together in an executable that you
-distribute.
-
-
7.
-You may place library facilities that are a work based on the
-Library side-by-side in a single library together with other library
-facilities not covered by this License, and distribute such a combined
-library, provided that the separate distribution of the work based on
-the Library and of the other library facilities is otherwise
-permitted, and provided that you do these two things:
-
- a) Accompany the combined library with a copy of the same work
- based on the Library, uncombined with any other library
- facilities. This must be distributed under the terms of the
- Sections above.
-
- b) Give prominent notice with the combined library of the fact
- that part of it is a work based on the Library, and explaining
- where to find the accompanying uncombined form of the same work.
-
-
8.
-You may not copy, modify, sublicense, link with, or distribute
-the Library except as expressly provided under this License. Any
-attempt otherwise to copy, modify, sublicense, link with, or
-distribute the Library is void, and will automatically terminate your
-rights under this License. However, parties who have received copies,
-or rights, from you under this License will not have their licenses
-terminated so long as such parties remain in full compliance.
-
-
9.
-You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Library or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Library (or any work based on the
-Library), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Library or works based on it.
-
-
10.
-Each time you redistribute the Library (or any work based on the
-Library), the recipient automatically receives a license from the
-original licensor to copy, distribute, link with or modify the Library
-subject to these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties with
-this License.
-
-
11.
-If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Library at all. For example, if a patent
-license would not permit royalty-free redistribution of the Library by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Library.
-
-
If any portion of this section is held invalid or unenforceable under any
-particular circumstance, the balance of the section is intended to apply,
-and the section as a whole is intended to apply in other circumstances.
-
-
It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-
This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-
-
12.
-If the distribution and/or use of the Library is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Library under this License may add
-an explicit geographical distribution limitation excluding those countries,
-so that distribution is permitted only in or among countries not thus
-excluded. In such case, this License incorporates the limitation as if
-written in the body of this License.
-
-
13.
-The Free Software Foundation may publish revised and/or new
-versions of the Lesser General Public License from time to time.
-Such new versions will be similar in spirit to the present version,
-but may differ in detail to address new problems or concerns.
-
-
Each version is given a distinguishing version number. If the Library
-specifies a version number of this License which applies to it and
-"any later version", you have the option of following the terms and
-conditions either of that version or of any later version published by
-the Free Software Foundation. If the Library does not specify a
-license version number, you may choose any version ever published by
-the Free Software Foundation.
-
-
14.
-If you wish to incorporate parts of the Library into other free
-programs whose distribution conditions are incompatible with these,
-write to the author to ask for permission. For software which is
-copyrighted by the Free Software Foundation, write to the Free
-Software Foundation; we sometimes make exceptions for this. Our
-decision will be guided by the two goals of preserving the free status
-of all derivatives of our free software and of promoting the sharing
-and reuse of software generally.
-
-
NO WARRANTY
-
-15.
-BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
-WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
-EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
-OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
-KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
-LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
-THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
-
-
16.
-IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
-WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
-AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
-FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
-CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
-LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
-RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
-FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
-SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
-DAMAGES.
-
-
END OF TERMS AND CONDITIONS
-
-
How to Apply These Terms to Your New Libraries
-
- If you develop a new library, and you want it to be of the greatest
-possible use to the public, we recommend making it free software that
-everyone can redistribute and change. You can do so by permitting
-redistribution under these terms (or, alternatively, under the terms of the
-ordinary General Public License).
-
-
To apply these terms, attach the following notices to the library. It is
-safest to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least the
-"copyright" line and a pointer to where the full notice is found.
-
-
- <one line to give the library's name and a brief idea of what it does.>
- Copyright (C) <year> <name of author>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-Also add information on how to contact you by electronic and paper mail.
-
-
You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the library, if
-necessary. Here is a sample; alter the names:
-
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the
- library `Frob' (a library for tweaking knobs) written by James Random Hacker.
-
- <signature of Ty Coon>, 1 April 1990
- Ty Coon, President of Vice
-
-
-That's all there is to it!
-
-
-
-
-
- Apple/Mozilla NPRuntime License
-
- This license applies to the file
- modules/plugin/base/public/npruntime.h.
-
-
-Copyright © 2004, Apple Computer, Inc. and The Mozilla Foundation.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
-1. Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
-notice, this list of conditions and the following disclaimer in the
-documentation and/or other materials provided with the distribution.
-3. Neither the names of Apple Computer, Inc. ("Apple") or The Mozilla
-Foundation ("Mozilla") nor the names of their contributors may be used
-to endorse or promote products derived from this software without
-specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY APPLE, MOZILLA AND THEIR CONTRIBUTORS "AS
-IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
-TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
-PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE, MOZILLA OR
-THEIR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
-TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-
-
-
- Breakpad License
-
- This license applies to files in the directory
- toolkit/crashreporter/google-breakpad/.
-
-
-Copyright (c) 2006, Google Inc.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are
-met:
-
- * Redistributions of source code must retain the above copyright
-notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above
-copyright notice, this list of conditions and the following disclaimer
-in the documentation and/or other materials provided with the
-distribution.
- * Neither the name of Google Inc. nor the names of its
-contributors may be used to endorse or promote products derived from
-this software without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-
-
-
- bspatch License
-
- This license applies to the files
- toolkit/mozapps/update/src/updater/bspatch.cpp and
- toolkit/mozapps/update/src/updater/bspatch.h.
-
-
-
-Copyright 2003,2004 Colin Percival
-All rights reserved
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted providing that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
-DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
-STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
-IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-
-
-
-
- Cairo Component Licenses
-
- This license, with different copyright holders, applies
- to certain files in the directory
- gfx/cairo/. The copyright holders
- and the applicable ranges of dates are as follows:
-
-
-- 2004 Richard D. Worth
-
- 2004, 2005 Red Hat, Inc.
-
- 2003 USC, Information Sciences Institute
-
- 2004 David Reveman
-
- 2005 Novell, Inc.
-
- 2004 David Reveman, Peter Nilsson
-
- 2000 Keith Packard, member of The XFree86 Project, Inc.
-
- 2005 Lars Knoll & Zack Rusin, Trolltech
-
- 1998, 2000, 2002, 2004 Keith Packard
-
- 2004 Nicholas Miell
-
- 2005 Trolltech AS
-
- 2000 SuSE, Inc.
-
- 2003 Carl Worth
-
- 1987, 1988, 1989, 1998 The Open Group
-
- 1987, 1988, 1989 Digital Equipment Corporation, Maynard, Massachusetts.
-
- 1998 Keith Packard
-
- 2003 Richard Henderson
-
-
-
-Copyright © <date> <copyright holder>
-
-Permission to use, copy, modify, distribute, and sell this software
-and its documentation for any purpose is hereby granted without
-fee, provided that the above copyright notice appear in all copies
-and that both that copyright notice and this permission notice
-appear in supporting documentation, and that the name of
-<copyright holder> not be used in advertising or publicity pertaining to
-distribution of the software without specific, written prior permission.
-<copyright holder> makes no representations about the suitability of this
-software for any purpose. It is provided "as is" without express or
-implied warranty.
-
-<COPYRIGHT HOLDER> DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
-INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
-NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY SPECIAL, INDIRECT OR
-CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
-OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
-NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
-WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
-
-
-
-
-
-
- Dutch Spellchecking Dictionary
-
- This license applies to certain files in the directory
- l10n/nl/extensions/spellcheck/hunspell/. (This
- code only ships in some localized versions of this product.)
-
-
-Copyright (c) 2006, 2007 OpenTaal
-Copyright (c) 2001, 2002, 2003, 2005 Simon Brouwer e.a.
-Copyright (c) 1996 Nederlandstalige Tex Gebruikersgroep
-
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
-
-* Redistributions of source code must retain the above copyright notice, this
-list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above copyright notice,
-this list of conditions and the following disclaimer in the documentation
-and/or other materials provided with the distribution.
-* Neither the name of the OpenTaal, Simon Brouwer e.a., or Nederlandstalige Tex
-Gebruikersgroep nor the names of its contributors may be used to endorse or
-promote products derived from this software without specific prior written
-permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
-CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-
-
-
-
- US English Spellchecking Dictionary
-
- This license applies to certain files in the directory
- extensions/spellcheck/locales/en-US/hunspell/. (This
- code only ships in some localized versions of this product.)
-
-
-Different parts of the US English dictionary (SCOWL) are subject to the following licenses as
-shown below. For additional details, sources, credits, and public domain references, see
-README.txt.
-The collective work of the Spell Checking Oriented Word Lists (SCOWL) is under the
-following copyright:
-Copyright 2000-2007 by Kevin Atkinson
-Permission to use, copy, modify, distribute and sell these word lists, the associated scripts,
-the output created from the scripts, and its documentation for any purpose is hereby
-granted without fee, provided that the above copyright notice appears in all copies and that
-both that copyright notice and this permission notice appear in supporting documentation.
-Kevin Atkinson makes no representations about the suitability of this array for any
-purpose. It is provided "as is" without express or implied warranty.
-The WordNet database is under the following copyright:
-This software and database is being provided to you, the LICENSEE, by Princeton
-University under the following license. By obtaining, using and/or copying this software
-and database, you agree that you have read, understood, and will comply with these terms
-and conditions:
-Permission to use, copy, modify and distribute this software and database and its
-documentation for any purpose and without fee or royalty is hereby granted, provided that
-you agree to comply with the following copyright notice and statements, including the
-disclaimer, and that the same appear on ALL copies of the software, database and
-documentation, including modifications that you make for internal use or for distribution.
-WordNet 1.6 Copyright 1997 by Princeton University. All rights reserved.
-THIS SOFTWARE AND DATABASE IS PROVIDED "AS IS" AND PRINCETON UNIVERSITY
-MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
-EXAMPLE, BUT NOT LIMITATION, PRINCETON UNIVERSITY MAKES NO
-REPRESENTATIONS OR WARRANTIES OF MERCHANT- ABILITY OR FITNESS FOR ANY
-PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE, DATABASE OR
-DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS,
-TRADEMARKS OR OTHER RIGHTS.
-The name of Princeton University or Princeton may not be used in advertising or publicity
-pertaining to distribution of the software and/or database. Title to copyright in this
-software, database and any associated documentation shall at all times remain with
-Princeton University and LICENSEE agrees to preserve same.
-
-The "UK Advanced Cryptics Dictionary" is under the following copyright:
-Copyright (c) J Ross Beresford 1993-1999. All Rights Reserved.
-The following restriction is placed on the use of this publication: if The UK Advanced
-Cryptics Dictionary is used in a software package or redistributed in any form, the
-copyright notice must be prominently displayed and the text of this document must be
-included verbatim. There are no other restrictions: I would like to see the list distributed
-as widely as possible.
-
-Various parts are under the Ispell copyright:
-Copyright 1993, Geoff Kuenning, Granada Hills, CA
- All rights reserved. Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions are met:
- 1. Redistributions of source code must retain the above copyright notice, this list of
-conditions and the following disclaimer.
- 2. Redistributions in binary form must reproduce the above copyright notice, this list of
-conditions and the following disclaimer in the documentation and/or other materials
-provided with the distribution.
- 3. All modifications to the source code must be clearly marked as such. Binary
-redistributions based on modified source code must be clearly marked as modified
-versions in the documentation and/or other materials provided with the distribution.
- (clause 4 removed with permission from Geoff Kuenning)
- 5. The name of Geoff Kuenning may not be used to endorse or promote products derived
-from this software without specific prior written permission.
- THIS SOFTWARE IS PROVIDED BY GEOFF KUENNING AND CONTRIBUTORS ``AS IS'' AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL GEOFF KUENNING OR CONTRIBUTORS
-BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGE.
-
-Additional Contributors:
- Alan Beale <biljir@pobox.com>
- M Cooper <thegrendel@theriver.com>
-
-
-
-
-
-
- Expat License
-
- This license applies to certain files in the directory
- parser/expat/.
-
-
-Copyright (c) 1998, 1999, 2000 Thai Open Source Software Center Ltd
- and Clark Cooper
-Copyright (c) 2001, 2002, 2003 Expat maintainers.
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be included
-in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-
-
-
-
- Growl License
-
- This license applies to certain files in the directory
- toolkit/components/alerts/src/mac/growl/ and
- camino/src/extensions/. (This code only ships in
- the Mac OS X version of the product.)
-
-
-Copyright (c) The Growl Project, 2004-2007
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without modification,
-are permitted provided that the following conditions are met:
-
-
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-3. Neither the name of Growl nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-
-
-
- Japan Network Information Center License
-
- This license applies to certain files in the
- directory netwerk/dns/src/.
-
-
-Copyright (c) 2001,2002 Japan Network Information Center.
-All rights reserved.
-
-By using this file, you agree to the terms and conditions set forth below.
-
- LICENSE TERMS AND CONDITIONS
-
-The following License Terms and Conditions apply, unless a different
-license is obtained from Japan Network Information Center ("JPNIC"),
-a Japanese association, Kokusai-Kougyou-Kanda Bldg 6F, 2-3-4 Uchi-Kanda,
-Chiyoda-ku, Tokyo 101-0047, Japan.
-
-1. Use, Modification and Redistribution (including distribution of any
- modified or derived work) in source and/or binary forms is permitted
- under this License Terms and Conditions.
-
-2. Redistribution of source code must retain the copyright notices as they
- appear in each source code file, this License Terms and Conditions.
-
-3. Redistribution in binary form must reproduce the Copyright Notice,
- this License Terms and Conditions, in the documentation and/or other
- materials provided with the distribution. For the purposes of binary
- distribution the "Copyright Notice" refers to the following language:
- "Copyright (c) 2000-2002 Japan Network Information Center. All rights reserved."
-
-4. The name of JPNIC may not be used to endorse or promote products
- derived from this Software without specific prior written approval of
- JPNIC.
-
-5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC
- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
- PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE
- FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
- OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
- ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-
-
-
- Java Embedding Plugin License
-
- This license applies to certain files in the directory
- plugin/oji/JEP/. (This code only ships in the
- Mac OS X version of this product.)
-
-
-
-Copyright (c) 2004, Steven Michaud, All Rights Reserved
-
-Permission is hereby granted, free of charge, to any person obtaining
-a copy of this software and associated documentation files (the
-"Software"), to deal in the Software without restriction, including
-without limitation the rights to use, copy, modify, merge, publish,
-distribute, sublicense, and/or sell copies of the Software, and to
-permit persons to whom the Software is furnished to do so, subject to
-the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
-IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
-CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
-TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
-SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-
-
-
- jemalloc License
-
- This license applies to files in the directory
- memory/jemalloc/.
-
-
-
-Copyright (C) 2006-2008 Jason Evans <jasone@FreeBSD.org>.
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
- notice(s), this list of conditions and the following disclaimer as
- the first lines of this file unmodified other than the possible
- addition of one or more copyright notices.
-2. Redistributions in binary form must reproduce the above copyright
- notice(s), this list of conditions and the following disclaimer in
- the documentation and/or other materials provided with the
- distribution.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER(S) ``AS IS'' AND ANY
-EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
-PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) BE
-LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
-BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
-WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
-
-
-
-
- OpenVision License
-
- This license applies to the file
- extensions/auth/gssapi.h.
-
-
-Copyright 1993 by OpenVision Technologies, Inc.
-
-Permission to use, copy, modify, distribute, and sell this software
-and its documentation for any purpose is hereby granted without fee,
-provided that the above copyright notice appears in all copies and
-that both that copyright notice and this permission notice appear in
-supporting documentation, and that the name of OpenVision not be used
-in advertising or publicity pertaining to distribution of the software
-without specific, written prior permission. OpenVision makes no
-representations about the suitability of this software for any
-purpose. It is provided "as is" without express or implied warranty.
-
-OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
-INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
-EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
-CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
-USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
-OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
-PERFORMANCE OF THIS SOFTWARE.
-
-
-
-
-
- Sparkle License
-
- This license applies to certain files in the directory
- camino/sparkle/. (This code only ships in the
- in the Camino browser or products based on it.)
-
-
-Copyright (c) 2006 Andy Matuschak
-
-Permission is hereby granted, free of charge, to any person obtaining a copy of
-this software and associated documentation files (the "Software"), to deal in
-the Software without restriction, including without limitation the rights to
-use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
-the Software, and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
-FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
-COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
-IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
-
-
-
-
- University of California License
-
- This license applies to the following files or, in the case of
- directories, certain files in those directories:
-
-
- - dbm/
- - db/mork/src/morkQuickSort.cpp
- - xpcom/glue/nsQuickSort.cpp
-
-
-
-Copyright (c) 1990, 1993
- The Regents of the University of California. All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-[3 Deleted as of 22nd July 1999; see
- ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
- for details]
-4. Neither the name of the University nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGE.
-
-
-
-
-
- Lithuanian Spellchecking Dictionary
-
- This license applies to certain files in the directory
- l10n/lt/extensions/spellcheck/hunspell/. (This
- code only ships in some localized versions of this product.)
-
-
-The project has been sponsored by the Information Society Development
-Committee of the Government of Republic of Lithuania.
-
-
-Copyright (c) Albertas Agejevas <alga@uosis.mif.vu.lt>, 2000, 2001
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without
-modification, are permitted provided that the following conditions
-are met:
-1. Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
-2. Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
-3. Neither the name of the Albertas Agejevas nor the names of its contributors
- may be used to endorse or promote products derived from this software
- without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY ALBERTAS AGEJEVAS AND CONTRIBUTORS ``AS IS'' AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-ARE DISCLAIMED. IN NO EVENT SHALL ALBERTAS AGEJEVAS OR CONTRIBUTORS BE LIABLE
-FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
-OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
-HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
-LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
-OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
-SUCH DAMAGE.
-
-
-
-
- Red Hat xdg_user_dir_lookup License
-
- This license applies to the
- xdg_user_dir_lookup function in
- xpcom/io/SpecialSystemDirectory.cpp:
-
-
-Copyright (c) 2007 Red Hat, Inc.
-
-Permission is hereby granted, free of charge, to any person
-obtaining a copy of this software and associated documentation files
-(the "Software"), to deal in the Software without restriction,
-including without limitation the rights to use, copy, modify, merge,
-publish, distribute, sublicense, and/or sell copies of the Software,
-and to permit persons to whom the Software is furnished to do so,
-subject to the following conditions:
-
-The above copyright notice and this permission notice shall be
-included in all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
-BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
-ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
-CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-
-
-
-
- Other Required Notices
-
-
- - This software is based in part on the work of the Independent
- JPEG Group.
- - Portions of the OS/2 version of this software are copyright
- ©1996-2002 The FreeType Project.
- All rights reserved.
-
-
-
-
-
- Optional Notices
-
- Some permissive software licenses
- request but do not require an
- acknowledgement of the use of their software. We are very grateful
- to the following people and projects for their contributions to
- this product:
-
-
- - The zlib compression library
- (Jean-loup Gailly, Mark Adler and team)
- - The bzip2 compression library
- (Julian Seward)
- - The libpng graphics library
- (Glenn Randers-Pehrson and team)
- - The sqlite database engine
- (D. Richard Hipp and team)
-
-
-
-
-
- * Exceptions
-
-
- Depending on how it was compiled, your product distribution and version
- may include the following portions which are not available under the
- above terms:
-
-
-
- - The Talkback crash-reporting module (Copyright ©1998-2005
- SupportSoft, Inc. All Rights Reserved.)
-
- Image files containing the trademarks and logos of the Mozilla
- Foundation, which may not be reproduced without permission.
- (Copyright ©2004-2008 The Mozilla Foundation.
- All Rights Reserved.)
-
-
- Return to top.
-
-
-
-
diff --git a/xpfe/global/resources/content/logo.gif b/xpfe/global/resources/content/logo.gif
deleted file mode 100644
index d8dae5fef05a..000000000000
Binary files a/xpfe/global/resources/content/logo.gif and /dev/null differ
diff --git a/xpfe/global/resources/content/mac/Makefile.in b/xpfe/global/resources/content/mac/Makefile.in
deleted file mode 100644
index 81fb0e454ca0..000000000000
--- a/xpfe/global/resources/content/mac/Makefile.in
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/content/mac/jar.mn b/xpfe/global/resources/content/mac/jar.mn
deleted file mode 100644
index 57d9a35441e9..000000000000
--- a/xpfe/global/resources/content/mac/jar.mn
+++ /dev/null
@@ -1,5 +0,0 @@
-toolkit.jar:
- content/global/platformDialogOverlay.xul
- content/global/platformXUL.css
- content/global/platformDialog.xml
-
diff --git a/xpfe/global/resources/content/mac/platformDialog.xml b/xpfe/global/resources/content/mac/platformDialog.xml
deleted file mode 100644
index adc6851285c5..000000000000
--- a/xpfe/global/resources/content/mac/platformDialog.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/mac/platformDialogOverlay.xul b/xpfe/global/resources/content/mac/platformDialogOverlay.xul
deleted file mode 100644
index 6889eb4ea69e..000000000000
--- a/xpfe/global/resources/content/mac/platformDialogOverlay.xul
+++ /dev/null
@@ -1,86 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/mac/platformXUL.css b/xpfe/global/resources/content/mac/platformXUL.css
deleted file mode 100644
index 41c302eff2fa..000000000000
--- a/xpfe/global/resources/content/mac/platformXUL.css
+++ /dev/null
@@ -1,22 +0,0 @@
-
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
-
-dialog {
- -moz-binding: url("chrome://global/content/platformDialog.xml#dialog") !important;
-}
-
-.wizard-header {
- -moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard-header-mac");
-}
-
-.wizard-buttons {
- -moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard-buttons-mac");
-}
-
-statusbar {
- padding-right: 14px;
-}
-
-.statusbar-resizerpanel {
- display: none;
-}
diff --git a/xpfe/global/resources/content/manifest.rdf b/xpfe/global/resources/content/manifest.rdf
deleted file mode 100644
index d24f6d00c2d3..000000000000
--- a/xpfe/global/resources/content/manifest.rdf
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/mozilla.xhtml b/xpfe/global/resources/content/mozilla.xhtml
deleted file mode 100644
index d695c2900edf..000000000000
--- a/xpfe/global/resources/content/mozilla.xhtml
+++ /dev/null
@@ -1,95 +0,0 @@
-
-
-
-
-
-
-
-
-The Book of Mozilla, 7:15
-
-
-
-
-
-And so at last the beast fell and the unbelievers rejoiced.
-But all was not lost, for from the ash rose a great bird.
-The bird gazed down upon the unbelievers and cast fire
-and thunder upon them. For the beast had been
-reborn with its strength renewed, and the
-followers of Mammon cowered in horror.
-
-
-
-from The Book of Mozilla, 7:15
-
-
-
-
diff --git a/xpfe/global/resources/content/nsClipboard.js b/xpfe/global/resources/content/nsClipboard.js
deleted file mode 100644
index a86a2672fbe5..000000000000
--- a/xpfe/global/resources/content/nsClipboard.js
+++ /dev/null
@@ -1,97 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is mozilla.org code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Ben Matthew Goodger
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-/**
- * nsClipboard - wrapper around nsIClipboard and nsITransferable
- * that simplifies access to the clipboard.
- **/
-var nsClipboard = {
- _CB: null,
- get mClipboard()
- {
- if (!this._CB)
- {
- const kCBContractID = "@mozilla.org/widget/clipboard;1";
- const kCBIID = Components.interfaces.nsIClipboard;
- this._CB = Components.classes[kCBContractID].getService(kCBIID);
- }
- return this._CB;
- },
-
- currentClipboard: null,
- /**
- * Array/Object read (Object aFlavourList, long aClipboard, Bool aAnyFlag) ;
- *
- * returns the data in the clipboard
- *
- * @param FlavourSet aFlavourSet
- * formatted list of desired flavours
- * @param long aClipboard
- * the clipboard to read data from (kSelectionClipboard/kGlobalClipboard)
- * @param Bool aAnyFlag
- * should be false.
- **/
- read: function (aFlavourList, aClipboard, aAnyFlag)
- {
- this.currentClipboard = aClipboard;
- var data = nsTransferable.get(aFlavourList, this.getClipboardTransferable, aAnyFlag);
- return data.first.first; // only support one item
- },
-
- /**
- * nsISupportsArray getClipboardTransferable (Object aFlavourList) ;
- *
- * returns a nsISupportsArray of the item on the clipboard
- *
- * @param Object aFlavourList
- * formatted list of desired flavours.
- **/
- getClipboardTransferable: function (aFlavourList)
- {
- const supportsContractID = "@mozilla.org/supports-array;1";
- const supportsIID = Components.interfaces.nsISupportsArray;
- var supportsArray = Components.classes[supportsContractID].createInstance(supportsIID);
- var trans = nsTransferable.createTransferable();
- for (var flavour in aFlavourList)
- trans.addDataFlavor(flavour);
- nsClipboard.mClipboard.getData(trans, nsClipboard.currentClipboard)
- supportsArray.AppendElement(trans);
- return supportsArray;
- }
-};
-
diff --git a/xpfe/global/resources/content/nsDragAndDrop.js b/xpfe/global/resources/content/nsDragAndDrop.js
deleted file mode 100644
index d57789484471..000000000000
--- a/xpfe/global/resources/content/nsDragAndDrop.js
+++ /dev/null
@@ -1,649 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is mozilla.org code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Ben Goodger (Original Author)
- * Pierre Chanial
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-/**
- * nsTransferable - a wrapper for nsITransferable that simplifies
- * javascript clipboard and drag&drop. for use in
- * these situations you should use the nsClipboard
- * and nsDragAndDrop wrappers for more convenience
- **/
-
-var nsTransferable = {
- /**
- * nsITransferable set (TransferData aTransferData) ;
- *
- * Creates a transferable with data for a list of supported types ("flavours")
- *
- * @param TransferData aTransferData
- * a javascript object in the format described above
- **/
- set: function (aTransferDataSet)
- {
- var trans = this.createTransferable();
- for (var i = 0; i < aTransferDataSet.dataList.length; ++i)
- {
- var currData = aTransferDataSet.dataList[i];
- var currFlavour = currData.flavour.contentType;
- trans.addDataFlavor(currFlavour);
- var supports = null; // nsISupports data
- var length = 0;
- if (currData.flavour.dataIIDKey == "nsISupportsString")
- {
- supports = Components.classes["@mozilla.org/supports-string;1"]
- .createInstance(Components.interfaces.nsISupportsString);
-
- supports.data = currData.supports;
- length = supports.data.length;
- }
- else
- {
- // non-string data.
- supports = currData.supports;
- length = 0; // kFlavorHasDataProvider
- }
- trans.setTransferData(currFlavour, supports, length * 2);
- }
- return trans;
- },
-
- /**
- * TransferData/TransferDataSet get (FlavourSet aFlavourSet,
- * Function aRetrievalFunc, Boolean aAnyFlag) ;
- *
- * Retrieves data from the transferable provided in aRetrievalFunc, formatted
- * for more convenient access.
- *
- * @param FlavourSet aFlavourSet
- * a FlavourSet object that contains a list of supported flavours.
- * @param Function aRetrievalFunc
- * a reference to a function that returns a nsISupportsArray of nsITransferables
- * for each item from the specified source (clipboard/drag&drop etc)
- * @param Boolean aAnyFlag
- * a flag specifying whether or not a specific flavour is requested. If false,
- * data of the type of the first flavour in the flavourlist parameter is returned,
- * otherwise the best flavour supported will be returned.
- **/
- get: function (aFlavourSet, aRetrievalFunc, aAnyFlag)
- {
- if (!aRetrievalFunc)
- throw "No data retrieval handler provided!";
-
- var supportsArray = aRetrievalFunc(aFlavourSet);
- var dataArray = [];
- var count = supportsArray.Count();
-
- // Iterate over the number of items returned from aRetrievalFunc. For
- // clipboard operations, this is 1, for drag and drop (where multiple
- // items may have been dragged) this could be >1.
- for (var i = 0; i < count; i++)
- {
- var trans = supportsArray.GetElementAt(i);
- if (!trans) continue;
- trans = trans.QueryInterface(Components.interfaces.nsITransferable);
-
- var data = { };
- var length = { };
-
- var currData = null;
- if (aAnyFlag)
- {
- var flavour = { };
- trans.getAnyTransferData(flavour, data, length);
- if (data && flavour)
- {
- var selectedFlavour = aFlavourSet.flavourTable[flavour.value];
- if (selectedFlavour)
- dataArray[i] = FlavourToXfer(data.value, length.value, selectedFlavour);
- }
- }
- else
- {
- var firstFlavour = aFlavourSet.flavours[0];
- trans.getTransferData(firstFlavour, data, length);
- if (data && firstFlavour)
- dataArray[i] = FlavourToXfer(data.value, length.value, firstFlavour);
- }
- }
- return new TransferDataSet(dataArray);
- },
-
- /**
- * nsITransferable createTransferable (void) ;
- *
- * Creates and returns a transferable object.
- **/
- createTransferable: function ()
- {
- const kXferableContractID = "@mozilla.org/widget/transferable;1";
- const kXferableIID = Components.interfaces.nsITransferable;
- return Components.classes[kXferableContractID].createInstance(kXferableIID);
- }
-};
-
-/**
- * A FlavourSet is a simple type that represents a collection of Flavour objects.
- * FlavourSet is constructed from an array of Flavours, and stores this list as
- * an array and a hashtable. The rationale for the dual storage is as follows:
- *
- * Array: Ordering is important when adding data flavours to a transferable.
- * Flavours added first are deemed to be 'preferred' by the client.
- * Hash: Convenient lookup of flavour data using the content type (MIME type)
- * of data as a key.
- */
-function FlavourSet(aFlavourList)
-{
- this.flavours = aFlavourList || [];
- this.flavourTable = { };
-
- this._XferID = "FlavourSet";
-
- for (var i = 0; i < this.flavours.length; ++i)
- this.flavourTable[this.flavours[i].contentType] = this.flavours[i];
-}
-
-FlavourSet.prototype = {
- appendFlavour: function (aFlavour, aFlavourIIDKey)
- {
- var flavour = new Flavour (aFlavour, aFlavourIIDKey);
- this.flavours.push(flavour);
- this.flavourTable[flavour.contentType] = flavour;
- }
-};
-
-/**
- * A Flavour is a simple type that represents a data type that can be handled.
- * It takes a content type (MIME type) which is used when storing data on the
- * system clipboard/drag and drop, and an IIDKey (string interface name
- * which is used to QI data to an appropriate form. The default interface is
- * assumed to be wide-string.
- */
-function Flavour(aContentType, aDataIIDKey)
-{
- this.contentType = aContentType;
- this.dataIIDKey = aDataIIDKey || "nsISupportsString";
-
- this._XferID = "Flavour";
-}
-
-function TransferDataBase() {}
-TransferDataBase.prototype = {
- push: function (aItems)
- {
- this.dataList.push(aItems);
- },
-
- get first ()
- {
- return "dataList" in this && this.dataList.length ? this.dataList[0] : null;
- }
-};
-
-/**
- * TransferDataSet is a list (array) of TransferData objects, which represents
- * data dragged from one or more elements.
- */
-function TransferDataSet(aTransferDataList)
-{
- this.dataList = aTransferDataList || [];
-
- this._XferID = "TransferDataSet";
-}
-TransferDataSet.prototype = TransferDataBase.prototype;
-
-/**
- * TransferData is a list (array) of FlavourData for all the applicable content
- * types associated with a drag from a single item.
- */
-function TransferData(aFlavourDataList)
-{
- this.dataList = aFlavourDataList || [];
-
- this._XferID = "TransferData";
-}
-TransferData.prototype = {
- __proto__: TransferDataBase.prototype,
-
- addDataForFlavour: function (aFlavourString, aData, aLength, aDataIIDKey)
- {
- this.dataList.push(new FlavourData(aData, aLength,
- new Flavour(aFlavourString, aDataIIDKey)));
- }
-};
-
-/**
- * FlavourData is a type that represents data retrieved from the system
- * clipboard or drag and drop. It is constructed internally by the Transferable
- * using the raw (nsISupports) data from the clipboard, the length of the data,
- * and an object of type Flavour representing the type. Clients implementing
- * IDragDropObserver receive an object of this type in their implementation of
- * onDrop. They access the 'data' property to retrieve data, which is either data
- * QI'ed to a usable form, or unicode string.
- */
-function FlavourData(aData, aLength, aFlavour)
-{
- this.supports = aData;
- this.contentLength = aLength;
- this.flavour = aFlavour || null;
-
- this._XferID = "FlavourData";
-}
-
-FlavourData.prototype = {
- get data ()
- {
- if (this.flavour &&
- this.flavour.dataIIDKey != "nsISupportsString" )
- return this.supports.QueryInterface(Components.interfaces[this.flavour.dataIIDKey]);
- else {
- var unicode = this.supports.QueryInterface(Components.interfaces.nsISupportsString);
- if (unicode)
- return unicode.data.substring(0, this.contentLength/2);
-
- return this.supports;
- }
- return "";
- }
-}
-
-/**
- * Create a TransferData object with a single FlavourData entry. Used when
- * unwrapping data of a specific flavour from the drag service.
- */
-function FlavourToXfer(aData, aLength, aFlavour)
-{
- return new TransferData([new FlavourData(aData, aLength, aFlavour)]);
-}
-
-var transferUtils = {
-
- retrieveURLFromData: function (aData, flavour)
- {
- switch (flavour) {
- case "text/unicode":
- return aData;
- case "text/x-moz-url":
- return aData.toString().split("\n")[0];
- case "application/x-moz-file":
- var ioService = Components.classes["@mozilla.org/network/io-service;1"]
- .getService(Components.interfaces.nsIIOService);
- var fileHandler = ioService.getProtocolHandler("file")
- .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
- return fileHandler.getURLSpecFromFile(aData);
- }
- return null;
- }
-
-}
-
-/**
- * nsDragAndDrop - a convenience wrapper for nsTransferable, nsITransferable
- * and nsIDragService/nsIDragSession.
- *
- * Use: map the handler functions to the 'ondraggesture', 'ondragover' and
- * 'ondragdrop' event handlers on your XML element, e.g.
- *
- *
- * You need to create an observer js object with the following member
- * functions:
- * Object onDragStart (event) // called when drag initiated,
- * // returns flavour list with data
- * // to stuff into transferable
- * void onDragOver (Object flavour) // called when element is dragged
- * // over, so that it can perform
- * // any drag-over feedback for provided
- * // flavour
- * void onDrop (Object data) // formatted data object dropped.
- * Object getSupportedFlavours () // returns a flavour list so that
- * // nsTransferable can determine
- * // whether or not to accept drop.
- **/
-
-var nsDragAndDrop = {
-
- _mDS: null,
- get mDragService()
- {
- if (!this._mDS)
- {
- const kDSContractID = "@mozilla.org/widget/dragservice;1";
- const kDSIID = Components.interfaces.nsIDragService;
- this._mDS = Components.classes[kDSContractID].getService(kDSIID);
- }
- return this._mDS;
- },
-
- /**
- * void startDrag (DOMEvent aEvent, Object aDragDropObserver) ;
- *
- * called when a drag on an element is started.
- *
- * @param DOMEvent aEvent
- * the DOM event fired by the drag init
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- **/
- startDrag: function (aEvent, aDragDropObserver)
- {
- if (!("onDragStart" in aDragDropObserver))
- return;
-
- const kDSIID = Components.interfaces.nsIDragService;
- var dragAction = { action: kDSIID.DRAGDROP_ACTION_COPY + kDSIID.DRAGDROP_ACTION_MOVE + kDSIID.DRAGDROP_ACTION_LINK };
-
- var transferData = { data: null };
- try
- {
- aDragDropObserver.onDragStart(aEvent, transferData, dragAction);
- }
- catch (e)
- {
- return; // not a draggable item, bail!
- }
-
- if (!transferData.data) return;
- transferData = transferData.data;
-
- var transArray = Components.classes["@mozilla.org/supports-array;1"]
- .createInstance(Components.interfaces.nsISupportsArray);
-
- var region = null;
- if (aEvent.originalTarget.localName == "treechildren") {
- // let's build the drag region
- var tree = aEvent.originalTarget.parentNode;
- try {
- region = Components.classes["@mozilla.org/gfx/region;1"].createInstance(Components.interfaces.nsIScriptableRegion);
- region.init();
- var obo = tree.treeBoxObject;
- var bo = obo.treeBody.boxObject;
- var sel= tree.view.selection;
-
- var rowX = bo.x;
- var rowY = bo.y;
- var rowHeight = obo.rowHeight;
- var rowWidth = bo.width;
-
- //add a rectangle for each visible selected row
- for (var i = obo.getFirstVisibleRow(); i <= obo.getLastVisibleRow(); i ++)
- {
- if (sel.isSelected(i))
- region.unionRect(rowX, rowY, rowWidth, rowHeight);
- rowY = rowY + rowHeight;
- }
-
- //and finally, clip the result to be sure we don't spill over...
- region.intersectRect(bo.x, bo.y, bo.width, bo.height);
- } catch(ex) {
- dump("Error while building selection region: " + ex + "\n");
- region = null;
- }
- }
-
- var count = 0;
- do
- {
- var trans = nsTransferable.set(transferData._XferID == "TransferData"
- ? transferData
- : transferData.dataList[count++]);
- transArray.AppendElement(trans.QueryInterface(Components.interfaces.nsISupports));
- }
- while (transferData._XferID == "TransferDataSet" &&
- count < transferData.dataList.length);
-
- try {
- this.mDragService.invokeDragSessionWithImage(aEvent.target, transArray,
- region, dragAction.action,
- null, 0, 0, aEvent);
- }
- catch(ex) {
- // this could be because the user pressed escape to
- // cancel the drag. even if it's not, there's not much
- // we can do, so be silent.
- }
- aEvent.stopPropagation();
- },
-
- /**
- * void dragOver (DOMEvent aEvent, Object aDragDropObserver) ;
- *
- * called when a drag passes over this element
- *
- * @param DOMEvent aEvent
- * the DOM event fired by passing over the element
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- **/
- dragOver: function (aEvent, aDragDropObserver)
- {
- if (!("onDragOver" in aDragDropObserver))
- return;
- if (!this.checkCanDrop(aEvent, aDragDropObserver))
- return;
- var flavourSet = aDragDropObserver.getSupportedFlavours();
- for (var flavour in flavourSet.flavourTable)
- {
- if (this.mDragSession.isDataFlavorSupported(flavour))
- {
- aDragDropObserver.onDragOver(aEvent,
- flavourSet.flavourTable[flavour],
- this.mDragSession);
- aEvent.stopPropagation();
- break;
- }
- }
- },
-
- mDragSession: null,
-
- /**
- * void drop (DOMEvent aEvent, Object aDragDropObserver) ;
- *
- * called when the user drops on the element
- *
- * @param DOMEvent aEvent
- * the DOM event fired by the drop
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- **/
- drop: function (aEvent, aDragDropObserver)
- {
- if (!("onDrop" in aDragDropObserver))
- return;
- if (!this.checkCanDrop(aEvent, aDragDropObserver))
- return;
- if (this.mDragSession.canDrop) {
- var flavourSet = aDragDropObserver.getSupportedFlavours();
- var transferData = nsTransferable.get(flavourSet, this.getDragData, true);
- // hand over to the client to respond to dropped data
- var multiple = "canHandleMultipleItems" in aDragDropObserver && aDragDropObserver.canHandleMultipleItems;
- var dropData = multiple ? transferData : transferData.first.first;
- aDragDropObserver.onDrop(aEvent, dropData, this.mDragSession);
- }
- aEvent.stopPropagation();
- },
-
- /**
- * void dragExit (DOMEvent aEvent, Object aDragDropObserver) ;
- *
- * called when a drag leaves this element
- *
- * @param DOMEvent aEvent
- * the DOM event fired by leaving the element
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- **/
- dragExit: function (aEvent, aDragDropObserver)
- {
- if (!this.checkCanDrop(aEvent, aDragDropObserver))
- return;
- if ("onDragExit" in aDragDropObserver)
- aDragDropObserver.onDragExit(aEvent, this.mDragSession);
- },
-
- /**
- * void dragEnter (DOMEvent aEvent, Object aDragDropObserver) ;
- *
- * called when a drag enters in this element
- *
- * @param DOMEvent aEvent
- * the DOM event fired by entering in the element
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- **/
- dragEnter: function (aEvent, aDragDropObserver)
- {
- if (!this.checkCanDrop(aEvent, aDragDropObserver))
- return;
- if ("onDragEnter" in aDragDropObserver)
- aDragDropObserver.onDragEnter(aEvent, this.mDragSession);
- },
-
- /**
- * nsISupportsArray getDragData (Object aFlavourList)
- *
- * Creates a nsISupportsArray of all droppable items for the given
- * set of supported flavours.
- *
- * @param FlavourSet aFlavourSet
- * formatted flavour list.
- **/
- getDragData: function (aFlavourSet)
- {
- var supportsArray = Components.classes["@mozilla.org/supports-array;1"]
- .createInstance(Components.interfaces.nsISupportsArray);
-
- for (var i = 0; i < nsDragAndDrop.mDragSession.numDropItems; ++i)
- {
- var trans = nsTransferable.createTransferable();
- for (var j = 0; j < aFlavourSet.flavours.length; ++j)
- trans.addDataFlavor(aFlavourSet.flavours[j].contentType);
- nsDragAndDrop.mDragSession.getData(trans, i);
- supportsArray.AppendElement(trans);
- }
- return supportsArray;
- },
-
- /**
- * Boolean checkCanDrop (DOMEvent aEvent, Object aDragDropObserver) ;
- *
- * Sets the canDrop attribute for the drag session.
- * returns false if there is no current drag session.
- *
- * @param DOMEvent aEvent
- * the DOM event fired by the drop
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- **/
- checkCanDrop: function (aEvent, aDragDropObserver)
- {
- if (!this.mDragSession)
- this.mDragSession = this.mDragService.getCurrentSession();
- if (!this.mDragSession)
- return false;
- this.mDragSession.canDrop = this.mDragSession.sourceNode != aEvent.target;
- if ("canDrop" in aDragDropObserver)
- this.mDragSession.canDrop &= aDragDropObserver.canDrop(aEvent, this.mDragSession);
- return true;
- },
-
- /**
- * Do a security check for drag n' drop. Make sure the source document
- * can load the dragged link.
- *
- * @param DOMEvent aEvent
- * the DOM event fired by leaving the element
- * @param Object aDragDropObserver
- * javascript object of format described above that specifies
- * the way in which the element responds to drag events.
- * @param String aUri
- * the uri being dragged
- **/
- dragDropSecurityCheck: function (aEvent, aDragSession, aUri)
- {
- var sourceDoc = aDragSession.sourceDocument;
-
- if (sourceDoc) {
- // Strip leading and trailing whitespace, then try to create a
- // URI from the dropped string. If that succeeds, we're
- // dropping a URI and we need to do a security check to make
- // sure the source document can load the dropped URI. We don't
- // so much care about creating the real URI here
- // (i.e. encoding differences etc don't matter), we just want
- // to know if aUri really is a URI.
-
- var uriStr = aUri.replace(/^\s*|\s*$/g, '');
- var uri = null;
-
- try {
- uri = Components.classes["@mozilla.org/network/io-service;1"]
- .getService(Components.interfaces.nsIIOService)
- .newURI(uriStr, null, null);
- } catch (e) {
- }
-
- if (uri) {
- // aUri is a URI, do the security check.
- var sourceURI = sourceDoc.documentURI;
-
- const nsIScriptSecurityManager =
- Components.interfaces.nsIScriptSecurityManager;
- var secMan =
- Components.classes["@mozilla.org/scriptsecuritymanager;1"]
- .getService(nsIScriptSecurityManager);
-
- try {
- secMan.checkLoadURIStr(sourceURI, uriStr,
- nsIScriptSecurityManager.STANDARD);
- } catch (e) {
- // Stop event propagation right here.
- aEvent.stopPropagation();
-
- throw "Drop of " + aUri + " denied.";
- }
- }
- }
- }
-};
diff --git a/xpfe/global/resources/content/nsTreeController.js b/xpfe/global/resources/content/nsTreeController.js
deleted file mode 100644
index f7cc22c3c8bd..000000000000
--- a/xpfe/global/resources/content/nsTreeController.js
+++ /dev/null
@@ -1,323 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is mozilla.org code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Blake Ross (Original Author)
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-// helper routines, for doing rdf-based cut/copy/paste/etc
-// this needs to be more generic!
-
-const nsTransferable_contractid = "@mozilla.org/widget/transferable;1";
-const clipboard_contractid = "@mozilla.org/widget/clipboard;1";
-const rdf_contractid = "@mozilla.org/rdf/rdf-service;1";
-const supportswstring_contractid = "@mozilla.org/supports-string;1";
-const rdfc_contractid = "@mozilla.org/rdf/container;1";
-
-const nsISupportsString = Components.interfaces.nsISupportsString;
-const nsIClipboard = Components.interfaces.nsIClipboard;
-const nsITransferable = Components.interfaces.nsITransferable;
-const nsIRDFLiteral = Components.interfaces.nsIRDFLiteral;
-const nsIRDFContainer = Components.interfaces.nsIRDFContainer;
-
-var gRDF;
-var gClipboard;
-
-function isContainer(tree, index)
-{
- return tree.treeBoxObject.view.isContainer(index);
-}
-
-function isContainerOpen(tree, index)
-{
- return tree.treeBoxObject.view.isContainerOpen(index);
-}
-
-function nsTreeController_SetTransferData(transferable, flavor, text)
-{
- if (!text)
- return;
- var textData = Components.classes[supportswstring_contractid].createInstance(nsISupportsString);
- textData.data = text;
-
- transferable.addDataFlavor(flavor);
- transferable.setTransferData(flavor, textData, text.length*2);
-}
-
-function nsTreeController_copy()
-{
- var rangeCount = this.treeSelection.getRangeCount();
- if (rangeCount < 1)
- return false;
-
- // Build a url that encodes all the select nodes
- // as well as their parent nodes
- var url = "";
- var text = "";
- var html = "";
- var min = new Object();
- var max = new Object();
-
- for (var i = rangeCount - 1; i >= 0; --i) {
- this.treeSelection.getRangeAt(i, min, max);
- for (var k = max.value; k >= min.value; --k) {
- // If one of the selected items is
- // a container, ignore it.
- if (isContainer(this.tree, k))
- continue;
- var col = this.tree.columns["URL"];
- var pageUrl = this.treeView.getCellText(k, col);
- col = this.tree.columns["Name"];
- var pageName = this.treeView.getCellText(k, col);
-
- url += "ID:{" + pageUrl + "};";
- url += "NAME:{" + pageName + "};";
-
- text += pageUrl + "\r";
- html += "";
- if (pageName) html += pageName;
- html += "";
- }
- }
-
- if (!url)
- return false;
-
- // get some useful components
- var trans = Components.classes[nsTransferable_contractid].createInstance(nsITransferable);
-
- if (!gClipboard)
- gClipboard = Components.classes[clipboard_contractid].getService(Components.interfaces.nsIClipboard);
-
- gClipboard.emptyClipboard(nsIClipboard.kGlobalClipboard);
-
- this.SetTransferData(trans, "text/unicode", text);
- this.SetTransferData(trans, "moz/bookmarkclipboarditem", url);
- this.SetTransferData(trans, "text/html", html);
-
- gClipboard.setData(trans, null, nsIClipboard.kGlobalClipboard);
- return true;
-}
-
-function nsTreeController_cut()
-{
- if (this.copy()) {
- this.doDelete();
- return true; // copy succeeded, don't care if delete failed
- }
- return false; // copy failed, so did cut
-}
-
-function nsTreeController_selectAll()
-{
- this.treeSelection.selectAll();
-}
-
-function nsTreeController_delete()
-{
- var rangeCount = this.treeSelection.getRangeCount();
- if (rangeCount < 1)
- return false;
-
- var datasource = this.tree.database;
- var dsEnum = datasource.GetDataSources();
- dsEnum.getNext();
- var ds = dsEnum.getNext()
- .QueryInterface(Components.interfaces.nsIRDFDataSource);
-
- var count = this.treeSelection.count;
-
- // XXX 9 is a random number, just looking for a sweetspot
- // don't want to rebuild tree content for just a few items
- if (count > 9) {
- ds.beginUpdateBatch();
- }
-
- var min = new Object();
- var max = new Object();
- var dirty = false;
- for (var i = rangeCount - 1; i >= 0; --i) {
- this.treeSelection.getRangeAt(i, min, max);
- for (var k = max.value; k >= min.value; --k) {
- if (!gRDF)
- gRDF = Components.classes[rdf_contractid].getService(Components.interfaces.nsIRDFService);
-
- var IDRes = this.treeBuilder.getResourceAtIndex(k);
- if (!IDRes)
- continue;
-
- var root = this.tree.getAttribute('ref');
- var parentIDRes;
- try {
- parentIDRes = this.treeBuilder.getResourceAtIndex(this.treeView.getParentIndex(k));
- }
- catch(ex) {
- parentIDRes = gRDF.GetResource(root);
- }
- if (!parentIDRes)
- continue;
-
- // otherwise remove the parent/child assertion then
- var containment = gRDF.GetResource("http://home.netscape.com/NC-rdf#child");
- ds.Unassert(parentIDRes, containment, IDRes);
- dirty = true;
- }
- }
-
- if (count > 9) {
- ds.endUpdateBatch();
- }
-
- if (dirty) {
- try {
- var remote = datasource.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
- remote.Flush();
- } catch (ex) {
- }
- }
- if (max.value) {
- var newIndex = max.value - (max.value - min.value);
- if (newIndex >= this.treeView.rowCount)
- --newIndex;
- this.treeSelection.select(newIndex);
- }
- return true;
-}
-
-function nsTreeController(tree)
-{
- this._tree = tree;
- tree.controllers.appendController(this);
-}
-
-nsTreeController.prototype =
-{
- _treeSelection: null,
- _treeView: null,
- _treeBuilder: null,
- _treeBoxObject: null,
- _tree: null,
- get tree()
- {
- return this._tree;
- },
- get treeBoxObject()
- {
- if (this._treeBoxObject)
- return this._treeBoxObject;
- return this._treeBoxObject = this.tree.treeBoxObject;
- },
- get treeView()
- {
- if (this._treeView)
- return this._treeView;
- return this._treeView = this.tree.treeBoxObject.view;
- },
- get treeSelection()
- {
- if (this._treeSelection)
- return this._treeSelection;
- return this._treeSelection = this.tree.view.selection;
- },
- get treeBuilder()
- {
- if (this._treeBuilder)
- return this._treeBuilder;
- return this._treeBuilder = this.tree.builder.
- QueryInterface(Components.interfaces.nsIXULTreeBuilder);
- },
- SetTransferData : nsTreeController_SetTransferData,
-
- supportsCommand: function(command)
- {
- switch(command)
- {
- case "cmd_cut":
- case "cmd_copy":
- case "cmd_delete":
- case "cmd_selectAll":
- return true;
- default:
- return false;
- }
- },
-
- isCommandEnabled: function(command)
- {
- var haveCommand;
- switch (command)
- {
- // commands which do not require selection
- case "cmd_selectAll":
- var treeView = this.treeView;
- return (treeView.rowCount != treeView.selection.count);
-
- // these commands require selection
- case "cmd_cut":
- haveCommand = (this.cut != undefined);
- break;
- case "cmd_copy":
- haveCommand = (this.copy != undefined);
- break;
- case "cmd_delete":
- haveCommand = (this.doDelete != undefined);
- break;
- }
-
- // if we get here, then we have a command that requires selection
- var haveSelection = (this.treeSelection.count);
- return (haveCommand && haveSelection);
- },
-
- doCommand: function(command)
- {
- switch(command)
- {
- case "cmd_cut":
- return this.cut();
- case "cmd_copy":
- return this.copy();
- case "cmd_delete":
- return this.doDelete();
- case "cmd_selectAll":
- return this.selectAll();
- }
- return false;
- },
- copy: nsTreeController_copy,
- cut: nsTreeController_cut,
- doDelete: nsTreeController_delete,
- selectAll: nsTreeController_selectAll
-}
-
diff --git a/xpfe/global/resources/content/nsTreeSorting.js b/xpfe/global/resources/content/nsTreeSorting.js
deleted file mode 100644
index 119fe9c0537a..000000000000
--- a/xpfe/global/resources/content/nsTreeSorting.js
+++ /dev/null
@@ -1,204 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is mozilla.org code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Peter Annema
- * Blake Ross
- * Alec Flett
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-
-// utility routines for sorting
-
-// re-does a sort based on the current state
-function RefreshSort()
-{
- var current_column = find_sort_column();
- SortColumnElement(current_column);
-}
-
-// set the sort direction on the currently sorted column
-function SortInNewDirection(direction)
-{
- var current_column = find_sort_column();
- if (direction == "ascending")
- direction = "natural";
- else if (direction == "descending")
- direction = "ascending";
- else if (direction == "natural")
- direction = "descending";
- current_column.setAttribute("sortDirection", direction);
- SortColumnElement(current_column);
-}
-
-function SortColumn(columnId)
-{
- var column = document.getElementById(columnId);
- SortColumnElement(column);
-}
-
-function SortColumnElement(column)
-{
- var tree = column.parentNode.parentNode;
- var col = tree.columns.getColumnFor(column);
- tree.view.cycleHeader(col);
-}
-
-// search over the columns to find the first one with an active sort
-function find_sort_column()
-{
- var columns = document.getElementsByTagName('treecol');
- var i = 0;
- var column;
- while ((column = columns.item(i++)) != null) {
- if (column.getAttribute('sortDirection'))
- return column;
- }
- return columns.item(0);
-}
-
-// get the sort direction for the given column
-function find_sort_direction(column)
-{
- var sortDirection = column.getAttribute('sortDirection');
- return (sortDirection ? sortDirection : "natural");
-}
-
-// set up the menu items to reflect the specified sort column
-// and direction - put check marks next to the active ones, and clear
-// out the old ones
-// - disable ascending/descending direction if the tree isn't sorted
-// - disable columns that are not visible
-function update_sort_menuitems(column, direction)
-{
- var unsorted_menuitem = document.getElementById("unsorted_menuitem");
- var sort_ascending = document.getElementById('sort_ascending');
- var sort_descending = document.getElementById('sort_descending');
-
- // as this function may be called from various places, including the
- // bookmarks sidebar panel (which doesn't have any menu items)
- // ensure that the document contains the elements
- if ((!unsorted_menuitem) || (!sort_ascending) || (!sort_descending))
- return;
-
- if (direction == "natural") {
- unsorted_menuitem.setAttribute('checked','true');
- sort_ascending.setAttribute('disabled','true');
- sort_descending.setAttribute('disabled','true');
- sort_ascending.removeAttribute('checked');
- sort_descending.removeAttribute('checked');
- } else {
- sort_ascending.removeAttribute('disabled');
- sort_descending.removeAttribute('disabled');
- if (direction == "ascending") {
- sort_ascending.setAttribute('checked','true');
- } else {
- sort_descending.setAttribute('checked','true');
- }
-
- var columns = document.getElementsByTagName('treecol');
- var i = 0;
- var column_node = columns[i];
- var column_name = column.id;
- var menuitem = document.getElementById('fill_after_this_node');
- menuitem = menuitem.nextSibling
- while (1) {
- var name = menuitem.getAttribute('column_id');
- if (!name) break;
- if (column_name == name) {
- menuitem.setAttribute('checked', 'true');
- break;
- }
- menuitem = menuitem.nextSibling;
- column_node = columns[++i];
- if (column_node && column_node.tagName == "splitter") {
- column_node = columns[++i];
- }
- }
- }
- enable_sort_menuitems();
-}
-
-function enable_sort_menuitems()
-{
- var columns = document.getElementsByTagName('treecol');
- var menuitem = document.getElementById('fill_after_this_node');
- menuitem = menuitem.nextSibling
- for (var i = 0; (i < columns.length) && menuitem; ++i) {
- var column_node = columns[i];
- if (column_node.getAttribute("hidden") == "true")
- menuitem.setAttribute("disabled", "true");
- else
- menuitem.removeAttribute("disabled");
- menuitem = menuitem.nextSibling;
- }
-}
-
-function fillViewMenu(popup)
-{
- var fill_after = document.getElementById('fill_after_this_node');
- var fill_before = document.getElementById('fill_before_this_node');
- var strBundle = document.getElementById('sortBundle');
- var sortString;
- if (strBundle)
- sortString = strBundle.getString('SortMenuItems');
- if (!sortString)
- sortString = "Sorted by %COLNAME%";
-
- var firstTime = (fill_after.nextSibling == fill_before);
- if (firstTime) {
- var columns = document.getElementsByTagName('treecol');
- for (var i = 0; i < columns.length; ++i) {
- var column = columns[i];
- // Construct an entry for each cell in the row.
- var column_name = column.getAttribute("label");
- var column_accesskey = column.getAttribute("accesskey");
- var item = document.createElement("menuitem");
- if (column_accesskey)
- item.setAttribute("accesskey", column_accesskey);
- item.setAttribute("type", "radio");
- item.setAttribute("name", "sort_column");
- if (column_name == "")
- column_name = column.getAttribute("display");
- var name = sortString.replace(/%COLNAME%/g, column_name);
- item.setAttribute("label", name);
- item.setAttribute("oncommand", "SortColumn('" + column.id + "');");
- item.setAttribute("column_id", column.id);
- popup.insertBefore(item, fill_before);
- }
- }
- var sort_column = find_sort_column();
- var sort_direction = find_sort_direction(sort_column);
- update_sort_menuitems(sort_column, sort_direction);
-}
diff --git a/xpfe/global/resources/content/nsUserSettings.js b/xpfe/global/resources/content/nsUserSettings.js
deleted file mode 100644
index 5297a00447f7..000000000000
--- a/xpfe/global/resources/content/nsUserSettings.js
+++ /dev/null
@@ -1,104 +0,0 @@
-
-/**
- * nsPreferences - a wrapper around nsIPrefService. Provides built in
- * exception handling to make preferences access simpler.
- **/
-var nsPreferences = {
- get mPrefService()
- {
- return Components.classes["@mozilla.org/preferences-service;1"]
- .getService(Components.interfaces.nsIPrefBranch);
- },
-
- setBoolPref: function (aPrefName, aPrefValue)
- {
- try
- {
- this.mPrefService.setBoolPref(aPrefName, aPrefValue);
- }
- catch(e)
- {
- }
- },
-
- getBoolPref: function (aPrefName, aDefVal)
- {
- try
- {
- return this.mPrefService.getBoolPref(aPrefName);
- }
- catch(e)
- {
- return aDefVal != undefined ? aDefVal : null;
- }
- return null; // quiet warnings
- },
-
- setUnicharPref: function (aPrefName, aPrefValue)
- {
- try
- {
- var str = Components.classes["@mozilla.org/supports-string;1"]
- .createInstance(Components.interfaces.nsISupportsString);
- str.data = aPrefValue;
- this.mPrefService.setComplexValue(aPrefName,
- Components.interfaces.nsISupportsString, str);
- }
- catch(e)
- {
- }
- },
-
- copyUnicharPref: function (aPrefName, aDefVal)
- {
- try
- {
- return this.mPrefService.getComplexValue(aPrefName,
- Components.interfaces.nsISupportsString).data;
- }
- catch(e)
- {
- return aDefVal != undefined ? aDefVal : null;
- }
- return null; // quiet warnings
- },
-
- setIntPref: function (aPrefName, aPrefValue)
- {
- try
- {
- this.mPrefService.setIntPref(aPrefName, aPrefValue);
- }
- catch(e)
- {
- }
- },
-
- getIntPref: function (aPrefName, aDefVal)
- {
- try
- {
- return this.mPrefService.getIntPref(aPrefName);
- }
- catch(e)
- {
- return aDefVal != undefined ? aDefVal : null;
- }
- return null; // quiet warnings
- },
-
- getLocalizedUnicharPref: function (aPrefName, aDefVal)
- {
- try
- {
- return this.mPrefService.getComplexValue(aPrefName,
- Components.interfaces.nsIPrefLocalizedString).data;
- }
- catch(e)
- {
- return aDefVal != undefined ? aDefVal : null;
- }
- return null; // quiet warnings
- }
-};
-
diff --git a/xpfe/global/resources/content/os2/Makefile.in b/xpfe/global/resources/content/os2/Makefile.in
deleted file mode 100644
index 81fb0e454ca0..000000000000
--- a/xpfe/global/resources/content/os2/Makefile.in
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/content/os2/jar.mn b/xpfe/global/resources/content/os2/jar.mn
deleted file mode 100644
index 869c679dca06..000000000000
--- a/xpfe/global/resources/content/os2/jar.mn
+++ /dev/null
@@ -1,4 +0,0 @@
-toolkit.jar:
- content/global/platformGlobalOverlay.xul
- content/global/platformDialogOverlay.xul
- content/global/platformXUL.css
diff --git a/xpfe/global/resources/content/os2/platformDialogOverlay.xul b/xpfe/global/resources/content/os2/platformDialogOverlay.xul
deleted file mode 100644
index 19d3d232a610..000000000000
--- a/xpfe/global/resources/content/os2/platformDialogOverlay.xul
+++ /dev/null
@@ -1,88 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/os2/platformXUL.css b/xpfe/global/resources/content/os2/platformXUL.css
deleted file mode 100644
index 2462c34544de..000000000000
--- a/xpfe/global/resources/content/os2/platformXUL.css
+++ /dev/null
@@ -1,4 +0,0 @@
-
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
-
-
diff --git a/xpfe/global/resources/content/printPageSetup.js b/xpfe/global/resources/content/printPageSetup.js
deleted file mode 100644
index 150495e32964..000000000000
--- a/xpfe/global/resources/content/printPageSetup.js
+++ /dev/null
@@ -1,515 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Mozilla Communicator client code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Masaki Katakai
- * Roland Mainz
- * Asko Tontti
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-var gDialog;
-var paramBlock;
-var gPrefs = null;
-var gPrintService = null;
-var gPrintSettings = null;
-var gStringBundle = null;
-var gDoingMetric = false;
-
-var gPrintSettingsInterface = Components.interfaces.nsIPrintSettings;
-var gDoDebug = false;
-
-//---------------------------------------------------
-function initDialog()
-{
- gDialog = new Object;
-
- gDialog.orientation = document.getElementById("orientation");
- gDialog.portrait = document.getElementById("portrait");
- gDialog.landscape = document.getElementById("landscape");
-
- gDialog.printBG = document.getElementById("printBG");
-
- gDialog.shrinkToFit = document.getElementById("shrinkToFit");
-
- gDialog.marginGroup = document.getElementById("marginGroup");
-
- gDialog.marginPage = document.getElementById("marginPage");
- gDialog.marginTop = document.getElementById("marginTop");
- gDialog.marginBottom = document.getElementById("marginBottom");
- gDialog.marginLeft = document.getElementById("marginLeft");
- gDialog.marginRight = document.getElementById("marginRight");
-
- gDialog.topInput = document.getElementById("topInput");
- gDialog.bottomInput = document.getElementById("bottomInput");
- gDialog.leftInput = document.getElementById("leftInput");
- gDialog.rightInput = document.getElementById("rightInput");
-
- gDialog.hLeftOption = document.getElementById("hLeftOption");
- gDialog.hCenterOption = document.getElementById("hCenterOption");
- gDialog.hRightOption = document.getElementById("hRightOption");
-
- gDialog.fLeftOption = document.getElementById("fLeftOption");
- gDialog.fCenterOption = document.getElementById("fCenterOption");
- gDialog.fRightOption = document.getElementById("fRightOption");
-
- gDialog.scalingLabel = document.getElementById("scalingInput");
- gDialog.scalingInput = document.getElementById("scalingInput");
-
- gDialog.enabled = false;
-
- gDialog.strings = new Array;
- gDialog.strings[ "marginUnits.inches" ] = document.getElementById("marginUnits.inches").childNodes[0].nodeValue;
- gDialog.strings[ "marginUnits.metric" ] = document.getElementById("marginUnits.metric").childNodes[0].nodeValue;
- gDialog.strings[ "customPrompt.title" ] = document.getElementById("customPrompt.title").childNodes[0].nodeValue;
- gDialog.strings[ "customPrompt.prompt" ] = document.getElementById("customPrompt.prompt").childNodes[0].nodeValue;
-
-}
-
-//---------------------------------------------------
-function isListOfPrinterFeaturesAvailable()
-{
- var has_printerfeatures = false;
-
- try {
- has_printerfeatures = gPrefs.getBoolPref("print.tmp.printerfeatures." + gPrintSettings.printerName + ".has_special_printerfeatures");
- } catch(ex) {
- }
-
- return has_printerfeatures;
-}
-
-//---------------------------------------------------
-function checkDouble(element)
-{
- element.value = element.value.replace(/[^.0-9]/g, "");
-}
-
-// Theoretical paper width/height.
-var gPageWidth = 8.5;
-var gPageHeight = 11.0;
-
-//---------------------------------------------------
-function setOrientation()
-{
- var selection = gDialog.orientation.selectedItem;
-
- var style = "background-color:white;";
- if ((selection == gDialog.portrait && gPageWidth > gPageHeight) ||
- (selection == gDialog.landscape && gPageWidth < gPageHeight)) {
- // Swap width/height.
- var temp = gPageHeight;
- gPageHeight = gPageWidth;
- gPageWidth = temp;
- }
- var div = gDoingMetric ? 100 : 10;
- style += "width:" + gPageWidth/div + unitString() + ";height:" + gPageHeight/div + unitString() + ";";
- gDialog.marginPage.setAttribute( "style", style );
-}
-
-//---------------------------------------------------
-function unitString()
-{
- return (gPrintSettings.paperSizeUnit == gPrintSettingsInterface.kPaperSizeInches) ? "in" : "mm";
-}
-
-//---------------------------------------------------
-function checkMargin( value, max, other )
-{
- // Don't draw this margin bigger than permitted.
- return Math.min(value, max - other.value);
-}
-
-//---------------------------------------------------
-function changeMargin( node )
-{
- // Correct invalid input.
- checkDouble(node);
-
- // Reset the margin height/width for this node.
- var val = node.value;
- var nodeToStyle;
- var attr="width";
- if ( node == gDialog.topInput ) {
- nodeToStyle = gDialog.marginTop;
- val = checkMargin( val, gPageHeight, gDialog.bottomInput );
- attr = "height";
- } else if ( node == gDialog.bottomInput ) {
- nodeToStyle = gDialog.marginBottom;
- val = checkMargin( val, gPageHeight, gDialog.topInput );
- attr = "height";
- } else if ( node == gDialog.leftInput ) {
- nodeToStyle = gDialog.marginLeft;
- val = checkMargin( val, gPageWidth, gDialog.rightInput );
- } else {
- nodeToStyle = gDialog.marginRight;
- val = checkMargin( val, gPageWidth, gDialog.leftInput );
- }
- var style = attr + ":" + (val/10) + unitString() + ";";
- nodeToStyle.setAttribute( "style", style );
-}
-
-//---------------------------------------------------
-function changeMargins()
-{
- changeMargin( gDialog.topInput );
- changeMargin( gDialog.bottomInput );
- changeMargin( gDialog.leftInput );
- changeMargin( gDialog.rightInput );
-}
-
-//---------------------------------------------------
-function customize( node )
-{
- // If selection is now "Custom..." then prompt user for custom setting.
- if ( node.value == 6 ) {
- var prompter = Components.classes[ "@mozilla.org/embedcomp/prompt-service;1" ]
- .getService( Components.interfaces.nsIPromptService );
- var title = gDialog.strings[ "customPrompt.title" ];
- var promptText = gDialog.strings[ "customPrompt.prompt" ];
- var result = { value: node.custom };
- var ok = prompter.prompt(window, title, promptText, result, null, { value: false } );
- if ( ok ) {
- node.custom = result.value;
- }
- }
-}
-
-//---------------------------------------------------
-function setHeaderFooter( node, value )
-{
- node.value= hfValueToId(value);
- if (node.value == 6) {
- // Remember current Custom... value.
- node.custom = value;
- } else {
- // Start with empty Custom... value.
- node.custom = "";
- }
-}
-
-var gHFValues = new Array;
-gHFValues[ "&T" ] = 1;
-gHFValues[ "&U" ] = 2;
-gHFValues[ "&D" ] = 3;
-gHFValues[ "&P" ] = 4;
-gHFValues[ "&PT" ] = 5;
-
-function hfValueToId(val)
-{
- if ( val in gHFValues ) {
- return gHFValues[val];
- }
- if ( val.length ) {
- return 6; // Custom...
- } else {
- return 0; // --blank--
- }
-}
-
-function hfIdToValue(node)
-{
- var result = "";
- switch ( parseInt( node.value ) ) {
- case 0:
- break;
- case 1:
- result = "&T";
- break;
- case 2:
- result = "&U";
- break;
- case 3:
- result = "&D";
- break;
- case 4:
- result = "&P";
- break;
- case 5:
- result = "&PT";
- break;
- case 6:
- result = node.custom;
- break;
- }
- return result;
-}
-
-function setPrinterDefaultsForSelectedPrinter()
-{
- if (gPrintSettings.printerName == "") {
- gPrintSettings.printerName = gPrintService.defaultPrinterName;
- }
-
- // First get any defaults from the printer
- gPrintService.initPrintSettingsFromPrinter(gPrintSettings.printerName, gPrintSettings);
-
- // now augment them with any values from last time
- gPrintService.initPrintSettingsFromPrefs(gPrintSettings, true, gPrintSettingsInterface.kInitSaveAll);
-
- if (gDoDebug) {
- dump("pagesetup/setPrinterDefaultsForSelectedPrinter: printerName='"+gPrintSettings.printerName+"', orientation='"+gPrintSettings.orientation+"'\n");
- }
-}
-
-//---------------------------------------------------
-function loadDialog()
-{
- var print_orientation = 0;
- var print_margin_top = 0.5;
- var print_margin_left = 0.5;
- var print_margin_bottom = 0.5;
- var print_margin_right = 0.5;
-
- try {
- gPrefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
-
- gPrintService = Components.classes["@mozilla.org/gfx/printsettings-service;1"];
- if (gPrintService) {
- gPrintService = gPrintService.getService();
- if (gPrintService) {
- gPrintService = gPrintService.QueryInterface(Components.interfaces.nsIPrintSettingsService);
- }
- }
- } catch(ex) {
- dump("loadDialog: ex="+ex+"\n");
- }
-
- setPrinterDefaultsForSelectedPrinter();
-
- gDialog.printBG.checked = gPrintSettings.printBGColors || gPrintSettings.printBGImages;
-
- gDialog.shrinkToFit.checked = gPrintSettings.shrinkToFit;
-
- gDialog.scalingLabel.disabled = gDialog.scalingInput.disabled = gDialog.shrinkToFit.checked;
-
- var marginGroupLabel = gDialog.marginGroup.label;
- if (gPrintSettings.paperSizeUnit == gPrintSettingsInterface.kPaperSizeInches) {
- marginGroupLabel = marginGroupLabel.replace(/#1/, gDialog.strings["marginUnits.inches"]);
- gDoingMetric = false;
- } else {
- marginGroupLabel = marginGroupLabel.replace(/#1/, gDialog.strings["marginUnits.metric"]);
- // Also, set global page dimensions for A4 paper, in millimeters (assumes portrait at this point).
- gPageWidth = 2100;
- gPageHeight = 2970;
- gDoingMetric = true;
- }
- gDialog.marginGroup.label = marginGroupLabel;
-
- print_orientation = gPrintSettings.orientation;
- print_margin_top = convertMarginInchesToUnits(gPrintSettings.marginTop, gDoingMetric);
- print_margin_left = convertMarginInchesToUnits(gPrintSettings.marginLeft, gDoingMetric);
- print_margin_right = convertMarginInchesToUnits(gPrintSettings.marginRight, gDoingMetric);
- print_margin_bottom = convertMarginInchesToUnits(gPrintSettings.marginBottom, gDoingMetric);
-
- if (gDoDebug) {
- dump("print_orientation "+print_orientation+"\n");
-
- dump("print_margin_top "+print_margin_top+"\n");
- dump("print_margin_left "+print_margin_left+"\n");
- dump("print_margin_right "+print_margin_right+"\n");
- dump("print_margin_bottom "+print_margin_bottom+"\n");
- }
-
- if (print_orientation == gPrintSettingsInterface.kPortraitOrientation) {
- gDialog.orientation.selectedItem = gDialog.portrait;
- } else if (print_orientation == gPrintSettingsInterface.kLandscapeOrientation) {
- gDialog.orientation.selectedItem = gDialog.landscape;
- }
-
- // Set orientation the first time on a timeout so the dialog sizes to the
- // maximum height specified in the .xul file. Otherwise, if the user switches
- // from landscape to portrait, the content grows and the buttons are clipped.
- setTimeout( setOrientation, 0 );
-
- gDialog.topInput.value = print_margin_top.toFixed(1);
- gDialog.bottomInput.value = print_margin_bottom.toFixed(1);
- gDialog.leftInput.value = print_margin_left.toFixed(1);
- gDialog.rightInput.value = print_margin_right.toFixed(1);
- changeMargins();
-
- setHeaderFooter( gDialog.hLeftOption, gPrintSettings.headerStrLeft );
- setHeaderFooter( gDialog.hCenterOption, gPrintSettings.headerStrCenter );
- setHeaderFooter( gDialog.hRightOption, gPrintSettings.headerStrRight );
-
- setHeaderFooter( gDialog.fLeftOption, gPrintSettings.footerStrLeft );
- setHeaderFooter( gDialog.fCenterOption, gPrintSettings.footerStrCenter );
- setHeaderFooter( gDialog.fRightOption, gPrintSettings.footerStrRight );
-
- gDialog.scalingInput.value = (gPrintSettings.scaling * 100).toFixed(0);
-
- // Enable/disable widgets based in the information whether the selected
- // printer supports the matching feature or not
- if (isListOfPrinterFeaturesAvailable()) {
- if (gPrefs.getBoolPref("print.tmp.printerfeatures." + gPrintSettings.printerName + ".can_change_orientation"))
- gDialog.orientation.removeAttribute("disabled");
- else
- gDialog.orientation.setAttribute("disabled","true");
- }
-
- // Give initial focus to the orientation radio group.
- // Done on a timeout due to to bug 103197.
- setTimeout( function() { gDialog.orientation.focus(); }, 0 );
-}
-
-//---------------------------------------------------
-function onLoad()
-{
- // Init gDialog.
- initDialog();
-
- if (window.arguments[0] != null) {
- gPrintSettings = window.arguments[0].QueryInterface(Components.interfaces.nsIPrintSettings);
- paramBlock = window.arguments[1].QueryInterface(Components.interfaces.nsIDialogParamBlock);
- } else if (gDoDebug) {
- alert("window.arguments[0] == null!");
- }
-
- // default return value is "cancel"
- paramBlock.SetInt(0, 0);
-
- if (gPrintSettings) {
- loadDialog();
- } else if (gDoDebug) {
- alert("Could initialize gDialog, PrintSettings is null!");
- }
-}
-
-function convertUnitsMarginToInches(aVal, aIsMetric)
-{
- if (aIsMetric) {
- return aVal / 25.4;
- } else {
- return aVal;
- }
-}
-
-function convertMarginInchesToUnits(aVal, aIsMetric)
-{
- if (aIsMetric) {
- return aVal * 25.4;
- } else {
- return aVal;
- }
-}
-
-//---------------------------------------------------
-function onAccept()
-{
-
- if (gPrintSettings) {
- if ( gDialog.orientation.selectedItem == gDialog.portrait ) {
- gPrintSettings.orientation = gPrintSettingsInterface.kPortraitOrientation;
- } else {
- gPrintSettings.orientation = gPrintSettingsInterface.kLandscapeOrientation;
- }
-
- // save these out so they can be picked up by the device spec
- gPrintSettings.marginTop = convertUnitsMarginToInches(gDialog.topInput.value, gDoingMetric);
- gPrintSettings.marginLeft = convertUnitsMarginToInches(gDialog.leftInput.value, gDoingMetric);
- gPrintSettings.marginBottom = convertUnitsMarginToInches(gDialog.bottomInput.value, gDoingMetric);
- gPrintSettings.marginRight = convertUnitsMarginToInches(gDialog.rightInput.value, gDoingMetric);
-
- gPrintSettings.headerStrLeft = hfIdToValue(gDialog.hLeftOption);
- gPrintSettings.headerStrCenter = hfIdToValue(gDialog.hCenterOption);
- gPrintSettings.headerStrRight = hfIdToValue(gDialog.hRightOption);
-
- gPrintSettings.footerStrLeft = hfIdToValue(gDialog.fLeftOption);
- gPrintSettings.footerStrCenter = hfIdToValue(gDialog.fCenterOption);
- gPrintSettings.footerStrRight = hfIdToValue(gDialog.fRightOption);
-
- gPrintSettings.printBGColors = gDialog.printBG.checked;
- gPrintSettings.printBGImages = gDialog.printBG.checked;
-
- gPrintSettings.shrinkToFit = gDialog.shrinkToFit.checked;
-
- var scaling = document.getElementById("scalingInput").value;
- if (scaling < 10.0) {
- scaling = 10.0;
- }
- if (scaling > 500.0) {
- scaling = 500.0;
- }
- scaling /= 100.0;
- gPrintSettings.scaling = scaling;
-
- if (gDoDebug) {
- dump("******* Page Setup Accepting ******\n");
- dump("print_margin_top "+gDialog.topInput.value+"\n");
- dump("print_margin_left "+gDialog.leftInput.value+"\n");
- dump("print_margin_right "+gDialog.bottomInput.value+"\n");
- dump("print_margin_bottom "+gDialog.rightInput.value+"\n");
- }
- }
-
- // set return value to "ok"
- if (paramBlock) {
- paramBlock.SetInt(0, 1);
- } else {
- dump("*** FATAL ERROR: No paramBlock\n");
- }
-
- var flags = gPrintSettingsInterface.kInitSaveMargins |
- gPrintSettingsInterface.kInitSaveHeaderLeft |
- gPrintSettingsInterface.kInitSaveHeaderCenter |
- gPrintSettingsInterface.kInitSaveHeaderRight |
- gPrintSettingsInterface.kInitSaveFooterLeft |
- gPrintSettingsInterface.kInitSaveFooterCenter |
- gPrintSettingsInterface.kInitSaveFooterRight |
- gPrintSettingsInterface.kInitSaveBGColors |
- gPrintSettingsInterface.kInitSaveBGImages |
- gPrintSettingsInterface.kInitSaveInColor |
- gPrintSettingsInterface.kInitSaveReversed |
- gPrintSettingsInterface.kInitSaveOrientation |
- gPrintSettingsInterface.kInitSaveOddEvenPages |
- gPrintSettingsInterface.kInitSaveShrinkToFit |
- gPrintSettingsInterface.kInitSaveScaling;
-
- gPrintService.savePrintSettingsToPrefs(gPrintSettings, true, flags);
-
- return true;
-}
-
-//---------------------------------------------------
-function onCancel()
-{
- // set return value to "cancel"
- if (paramBlock) {
- paramBlock.SetInt(0, 0);
- } else {
- dump("*** FATAL ERROR: No paramBlock\n");
- }
-
- return true;
-}
-
diff --git a/xpfe/global/resources/content/printPageSetup.xul b/xpfe/global/resources/content/printPageSetup.xul
deleted file mode 100644
index 2630933eed53..000000000000
--- a/xpfe/global/resources/content/printPageSetup.xul
+++ /dev/null
@@ -1,289 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/printPreviewProgress.js b/xpfe/global/resources/content/printPreviewProgress.js
deleted file mode 100644
index cd1380c7c991..000000000000
--- a/xpfe/global/resources/content/printPreviewProgress.js
+++ /dev/null
@@ -1,184 +0,0 @@
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Mozilla Communicator client code, released
- * March 31, 1998.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Rod Spears
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-// dialog is just an array we'll use to store various properties from the dialog document...
-var dialog;
-
-// the printProgress is a nsIPrintProgress object
-var printProgress = null;
-
-// random global variables...
-var targetFile;
-
-var progressParams = null;
-
-// all progress notifications are done through the nsIWebProgressListener implementation...
-var progressListener = {
- onStateChange: function(aWebProgress, aRequest, aStateFlags, aStatus)
- {
-
- if (aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP)
- {
- window.close();
- }
- },
-
- onProgressChange: function(aWebProgress, aRequest, aCurSelfProgress, aMaxSelfProgress, aCurTotalProgress, aMaxTotalProgress)
- {
- if (progressParams)
- {
- dialog.title.crop = progressParams.docTitle ? "end" : "center";
- dialog.title.value = progressParams.docTitle || progressParams.docURL;
- }
- },
-
- onLocationChange: function(aWebProgress, aRequest, aLocation)
- {
- // we can ignore this notification
- },
-
- onStatusChange: function(aWebProgress, aRequest, aStatus, aMessage)
- {
- if (aMessage != "")
- dialog.title.setAttribute("value", aMessage);
- },
-
- onSecurityChange: function(aWebProgress, aRequest, state)
- {
- // we can ignore this notification
- },
-
- QueryInterface : function(iid)
- {
- if (iid.equals(Components.interfaces.nsIWebProgressListener) ||
- iid.equals(Components.interfaces.nsISupportsWeakReference) ||
- iid.equals(Components.interfaces.nsISupports))
- return this;
-
- throw Components.results.NS_NOINTERFACE;
- }
-};
-
-function onLoad() {
- // Set global variables.
- printProgress = window.arguments[0];
-
- if ( !printProgress ) {
- dump( "Invalid argument to printPreviewProgress.xul\n" );
- window.close()
- return;
- }
-
- dialog = new Object;
- dialog.strings = new Array;
- dialog.title = document.getElementById("dialog.title");
- dialog.titleLabel = document.getElementById("dialog.titleLabel");
-
- if (window.arguments[1]) {
- progressParams = window.arguments[1].QueryInterface(Components.interfaces.nsIPrintProgressParams)
- if (progressParams) {
- dialog.title.crop = progressParams.docTitle ? "end" : "center";
- dialog.title.value = progressParams.docTitle || progressParams.docURL;
- }
- }
-
- // set our web progress listener on the helper app launcher
- printProgress.registerListener(progressListener);
- moveToAlertPosition();
-
- //We need to delay the set title else dom will overwrite it
- window.setTimeout(doneIniting, 100);
-}
-
-function onUnload()
-{
- if (printProgress)
- {
- try
- {
- printProgress.unregisterListener(progressListener);
- printProgress = null;
- }
-
- catch( exception ) {}
- }
-}
-
-function getString( stringId ) {
- // Check if we've fetched this string already.
- if (!(stringId in dialog.strings)) {
- // Try to get it.
- var elem = document.getElementById( "dialog.strings."+stringId );
- try {
- if ( elem
- &&
- elem.childNodes
- &&
- elem.childNodes[0]
- &&
- elem.childNodes[0].nodeValue ) {
- dialog.strings[ stringId ] = elem.childNodes[0].nodeValue;
- } else {
- // If unable to fetch string, use an empty string.
- dialog.strings[ stringId ] = "";
- }
- } catch (e) { dialog.strings[ stringId ] = ""; }
- }
- return dialog.strings[ stringId ];
-}
-
-// If the user presses cancel, tell the app launcher and close the dialog...
-function onCancel ()
-{
- // Cancel app launcher.
- try
- {
- printProgress.processCanceledByUser = true;
- }
- catch( exception ) {return true;}
-
- // don't Close up dialog by returning false, the backend will close the dialog when everything will be aborted.
- return false;
-}
-
-function doneIniting()
-{
- // called by function timeout in onLoad
- printProgress.doneIniting();
-}
diff --git a/xpfe/global/resources/content/printPreviewProgress.xul b/xpfe/global/resources/content/printPreviewProgress.xul
deleted file mode 100644
index 7760d3a3df10..000000000000
--- a/xpfe/global/resources/content/printPreviewProgress.xul
+++ /dev/null
@@ -1,77 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/printProgress.js b/xpfe/global/resources/content/printProgress.js
deleted file mode 100644
index 44a32bbfefb5..000000000000
--- a/xpfe/global/resources/content/printProgress.js
+++ /dev/null
@@ -1,219 +0,0 @@
-/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Mozilla Communicator client code, released
- * March 31, 1998.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * William A. ("PowerGUI") Law
- * Scott MacGregor
- * jean-Francois Ducarroz
- * Rod Spears
- * Karsten "Mnyromyr" Düsterloh
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-// deck index constants
-const TITLE_COMPLETE_DECK = 1;
-const PROGRESS_METER_DECK = 1;
-
-
-// global variables
-var dialog; // associative array with various properties from the dialog document
-var percentFormat; // format string for percent value
-var printProgress = null; // nsIPrintProgress
-var progressParams = null; // nsIPrintProgressParams
-var switchUI = true; // switch UI on first progress change
-
-
-// all progress notifications are done through the nsIWebProgressListener implementation...
-var progressListener =
-{
- onStateChange: function(aWebProgress, aRequest, aStateFlags, aStatus)
- {
- if (aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_START)
- {
- // put progress meter in undetermined mode
- setProgressPercentage(-1);
- }
- if (aStateFlags & Components.interfaces.nsIWebProgressListener.STATE_STOP)
- {
- // we are done printing; indicate completion in title area
- dialog.titleDeck.selectedIndex = TITLE_COMPLETE_DECK;
- setProgressPercentage(100);
- window.close();
- }
- },
-
- onProgressChange: function(aWebProgress, aRequest,
- aCurSelfProgress, aMaxSelfProgress,
- aCurTotalProgress, aMaxTotalProgress)
- {
- if (switchUI)
- {
- // first progress change: show progress meter
- dialog.progressDeck.selectedIndex = PROGRESS_METER_DECK;
- dialog.cancel.removeAttribute("disabled");
- switchUI = false;
- }
- setProgressTitle();
-
- // calculate percentage and update progress meter
- if (aMaxTotalProgress > 0)
- {
- var percentage = Math.round(aCurTotalProgress * 100 / aMaxTotalProgress);
- setProgressPercentage(percentage);
- }
- else
- {
- // progress meter should be barber-pole in this case
- setProgressPercentage(-1);
- }
- },
-
- onLocationChange: function(aWebProgress, aRequest, aLocation)
- {
- // we can ignore this notification
- },
-
- onStatusChange: function(aWebProgress, aRequest, aStatus, aMessage)
- {
- if (aMessage)
- dialog.title.value = aMessage;
- },
-
- onSecurityChange: function(aWebProgress, aRequest, aStatus)
- {
- // we can ignore this notification
- },
-
- QueryInterface : function(iid)
- {
- if (iid.equals(Components.interfaces.nsIWebProgressListener) || iid.equals(Components.interfaces.nsISupportsWeakReference))
- return this;
- throw Components.results.NS_NOINTERFACE;
- }
-};
-
-
-function setProgressTitle()
-{
- if (progressParams)
- {
- dialog.title.crop = progressParams.docTitle ? "end" : "center";
- dialog.title.value = progressParams.docTitle || progressParams.docURL;
- }
-}
-
-
-function setProgressPercentage(aPercentage)
-{
- // set percentage as text if non-negative
- if (aPercentage < 0)
- {
- dialog.progress.mode = "undetermined";
- dialog.progressText.value = "";
- }
- else
- {
- dialog.progress.removeAttribute("mode");
- dialog.progress.value = aPercentage;
- dialog.progressText.value = percentFormat.replace("#1", aPercentage);
- }
-}
-
-
-function onLoad()
-{
- // set global variables
- printProgress = window.arguments[0];
- if (!printProgress)
- {
- dump("Invalid argument to printProgress.xul\n");
- window.close();
- return;
- }
-
- dialog = {
- titleDeck : document.getElementById("dialog.titleDeck"),
- title : document.getElementById("dialog.title"),
- progressDeck: document.getElementById("dialog.progressDeck"),
- progress : document.getElementById("dialog.progress"),
- progressText: document.getElementById("dialog.progressText"),
- cancel : document.documentElement.getButton("cancel")
- };
- percentFormat = dialog.progressText.getAttribute("basevalue");
- // disable the cancel button until first progress is made
- dialog.cancel.setAttribute("disabled", "true");
-
- // XXX we could probably get rid of this test, it should never fail
- if (window.arguments.length > 1 && window.arguments[1])
- {
- progressParams = window.arguments[1].QueryInterface(Components.interfaces.nsIPrintProgressParams);
- setProgressTitle();
- }
-
- // set our web progress listener on the helper app launcher
- printProgress.registerListener(progressListener);
- printProgress.doneIniting();
-}
-
-
-function onUnload()
-{
- if (printProgress)
- {
- try
- {
- printProgress.unregisterListener(progressListener);
- printProgress = null;
- }
- catch(ex){}
- }
-}
-
-
-// If the user presses cancel, tell the app launcher and close the dialog...
-function onCancel()
-{
- // cancel app launcher
- try
- {
- printProgress.processCanceledByUser = true;
- }
- catch(ex)
- {
- return true;
- }
- // don't close dialog by returning false, the backend will close the dialog
- // when everything will be aborted.
- return false;
-}
diff --git a/xpfe/global/resources/content/printProgress.xul b/xpfe/global/resources/content/printProgress.xul
deleted file mode 100644
index 3b0778fb1e2e..000000000000
--- a/xpfe/global/resources/content/printProgress.xul
+++ /dev/null
@@ -1,85 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/printdialog.js b/xpfe/global/resources/content/printdialog.js
deleted file mode 100644
index 23d86e910fa2..000000000000
--- a/xpfe/global/resources/content/printdialog.js
+++ /dev/null
@@ -1,463 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
- *
- * ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Mozilla Communicator client code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Masaki Katakai
- * Jessica Blanco
- * Asko Tontti
- * Roland Mainz
- * Peter Weilbacher
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-var dialog;
-var printService = null;
-var gOriginalNumCopies = 1;
-
-var paramBlock;
-var gPrefs = null;
-var gPrintSettings = null;
-var gWebBrowserPrint = null;
-var gPrintSetInterface = Components.interfaces.nsIPrintSettings;
-var doDebug = false;
-
-//---------------------------------------------------
-function initDialog()
-{
- dialog = new Object;
-
- dialog.propertiesButton = document.getElementById("properties");
- dialog.descText = document.getElementById("descText");
-
- dialog.printRangeGroup = document.getElementById("printRangeGroup");
- dialog.allPagesRadio = document.getElementById("allPagesRadio");
- dialog.rangeRadio = document.getElementById("rangeRadio");
- dialog.selectionRadio = document.getElementById("selectionRadio");
- dialog.fromPageInput = document.getElementById("fromPageInput");
- dialog.fromPageLabel = document.getElementById("fromPageLabel");
- dialog.toPageInput = document.getElementById("toPageInput");
- dialog.toPageLabel = document.getElementById("toPageLabel");
-
- dialog.numCopiesInput = document.getElementById("numCopiesInput");
-
- dialog.printFrameGroup = document.getElementById("printFrameGroup");
- dialog.asLaidOutRadio = document.getElementById("asLaidOutRadio");
- dialog.selectedFrameRadio = document.getElementById("selectedFrameRadio");
- dialog.eachFrameSepRadio = document.getElementById("eachFrameSepRadio");
- dialog.printFrameGroupLabel = document.getElementById("printFrameGroupLabel");
-
- dialog.fileCheck = document.getElementById("fileCheck");
- dialog.printerLabel = document.getElementById("printerLabel");
- dialog.printerList = document.getElementById("printerList");
-
- dialog.printButton = document.documentElement.getButton("accept");
-
- // element
- dialog.fpDialog = document.getElementById("fpDialog");
-
- dialog.enabled = false;
-}
-
-//---------------------------------------------------
-function checkInteger(element)
-{
- var value = element.value;
- if (value && value.length > 0) {
- value = value.replace(/[^0-9]/g,"");
- if (!value) value = "";
- element.value = value;
- }
- if (!value || value < 1 || value > 999)
- dialog.printButton.setAttribute("disabled","true");
- else
- dialog.printButton.removeAttribute("disabled");
-}
-
-//---------------------------------------------------
-function stripTrailingWhitespace(element)
-{
- var value = element.value;
- value = value.replace(/\s+$/,"");
- element.value = value;
-}
-
-//---------------------------------------------------
-function getPrinterDescription(printerName)
-{
- var s = "";
-
- try {
- /* This may not work with non-ASCII test (see bug 235763 comment #16) */
- s = gPrefs.getCharPref("print.printer_" + printerName + ".printer_description")
- } catch(e) {
- }
-
- return s;
-}
-
-//---------------------------------------------------
-function listElement(aListElement)
- {
- this.listElement = aListElement;
- }
-
-listElement.prototype =
- {
- clearList:
- function ()
- {
- // remove the menupopup node child of the menulist.
- var popup = this.listElement.firstChild;
- if (popup) {
- this.listElement.removeChild(popup);
- }
- },
-
- appendPrinterNames:
- function (aDataObject)
- {
- if ((null == aDataObject) || !aDataObject.hasMore()) {
- // disable dialog
- var stringBundle = srGetStrBundle("chrome://global/locale/printing.properties");
- this.listElement.setAttribute("value", "");
- this.listElement.setAttribute("label", stringBundle.GetStringFromName("noprinter"));
-
- this.listElement.setAttribute("disabled", "true");
- dialog.printerLabel.setAttribute("disabled","true");
- dialog.propertiesButton.setAttribute("disabled","true");
- dialog.fileCheck.setAttribute("disabled","true");
- dialog.printButton.setAttribute("disabled","true");
- }
- else {
- // build popup menu from printer names
- var list = document.getElementById("printerList");
- do {
- printerNameStr = aDataObject.getNext();
- list.appendItem(printerNameStr, printerNameStr, getPrinterDescription(printerNameStr));
- } while (aDataObject.hasMore());
- this.listElement.removeAttribute("disabled");
- }
- }
- };
-
-//---------------------------------------------------
-function getPrinters()
-{
- var selectElement = new listElement(dialog.printerList);
- selectElement.clearList();
-
- var printerEnumerator;
- try {
- printerEnumerator =
- Components.classes["@mozilla.org/gfx/printerenumerator;1"]
- .getService(Components.interfaces.nsIPrinterEnumerator)
- .printerNameList;
- } catch(e) { printerEnumerator = null; }
-
- selectElement.appendPrinterNames(printerEnumerator);
- selectElement.listElement.value = printService.defaultPrinterName;
-
- // make sure we load the prefs for the initially selected printer
- setPrinterDefaultsForSelectedPrinter();
-}
-
-
-//---------------------------------------------------
-// update gPrintSettings with the defaults for the selected printer
-function setPrinterDefaultsForSelectedPrinter()
-{
- gPrintSettings.printerName = dialog.printerList.value;
-
- dialog.descText.value = getPrinterDescription(gPrintSettings.printerName);
-
- // First get any defaults from the printer
- printService.initPrintSettingsFromPrinter(gPrintSettings.printerName, gPrintSettings);
-
- // now augment them with any values from last time
- printService.initPrintSettingsFromPrefs(gPrintSettings, true, gPrintSetInterface.kInitSaveAll);
-
- if (doDebug) {
- dump("setPrinterDefaultsForSelectedPrinter: printerName='"+gPrintSettings.printerName+"', paperName='"+gPrintSettings.paperName+"'\n");
- }
-}
-
-//---------------------------------------------------
-function displayPropertiesDialog()
-{
- gPrintSettings.numCopies = dialog.numCopiesInput.value;
- try {
- var printingPromptService = Components.classes["@mozilla.org/embedcomp/printingprompt-service;1"]
- .getService(Components.interfaces.nsIPrintingPromptService);
- if (printingPromptService) {
- printingPromptService.showPrinterProperties(null, dialog.printerList.value, gPrintSettings);
- dialog.numCopiesInput.value = gPrintSettings.numCopies;
- }
- } catch(e) {
- dump("problems getting printingPromptService\n");
- }
-}
-
-//---------------------------------------------------
-function doPrintRange(inx)
-{
- if (inx == 1) {
- dialog.fromPageInput.removeAttribute("disabled");
- dialog.fromPageLabel.removeAttribute("disabled");
- dialog.toPageInput.removeAttribute("disabled");
- dialog.toPageLabel.removeAttribute("disabled");
- } else {
- dialog.fromPageInput.setAttribute("disabled","true");
- dialog.fromPageLabel.setAttribute("disabled","true");
- dialog.toPageInput.setAttribute("disabled","true");
- dialog.toPageLabel.setAttribute("disabled","true");
- }
-}
-
-//---------------------------------------------------
-function loadDialog()
-{
- var print_copies = 1;
- var print_selection_radio_enabled = false;
- var print_frametype = gPrintSetInterface.kSelectedFrame;
- var print_howToEnableUI = gPrintSetInterface.kFrameEnableNone;
- var print_tofile = "";
-
- try {
- gPrefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
-
- printService = Components.classes["@mozilla.org/gfx/printsettings-service;1"];
- if (printService) {
- printService = printService.getService();
- if (printService) {
- printService = printService.QueryInterface(Components.interfaces.nsIPrintSettingsService);
- }
- }
- } catch(e) {}
-
- // Note: getPrinters sets up the PrintToFile control
- getPrinters();
-
- if (gPrintSettings) {
- print_tofile = gPrintSettings.printToFile;
- gOriginalNumCopies = gPrintSettings.numCopies;
-
- print_copies = gPrintSettings.numCopies;
- print_frametype = gPrintSettings.printFrameType;
- print_howToEnableUI = gPrintSettings.howToEnableFrameUI;
- print_selection_radio_enabled = gPrintSettings.GetPrintOptions(gPrintSetInterface.kEnableSelectionRB);
- }
-
- if (doDebug) {
- dump("loadDialog*********************************************\n");
- dump("print_tofile "+print_tofile+"\n");
- dump("print_frame "+print_frametype+"\n");
- dump("print_howToEnableUI "+print_howToEnableUI+"\n");
- dump("selection_radio_enabled "+print_selection_radio_enabled+"\n");
- }
-
- dialog.printRangeGroup.selectedItem = dialog.allPagesRadio;
- if (print_selection_radio_enabled) {
- dialog.selectionRadio.removeAttribute("disabled");
- } else {
- dialog.selectionRadio.setAttribute("disabled","true");
- }
- doPrintRange(dialog.rangeRadio.selected);
- dialog.fromPageInput.value = 1;
- dialog.toPageInput.value = 1;
- dialog.numCopiesInput.value = print_copies;
-
- if (doDebug) {
- dump("print_howToEnableUI: "+print_howToEnableUI+"\n");
- }
-
- // print frame
- if (print_howToEnableUI == gPrintSetInterface.kFrameEnableAll) {
- dialog.asLaidOutRadio.removeAttribute("disabled");
-
- dialog.selectedFrameRadio.removeAttribute("disabled");
- dialog.eachFrameSepRadio.removeAttribute("disabled");
- dialog.printFrameGroupLabel.removeAttribute("disabled");
-
- // initialize radio group
- dialog.printFrameGroup.selectedItem = dialog.selectedFrameRadio;
-
- } else if (print_howToEnableUI == gPrintSetInterface.kFrameEnableAsIsAndEach) {
- dialog.asLaidOutRadio.removeAttribute("disabled"); //enable
-
- dialog.selectedFrameRadio.setAttribute("disabled","true"); // disable
- dialog.eachFrameSepRadio.removeAttribute("disabled"); // enable
- dialog.printFrameGroupLabel.removeAttribute("disabled"); // enable
-
- // initialize
- dialog.printFrameGroup.selectedItem = dialog.eachFrameSepRadio;
-
- } else {
- dialog.asLaidOutRadio.setAttribute("disabled","true");
- dialog.selectedFrameRadio.setAttribute("disabled","true");
- dialog.eachFrameSepRadio.setAttribute("disabled","true");
- dialog.printFrameGroupLabel.setAttribute("disabled","true");
- }
-}
-
-//---------------------------------------------------
-function onLoad()
-{
- // Init dialog.
- initDialog();
-
- // param[0]: nsIPrintSettings object
- // param[1]: container for return value (1 = print, 0 = cancel)
-
- gPrintSettings = window.arguments[0].QueryInterface(gPrintSetInterface);
- gWebBrowserPrint = window.arguments[1].QueryInterface(Components.interfaces.nsIWebBrowserPrint);
- paramBlock = window.arguments[2].QueryInterface(Components.interfaces.nsIDialogParamBlock);
-
- // default return value is "cancel"
- paramBlock.SetInt(0, 0);
-
- loadDialog();
-}
-
-//---------------------------------------------------
-function onAccept()
-{
- if (gPrintSettings != null) {
- var print_howToEnableUI = gPrintSetInterface.kFrameEnableNone;
-
- // save these out so they can be picked up by the device spec
- gPrintSettings.printerName = dialog.printerList.value;
- print_howToEnableUI = gPrintSettings.howToEnableFrameUI;
- gPrintSettings.printToFile = dialog.fileCheck.checked;
-
- if (gPrintSettings.printToFile)
- if (!chooseFile())
- return false;
-
- if (dialog.allPagesRadio.selected) {
- gPrintSettings.printRange = gPrintSetInterface.kRangeAllPages;
- } else if (dialog.rangeRadio.selected) {
- gPrintSettings.printRange = gPrintSetInterface.kRangeSpecifiedPageRange;
- } else if (dialog.selectionRadio.selected) {
- gPrintSettings.printRange = gPrintSetInterface.kRangeSelection;
- }
- gPrintSettings.startPageRange = dialog.fromPageInput.value;
- gPrintSettings.endPageRange = dialog.toPageInput.value;
- gPrintSettings.numCopies = dialog.numCopiesInput.value;
-
- var frametype = gPrintSetInterface.kNoFrames;
- if (print_howToEnableUI != gPrintSetInterface.kFrameEnableNone) {
- if (dialog.asLaidOutRadio.selected) {
- frametype = gPrintSetInterface.kFramesAsIs;
- } else if (dialog.selectedFrameRadio.selected) {
- frametype = gPrintSetInterface.kSelectedFrame;
- } else if (dialog.eachFrameSepRadio.selected) {
- frametype = gPrintSetInterface.kEachFrameSep;
- } else {
- frametype = gPrintSetInterface.kSelectedFrame;
- }
- }
- gPrintSettings.printFrameType = frametype;
- if (doDebug) {
- dump("onAccept*********************************************\n");
- dump("frametype "+frametype+"\n");
- dump("numCopies "+gPrintSettings.numCopies+"\n");
- dump("printRange "+gPrintSettings.printRange+"\n");
- dump("printerName "+gPrintSettings.printerName+"\n");
- dump("startPageRange "+gPrintSettings.startPageRange+"\n");
- dump("endPageRange "+gPrintSettings.endPageRange+"\n");
- dump("printToFile "+gPrintSettings.printToFile+"\n");
- }
- }
-
- var saveToPrefs = false;
-
- saveToPrefs = gPrefs.getBoolPref("print.save_print_settings");
-
- if (saveToPrefs && printService != null) {
- var flags = gPrintSetInterface.kInitSavePaperSize |
- gPrintSetInterface.kInitSaveColorSpace |
- gPrintSetInterface.kInitSaveEdges |
- gPrintSetInterface.kInitSaveInColor |
- gPrintSetInterface.kInitSaveResolutionName |
- gPrintSetInterface.kInitSaveDownloadFonts |
- gPrintSetInterface.kInitSavePrintCommand |
- gPrintSetInterface.kInitSaveShrinkToFit |
- gPrintSetInterface.kInitSaveScaling;
- printService.savePrintSettingsToPrefs(gPrintSettings, true, flags);
- }
-
- // set return value to "print"
- if (paramBlock) {
- paramBlock.SetInt(0, 1);
- } else {
- dump("*** FATAL ERROR: No paramBlock\n");
- }
-
- return true;
-}
-
-//---------------------------------------------------
-function onCancel()
-{
- // set return value to "cancel"
- if (paramBlock) {
- paramBlock.SetInt(0, 0);
- } else {
- dump("*** FATAL ERROR: No paramBlock\n");
- }
-
- return true;
-}
-
-//---------------------------------------------------
-const nsIFilePicker = Components.interfaces.nsIFilePicker;
-function chooseFile()
-{
- try {
- var fp = Components.classes["@mozilla.org/filepicker;1"]
- .createInstance(nsIFilePicker);
- fp.init(window, dialog.fpDialog.getAttribute("label"), nsIFilePicker.modeSave);
- fp.appendFilters(nsIFilePicker.filterAll);
- if (fp.show() != Components.interfaces.nsIFilePicker.returnCancel &&
- fp.file && fp.file.path) {
- gPrintSettings.toFileName = fp.file.path;
- return true;
- }
- } catch(ex) {
- dump(ex);
- }
-
- return false;
-}
-
diff --git a/xpfe/global/resources/content/printdialog.xul b/xpfe/global/resources/content/printdialog.xul
deleted file mode 100644
index 0498a8b977a2..000000000000
--- a/xpfe/global/resources/content/printdialog.xul
+++ /dev/null
@@ -1,156 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/selectDialog.js b/xpfe/global/resources/content/selectDialog.js
deleted file mode 100644
index 836710985af7..000000000000
--- a/xpfe/global/resources/content/selectDialog.js
+++ /dev/null
@@ -1,151 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Mozilla Communicator client code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Alec Flett
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-var elements = [];
-var numItems;
-var list;
-var param;
-
-function selectDialogOnLoad() {
- param = window.arguments[0].QueryInterface( Components.interfaces.nsIDialogParamBlock );
- if( !param )
- dump( " error getting param block interface\n" );
-
- var messageText = param.GetString( 1 );
- {
- var messageFragment;
-
- // Let the caller use "\n" to cause breaks
- // Translate these into
tags
- var messageParent = (document.getElementById("info.txt"));
- var done = false;
- while (!done) {
- var breakIndex = messageText.indexOf('\n');
- if (breakIndex == 0) {
- // Ignore break at the first character
- messageText = messageText.slice(1);
- messageFragment = "";
- } else if (breakIndex > 0) {
- // The fragment up to the break
- messageFragment = messageText.slice(0, breakIndex);
-
- // Chop off fragment we just found from remaining string
- messageText = messageText.slice(breakIndex+1);
- } else {
- // "\n" not found. We're done
- done = true;
- messageFragment = messageText;
- }
- messageParent.setAttribute("value", messageFragment);
- }
- }
-
- document.title = param.GetString( 0 );
-
- list = document.getElementById("list");
- numItems = param.GetInt( 2 );
-
- var i;
- for ( i = 2; i <= numItems+1; i++ ) {
- var newString = param.GetString( i );
- if (newString == "") {
- newString = "<>";
- }
- elements[i-2] = AppendStringToListbox(list, newString);
- }
- list.selectItem(elements[0]);
- list.focus();
-
- // resize the window to the content
- window.sizeToContent();
-
- // Move to the right location
- moveToAlertPosition();
- param.SetInt(0, 1 );
- centerWindowOnScreen();
-}
-
-function commonDialogOnOK() {
- for (var i=0; i
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/strres.js b/xpfe/global/resources/content/strres.js
deleted file mode 100644
index 1caa98962965..000000000000
--- a/xpfe/global/resources/content/strres.js
+++ /dev/null
@@ -1,24 +0,0 @@
-var strBundleService = null;
-
-function srGetStrBundle(path)
-{
- var strBundle = null;
-
- if (!strBundleService) {
- try {
- strBundleService =
- Components.classes["@mozilla.org/intl/stringbundle;1"].getService();
- strBundleService =
- strBundleService.QueryInterface(Components.interfaces.nsIStringBundleService);
- } catch (ex) {
- dump("\n--** strBundleService failed: " + ex + "\n");
- return null;
- }
- }
-
- strBundle = strBundleService.createBundle(path);
- if (!strBundle) {
- dump("\n--** strBundle createInstance failed **--\n");
- }
- return strBundle;
-}
diff --git a/xpfe/global/resources/content/unix/Makefile.in b/xpfe/global/resources/content/unix/Makefile.in
deleted file mode 100644
index f56677775d05..000000000000
--- a/xpfe/global/resources/content/unix/Makefile.in
+++ /dev/null
@@ -1,47 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Roland Mainz
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/content/unix/jar.mn b/xpfe/global/resources/content/unix/jar.mn
deleted file mode 100644
index be3a2f397a2e..000000000000
--- a/xpfe/global/resources/content/unix/jar.mn
+++ /dev/null
@@ -1,5 +0,0 @@
-toolkit.jar:
- content/global/platformDialogOverlay.xul
- content/global/platformXUL.css
- content/global/printjoboptions.js
- content/global/printjoboptions.xul
diff --git a/xpfe/global/resources/content/unix/platformDialogOverlay.xul b/xpfe/global/resources/content/unix/platformDialogOverlay.xul
deleted file mode 100644
index 6183972e087a..000000000000
--- a/xpfe/global/resources/content/unix/platformDialogOverlay.xul
+++ /dev/null
@@ -1,87 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/unix/platformXUL.css b/xpfe/global/resources/content/unix/platformXUL.css
deleted file mode 100644
index 2462c34544de..000000000000
--- a/xpfe/global/resources/content/unix/platformXUL.css
+++ /dev/null
@@ -1,4 +0,0 @@
-
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
-
-
diff --git a/xpfe/global/resources/content/unix/printjoboptions.js b/xpfe/global/resources/content/unix/printjoboptions.js
deleted file mode 100644
index cbb7e579df3d..000000000000
--- a/xpfe/global/resources/content/unix/printjoboptions.js
+++ /dev/null
@@ -1,941 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/* ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is Mozilla Communicator client code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Masaki Katakai
- * Roland Mainz
- * Asko Tontti
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-var dialog;
-var gPrintSettings = null;
-var gStringBundle = null;
-var gPrintSettingsInterface = Components.interfaces.nsIPrintSettings;
-var gPaperArray;
-var gPlexArray;
-var gResolutionArray;
-var gColorSpaceArray;
-var gPrefs;
-
-var default_command = "lpr";
-var gPrintSetInterface = Components.interfaces.nsIPrintSettings;
-var doDebug = true;
-
-//---------------------------------------------------
-function checkDouble(element, maxVal)
-{
- var value = element.value;
- if (value && value.length > 0) {
- value = value.replace(/[^\.|^0-9]/g,"");
- if (!value) {
- element.value = "";
- } else {
- if (value > maxVal) {
- element.value = maxVal;
- } else {
- element.value = value;
- }
- }
- }
-}
-
-//---------------------------------------------------
-function isListOfPrinterFeaturesAvailable()
-{
- var has_printerfeatures = false;
-
- try {
- has_printerfeatures = gPrefs.getBoolPref("print.tmp.printerfeatures." + gPrintSettings.printerName + ".has_special_printerfeatures");
- } catch(ex) {
- }
-
- return has_printerfeatures;
-}
-
-//---------------------------------------------------
-function getDoubleStr(val, dec)
-{
- var str = val.toString();
- var inx = str.indexOf(".");
- return str.substring(0, inx+dec+1);
-}
-
-//---------------------------------------------------
-function initDialog()
-{
- dialog = new Object;
-
- dialog.paperList = document.getElementById("paperList");
- dialog.paperGroup = document.getElementById("paperGroup");
-
- dialog.plexList = document.getElementById("plexList");
- dialog.plexGroup = document.getElementById("plexGroup");
-
- dialog.resolutionList = document.getElementById("resolutionList");
- dialog.resolutionGroup = document.getElementById("resolutionGroup");
-
- dialog.jobTitleLabel = document.getElementById("jobTitleLabel");
- dialog.jobTitleGroup = document.getElementById("jobTitleGroup");
- dialog.jobTitleInput = document.getElementById("jobTitleInput");
-
- dialog.cmdLabel = document.getElementById("cmdLabel");
- dialog.cmdGroup = document.getElementById("cmdGroup");
- dialog.cmdInput = document.getElementById("cmdInput");
-
- dialog.colorspaceList = document.getElementById("colorspaceList");
- dialog.colorspaceGroup = document.getElementById("colorspaceGroup");
-
- dialog.colorGroup = document.getElementById("colorGroup");
- dialog.colorRadioGroup = document.getElementById("colorRadioGroup");
- dialog.colorRadio = document.getElementById("colorRadio");
- dialog.grayRadio = document.getElementById("grayRadio");
-
- dialog.fontsGroup = document.getElementById("fontsGroup");
- dialog.downloadFonts = document.getElementById("downloadFonts");
-
- dialog.topInput = document.getElementById("topInput");
- dialog.bottomInput = document.getElementById("bottomInput");
- dialog.leftInput = document.getElementById("leftInput");
- dialog.rightInput = document.getElementById("rightInput");
-}
-
-//---------------------------------------------------
-function round10(val)
-{
- return Math.round(val * 10) / 10;
-}
-
-
-//---------------------------------------------------
-function paperListElement(aPaperListElement)
- {
- this.paperListElement = aPaperListElement;
- }
-
-paperListElement.prototype =
- {
- clearPaperList:
- function ()
- {
- // remove the menupopup node child of the menulist.
- this.paperListElement.removeChild(this.paperListElement.firstChild);
- },
-
- appendPaperNames:
- function (aDataObject)
- {
- var popupNode = document.createElement("menupopup");
- for (var i=0;i -1) {
- selectElement.paperListElement.selectedIndex = selectedInx;
- }
-
- //dialog.paperList = selectElement;
-}
-
-//---------------------------------------------------
-function plexListElement(aPlexListElement)
- {
- this.plexListElement = aPlexListElement;
- }
-
-plexListElement.prototype =
- {
- clearPlexList:
- function ()
- {
- // remove the menupopup node child of the menulist.
- this.plexListElement.removeChild(this.plexListElement.firstChild);
- },
-
- appendPlexNames:
- function (aDataObject)
- {
- var popupNode = document.createElement("menupopup");
- for (var i=0;i -1) {
- selectElement.plexListElement.selectedIndex = selectedInx;
- }
-
- //dialog.plexList = selectElement;
-}
-
-//---------------------------------------------------
-function resolutionListElement(aResolutionListElement)
- {
- this.resolutionListElement = aResolutionListElement;
- }
-
-resolutionListElement.prototype =
- {
- clearResolutionList:
- function ()
- {
- // remove the menupopup node child of the menulist.
- this.resolutionListElement.removeChild(this.resolutionListElement.firstChild);
- },
-
- appendResolutionNames:
- function (aDataObject)
- {
- var popupNode = document.createElement("menupopup");
- for (var i=0;i -1) {
- selectElement.resolutionListElement.selectedIndex = selectedInx;
- }
-
- //dialog.resolutionList = selectElement;
-}
-
-//---------------------------------------------------
-function colorspaceListElement(aColorspaceListElement)
- {
- this.colorspaceListElement = aColorspaceListElement;
- }
-
-colorspaceListElement.prototype =
- {
- clearColorspaceList:
- function ()
- {
- // remove the menupopup node child of the menulist.
- this.colorspaceListElement.removeChild(this.colorspaceListElement.firstChild);
- },
-
- appendColorspaceNames:
- function (aDataObject)
- {
- var popupNode = document.createElement("menupopup");
- for (var i=0;i -1) {
- selectElement.colorspaceListElement.selectedIndex = selectedInx;
- }
-
- //dialog.colorspaceList = selectElement;
-}
-
-//---------------------------------------------------
-function loadDialog()
-{
- var print_paper_type = 0;
- var print_paper_unit = 0;
- var print_paper_width = 0.0;
- var print_paper_height = 0.0;
- var print_paper_name = "";
- var print_plex_name = "";
- var print_resolution_name = "";
- var print_colorspace = "";
- var print_color = true;
- var print_downloadfonts = true;
- var print_command = default_command;
- var print_jobtitle = "";
-
- gPrefs = Components.classes["@mozilla.org/preferences-service;1"].getService(Components.interfaces.nsIPrefBranch);
-
- if (gPrintSettings) {
- print_paper_type = gPrintSettings.paperSizeType;
- print_paper_unit = gPrintSettings.paperSizeUnit;
- print_paper_width = gPrintSettings.paperWidth;
- print_paper_height = gPrintSettings.paperHeight;
- print_paper_name = gPrintSettings.paperName;
- print_plex_name = gPrintSettings.plexName;
- print_resolution_name = gPrintSettings.resolutionName;
- print_colorspace = gPrintSettings.colorspace;
- print_color = gPrintSettings.printInColor;
- print_downloadfonts = gPrintSettings.downloadFonts;
- print_command = gPrintSettings.printCommand;
- print_jobtitle = gPrintSettings.title;
- }
-
- if (doDebug) {
- dump("loadDialog******************************\n");
- dump("paperSizeType "+print_paper_unit+"\n");
- dump("paperWidth "+print_paper_width+"\n");
- dump("paperHeight "+print_paper_height+"\n");
- dump("paperName "+print_paper_name+"\n");
- dump("plexName "+print_plex_name+"\n");
- dump("resolutionName "+print_resolution_name+"\n");
- dump("colorspace "+print_colorspace+"\n");
- dump("print_color "+print_color+"\n");
- dump("print_downloadfonts "+print_downloadfonts+"\n");
- dump("print_command "+print_command+"\n");
- dump("print_jobtitle "+print_jobtitle+"\n");
- }
-
- createPaperArray();
-
- var paperSelectedInx = 0;
- for (var i=0;i
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/win/Makefile.in b/xpfe/global/resources/content/win/Makefile.in
deleted file mode 100644
index 81fb0e454ca0..000000000000
--- a/xpfe/global/resources/content/win/Makefile.in
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/content/win/jar.mn b/xpfe/global/resources/content/win/jar.mn
deleted file mode 100644
index 5539bc755712..000000000000
--- a/xpfe/global/resources/content/win/jar.mn
+++ /dev/null
@@ -1,3 +0,0 @@
-toolkit.jar:
- content/global/platformDialogOverlay.xul
- content/global/platformXUL.css
diff --git a/xpfe/global/resources/content/win/platformDialogOverlay.xul b/xpfe/global/resources/content/win/platformDialogOverlay.xul
deleted file mode 100644
index 8d3a524ddfb1..000000000000
--- a/xpfe/global/resources/content/win/platformDialogOverlay.xul
+++ /dev/null
@@ -1,89 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/win/platformXUL.css b/xpfe/global/resources/content/win/platformXUL.css
deleted file mode 100644
index b398bf5fdee1..000000000000
--- a/xpfe/global/resources/content/win/platformXUL.css
+++ /dev/null
@@ -1,2 +0,0 @@
-
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
diff --git a/xpfe/global/resources/content/wizardHandlerSet.js b/xpfe/global/resources/content/wizardHandlerSet.js
deleted file mode 100644
index 447b3c60c7cb..000000000000
--- a/xpfe/global/resources/content/wizardHandlerSet.js
+++ /dev/null
@@ -1,216 +0,0 @@
-/* -*- Mode: Java; tab-width: 2; c-basic-offset: 2; -*-
- *
- * ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is mozilla.org Code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Ben "Count XULula" Goodger
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-/** class WizardHandlerSet( WidgetStateManager sMgr, WizardManager wMgr ) ;
- * purpose: class for managing wizard navigation functions
- * in: WidgetStateManager sMgr WSM object created by WizardManager
- * WizardManager wMgr WM object created by WizardManager
- * out: nothing.
- **/
-function WizardHandlerSet( sMgr, wMgr )
-{
- // data mambers
- // wizard buttons
- this.backButton = document.getElementById("wiz-back-button");
- this.nextButton = document.getElementById("wiz-next-button");
- this.finishButton = document.getElementById("wiz-finish-button");
- this.cancelButton = document.getElementById("wiz-cancel-button");
- // wizard handlers
- this.nextButtonFunc = null;
- this.backButtonFunc = null;
- this.cancelButtonFunc = null;
- this.finishButtonFunc = null;
- this.pageLoadFunc = null;
- this.enablingFunc = null;
-
- this.SM = sMgr;
- this.WM = wMgr;
-
- // member functions
- this.SetHandlers = WHS_SetHandlers;
-
- // construction (points member functions to right functions)
- this.SetHandlers( this.nextButtonFunc, this.backButtonFunc, this.finishButtonFunc,
- this.cancelButtonFunc, this.pageLoadFunc, this.enablingFunc );
-}
-
-// default handler for next page in page sequence
-function DEF_onNext()
-{
- var oParent = this.WHANDLER;
- if( oParent.nextButton.getAttribute("disabled") == "true" )
- return;
-
- // make sure page is valid!
- if (!oParent.SM.PageIsValid())
- return;
-
- oParent.SM.SavePageData( this.currentPageTag, null, null, null ); // persist data
- if (this.wizardMap[this.currentPageTag]) {
- var nextPageTag = this.wizardMap[this.currentPageTag].next;
- this.LoadPage( nextPageTag, false ); // load the next page
- this.ProgressUpdate( ++this.currentPageNumber );
- } else {
- dump("Error: Missing an entry in the wizard map for " +
- this.currentPageTag + "\n");
- }
-}
-// default handler for previous page in sequence
-function DEF_onBack()
-{
- var oParent = this.WHANDLER;
- if( oParent.backButton.getAttribute("disabled") == "true" )
- return;
- oParent.SM.SavePageData( this.currentPageTag, null, null, null ); // persist data
- previousPageTag = this.wizardMap[this.currentPageTag].previous;
- this.LoadPage( previousPageTag, false ); // load the preivous page
- this.ProgressUpdate( --this.currentPageNumber );
-}
-// default handler for cancelling wizard
-function DEF_onCancel()
-{
- if( top.window.opener )
- window.close();
-}
-// default finish handler
-function DEF_onFinish()
-{
- var oParent = this.WHANDLER;
- if( !this.wizardMap[this.currentPageTag].finish )
- return;
- oParent.SM.SavePageData( this.currentPageTag, null, null, null );
- dump("WizardButtonHandlerSet Warning:\n");
- dump("===============================\n");
- dump("You must provide implementation for onFinish, or else your data will be lost!\n");
-}
-
-// default button enabling ** depends on map, see doc
-function DEF_DoEnabling( nextButton, backButton, finishButton )
-{
- var oParent = this.WHANDLER;
- // make sure we're on a valid page
- if( !this.currentPageTag )
- return;
- // "next" button enabling
- var nextTag = this.wizardMap[this.currentPageTag].next;
- if( nextTag && oParent.nextButton.getAttribute("disabled") ) {
- oParent.nextButton.removeAttribute( "disabled" );
- }
- else if( !nextTag && !oParent.nextButton.getAttribute("disabled") ) {
- oParent.nextButton.setAttribute( "disabled", "true" );
- }
- // "finish" button enabling
- var finishTag = this.wizardMap[this.currentPageTag].finish;
- if( finishTag && oParent.finishButton.getAttribute("disabled") ) {
- oParent.finishButton.removeAttribute( "disabled" );
- }
- else if( !finishTag && !oParent.finishButton.getAttribute("disabled") ) {
- oParent.finishButton.setAttribute( "disabled", "true" );
- }
- // "back" button enabling
- var prevTag = this.wizardMap[this.currentPageTag].previous;
- if( prevTag && oParent.backButton.getAttribute("disabled") ) {
- oParent.backButton.removeAttribute("disabled");
- }
- else if( !prevTag && !oParent.backButton.getAttribute("disabled") ) {
- oParent.backButton.setAttribute("disabled", "true");
- }
-}
-
-/** void PageLoaded( string tag, string frame_id ) ;
- * purpose: perform initial button enabling and call Startup routines.
- * in: string page tag referring to the file name of the current page
- * string frame_id optional supply of page frame, if content_frame is not
- * defined
- * out: nothing.
- **/
-function DEF_onPageLoad( tag )
-{
- var oParent = this.WHANDLER;
- this.currentPageTag = tag;
- if( this.DoButtonEnabling ) // if provided, call user-defined button
- this.DoButtonEnabling(); // enabling function
- if( this.content_frame ) {
- oParent.SM.SetPageData( tag, true ); // set page data in content frame
-
- // set the focus to the first focusable element
- var doc = window.frames[0].document;
- if ("controls" in doc && doc.controls.length > 0) {
- var controls = doc.controls;
- for (var i=0; i< controls.length; i++) {
- if (controls[i].focus) {
- controls[i].focus();
- break; // stop when focus has been set
- }
- }
- }
- }
- else {
- dump("Widget Data Manager Error:\n");
- dump("==========================\n");
- dump("content_frame variable not defined. Please specify one as an argument to Startup();\n");
- return;
- }
-}
-
-/** void SetHandlers( string nextFunc, string backFunc, string finishFunc, string cancelFunc,
- * string pageLoadFunc, string enablingFunc ) ;
- * purpose: allow user to assign button handler function names
- * in: strings referring to the names of the functions for each button
- * out: nothing.
- **/
-function WHS_SetHandlers( nextFunc, backFunc, finishFunc, cancelFunc, pageLoadFunc, enablingFunc )
-{
- // var oParent = this.WHANDLER;
- this.nextButtonFunc = nextFunc ;
- this.backButtonFunc = backFunc ;
- this.cancelButtonFunc = cancelFunc ;
- this.finishButtonFunc = finishFunc ;
- this.pageLoadFunc = pageLoadFunc ;
- this.enablingFunc = enablingFunc ;
-
- // assign handlers to parent object
- // (handler functions are assigned to parent object)
- this.WM.onNext = ( !this.nextButtonFunc ) ? DEF_onNext : nextFunc ;
- this.WM.onBack = ( !this.backButtonFunc ) ? DEF_onBack : backFunc ;
- this.WM.onCancel = ( !this.cancelButtonFunc ) ? DEF_onCancel : cancelFunc ;
- this.WM.onFinish = ( !this.finishButtonFunc ) ? DEF_onFinish : finishFunc ;
- this.WM.onPageLoad = ( !this.pageLoadFunc ) ? DEF_onPageLoad : pageLoadFunc ;
- this.WM.DoButtonEnabling = ( !this.enablingFunc ) ? DEF_DoEnabling : enablingFunc ;
-}
diff --git a/xpfe/global/resources/content/wizardManager.js b/xpfe/global/resources/content/wizardManager.js
deleted file mode 100644
index 367af6cc27e3..000000000000
--- a/xpfe/global/resources/content/wizardManager.js
+++ /dev/null
@@ -1,189 +0,0 @@
-/* -*- Mode: Java; tab-width: 4; c-basic-offset: 4; -*-
- *
- * ***** BEGIN LICENSE BLOCK *****
- * Version: MPL 1.1/GPL 2.0/LGPL 2.1
- *
- * The contents of this file are subject to the Mozilla Public License Version
- * 1.1 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- * http://www.mozilla.org/MPL/
- *
- * Software distributed under the License is distributed on an "AS IS" basis,
- * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
- * for the specific language governing rights and limitations under the
- * License.
- *
- * The Original Code is mozilla.org Code.
- *
- * The Initial Developer of the Original Code is
- * Netscape Communications Corporation.
- * Portions created by the Initial Developer are Copyright (C) 1998
- * the Initial Developer. All Rights Reserved.
- *
- * Contributor(s):
- * Ben "Count XULula" Goodger
- *
- * Alternatively, the contents of this file may be used under the terms of
- * either of the GNU General Public License Version 2 or later (the "GPL"),
- * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
- * in which case the provisions of the GPL or the LGPL are applicable instead
- * of those above. If you wish to allow use of your version of this file only
- * under the terms of either the GPL or the LGPL, and not to allow others to
- * use your version of this file under the terms of the MPL, indicate your
- * decision by deleting the provisions above and replace them with the notice
- * and other provisions required by the GPL or the LGPL. If you do not delete
- * the provisions above, a recipient may use your version of this file under
- * the terms of any one of the MPL, the GPL or the LGPL.
- *
- * ***** END LICENSE BLOCK ***** */
-
-/** class WizardManager( string frame_id, string tagURLPrefix,
- * string tagURLPostfix, object wizardMap ) ;
- * purpose: class for managing the state of a generic wizard
- * in: string frame_id content frame id/name
- * string tagURLPrefix prefix root of wizard pages
- * string tagURLPostfix extension suffix of wizard pages (e.g. ".xul")
- * object wizardMap navigation map object
- * out: nothing.
- **/
-function WizardManager( frame_id, tagURLPrefix, tagURLPostfix, wizardMap )
-{
- // current page
- this.currentPageTag = null;
- // data grid of navigable pages
- this.wizardMap = ( wizardMap ) ? wizardMap : null;
- // current page
- this.currentPageNumber = 0;
- // flag to signify no page-change occurred.
- this.firstTime = true; // was false, let's see what this does. o_O
- // frame which holds data
- this.content_frame = document.getElementById( frame_id );
- // wizard state manager
- this.WSM = new WidgetStateManager( frame_id );
- // wizard button handler set
- this.WHANDLER = new WizardHandlerSet( this.WSM, this );
-
- // url handling
- this.URL_PagePrefix = ( tagURLPrefix ) ? tagURLPrefix : null;
- this.URL_PagePostfix = ( tagURLPostfix ) ? tagURLPrefix : null;
-
- // string bundle
- this.bundle = srGetStrBundle("chrome://global/locale/wizardManager.properties");
-
- this.LoadPage = WM_LoadPage;
- this.GetURLFromTag = WM_GetURLFromTag;
- this.GetTagFromURL = WM_GetTagFromURL;
- this.SetHandlers = WM_SetHandlers;
- this.SetPageData = WM_SetPageData;
- this.SavePageData = WM_SavePageData;
- this.ProgressUpdate = WM_ProgressUpdate;
- this.GetMapLength = WM_GetMapLength;
-
- // set up handlers from wizard overlay
- // #include chrome://global/content/wizardOverlay.js
- doSetWizardButtons( this );
-}
-
-/** void LoadPage( string page ) ;
- * purpose: loads a page into the content frame
- * in: string page tag referring to the complete file name of the current page
- * string frame_id optional supply of page frame, if content_frame is not
- * defined
- * out: boolean success indicator.
- **/
-function WM_LoadPage( pageURL, absolute )
-{
- if( pageURL != "" )
- {
- if ( this.firstTime && !absolute )
- this.ProgressUpdate( this.currentPageNumber );
-
- // 1.1: REMOVED to fix no-field-page-JS error bug. reintroduce if needed.
- // if ( !this.firstTime )
- // this.WSM.SavePageData( this.content_frame );
-
- // build a url from a tag, or use an absolute url
- if( !absolute ) {
- var src = this.GetURLFromTag( pageURL );
- } else {
- src = pageURL;
- }
- if( this.content_frame )
- this.content_frame.setAttribute("src", src);
- else
- return false;
-
- this.firstTime = false;
- return true;
- }
- return false;
-}
-/** string GetUrlFromTag( string tag ) ;
- * - purpose: creates a complete URL based on a tag.
- * - in: string tag representing the specific page to be loaded
- * - out: string url representing the complete location of the page.
- **/
-function WM_GetURLFromTag( tag )
-{
- return this.URL_PagePrefix + tag + this.URL_PagePostfix;
-}
-/** string GetTagFromURL( string tag ) ;
- * - purpose: fetches a tag from a URL
- * - in: string url representing the complete location of the page.
- * - out: string tag representing the specific page to be loaded
- **/
-function WM_GetTagFromURL( url )
-{
- return url.substring(this.URL_PagePrefix.length, this.URL_PagePostfix.length);
-}
-
-// SetHandlers pass-through for setting wizard button handlers easily
-function WM_SetHandlers( onNext, onBack, onFinish, onCancel, onPageLoad, enablingFunc )
-{
- this.WHANDLER.SetHandlers( onNext, onBack, onFinish, onCancel, onPageLoad, enablingFunc );
-}
-// SetPageData pass-through
-function WM_SetPageData()
-{
- this.WSM.SetPageData();
-}
-// SavePageData pass-through
-function WM_SavePageData()
-{
- this.WSM.SavePageData();
-}
-
-/** int GetMapLength()
- * - purpose: returns the number of pages in the wizardMap
- * - in: nothing
- * - out: integer number of pages in wizardMap
- **/
-function WM_GetMapLength()
-{
- var count = 0;
- for ( i in this.wizardMap )
- count++;
- return count;
-}
-
-/** void ProgressUpdate ( int currentPageNumber );
- * - purpose: updates the "page x of y" display if available
- * - in: integer representing current page number.
- * - out: nothing
- **/
-function WM_ProgressUpdate( currentPageNumber )
-{
- var statusbar = document.getElementById ( "status" );
- if ( statusbar ) {
- var string;
- try {
- string = this.bundle.formatStringFromName("oflabel",
- [currentPageNumber+1,
- this.GetMapLength()], 2);
- } catch (e) {
- string = "";
- }
- statusbar.setAttribute( "progress", string );
- }
-}
-
diff --git a/xpfe/global/resources/content/wizardOverlay.js b/xpfe/global/resources/content/wizardOverlay.js
deleted file mode 100644
index 576ebb906cfa..000000000000
--- a/xpfe/global/resources/content/wizardOverlay.js
+++ /dev/null
@@ -1,69 +0,0 @@
-/**
- * Wizard button controllers.
- * - Note:
- * - less infrastructure is provided here than for dialog buttons, as
- * - closing is not automatically desirable for many wizards (e.g. profile
- * - creation) where proper application shutdown is required. thus these
- * - functions simply pass this responsibility on to the wizard designer.
- * -
- * - Use: Include this JS file in your wizard XUL and the accompanying
- * - wizardOverlay.xul file as an overlay. Then set the overlay handlers
- * - with doSetWizardButtons(). It is recommended you use this overlay
- * - with the WizardManager wizard infrastructure. If you do that, you
- * - don't need to do anything here. Otherwise, use doSetWizardButtons()
- * - with false or null passed in as the first parameter, and the names
- * - of your functions passed in as the remaining parameters, see below.
- * -
- * - Ben Goodger (04/11/99)
- **/
-
-var doNextFunction = null;
-var doBackFunction = null;
-var doFinishFunction = null;
-var doCancelFunction = null;
-
-// call this from dialog onload() to allow buttons to call your code.
-function doSetWizardButtons( wizardManager, nextFunc, backFunc, finishFunc, cancelFunc )
-{
- if(wizardManager) {
- doNextFunction = wizardManager.onNext;
- doBackFunction = wizardManager.onBack;
- doFinishFunction = wizardManager.onFinish;
- doCancelFunction = wizardManager.onCancel;
- } else {
- doNextFunction = nextFunc;
- doBackFunction = backFunc;
- doFinishFunction = finishFunc;
- doCancelFunction = cancelFunc;
- }
-}
-
-// calls function specified for "next" button click.
-function doNextButton()
-{
- if ( doNextFunction )
- doNextFunction();
-}
-
-// calls function specified for "back" button click.
-function doBackButton()
-{
- if ( doBackFunction )
- doBackFunction();
-}
-
-// calls function specified for "finish" button click.
-function doFinishButton()
-{
- if ( doFinishFunction )
- doFinishFunction();
-}
-
-// calls function specified for "cancel" button click.
-function doCancelButton()
-{
- if ( doCancelFunction )
- doCancelFunction();
-}
-
-
diff --git a/xpfe/global/resources/content/wizardOverlay.xul b/xpfe/global/resources/content/wizardOverlay.xul
deleted file mode 100644
index 581210c69924..000000000000
--- a/xpfe/global/resources/content/wizardOverlay.xul
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/content/xul.css b/xpfe/global/resources/content/xul.css
deleted file mode 100644
index 447e41e43666..000000000000
--- a/xpfe/global/resources/content/xul.css
+++ /dev/null
@@ -1,901 +0,0 @@
-/** this should only contain XUL dialog and document window widget defaults. Defaults for widgets of
- a particular application should be in that application's style sheet.
- For example style definitions for navigator can be found in navigator.css
-
- THIS FILE IS LOCKED DOWN. YOU ARE NOT ALLOWED TO MODIFY IT WITHOUT FIRST HAVING YOUR
- CHANGES REVIEWED BY mconnor@steelgryphon.com
-**/
-
-@import url("chrome://global/content/platformXUL.css");
-
-@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
-@namespace html url("http://www.w3.org/1999/xhtml"); /* namespace for HTML elements */
-@namespace xbl url("http://www.mozilla.org/xbl"); /* namespace for XBL elements */
-
-* {
- -moz-user-focus: ignore;
- -moz-user-select: -moz-none;
- display: -moz-box;
-}
-
-/* hide the content and destroy the frame */
-*[hidden="true"] {
- display: none;
-}
-
-/* hide the content, but don't destroy the frames */
-*[collapsed="true"],
-*[moz-collapsed="true"] {
- visibility: collapse;
-}
-
-
-/* ::::::::::
- :: Rules for 'hiding' portions of the chrome for special
- :: kinds of windows (not JUST browser windows) with toolbars
- ::::: */
-
-window[chromehidden~="menubar"] .chromeclass-menubar,
-window[chromehidden~="directories"] .chromeclass-directories,
-window[chromehidden~="status"] .chromeclass-status,
-window[chromehidden~="extrachrome"] .chromeclass-extrachrome,
-window[chromehidden~="location"] .chromeclass-location,
-window[chromehidden~="location"][chromehidden~="toolbar"] .chromeclass-toolbar
-{
- display: none;
-}
-
-
-/* ::::::::::
- :: Rules for forcing direction for entry and display of URIs
- :: or URI elements
- ::::: */
-
-textbox.uri-element,
-menulist.uri-element
-{
- direction: ltr !important;
-}
-
-
-/****** elements that have no visual representation ******/
-
-script, data,
-xbl|children,
-commands, commandset, command,
-broadcasterset, broadcaster, observes,
-keyset, key,
-template, rule, conditions, action,
-bindings, binding, content, member, triple,
-treechildren, treeitem, treeseparator, treerow, treecell {
- display: none;
-}
-
-/********** focus rules **********/
-
-button,
-checkbox,
-colorpicker[type="button"],
-datepicker[type="grid"],
-menulist,
-radiogroup,
-tree,
-browser,
-editor,
-iframe {
- -moz-user-focus: normal;
-}
-
-menulist[editable="true"] {
- -moz-user-focus: ignore;
-}
-
-/******** window & page ******/
-
-window,
-page {
- overflow: -moz-hidden-unscrollable;
- -moz-box-orient: vertical;
-}
-
-/******** box *******/
-
-vbox {
- -moz-box-orient: vertical;
-}
-
-/********** button **********/
-
-button {
- -moz-binding: url("chrome://global/content/bindings/button.xml#button");
-}
-
-button[type="repeat"] {
- -moz-binding: url("chrome://global/content/bindings/button.xml#button-repeat");
-}
-
-button[type="menu"] {
- -moz-binding: url("chrome://global/content/bindings/button.xml#menu");
-}
-
-button[type="menu-button"] {
- -moz-binding: url("chrome://global/content/bindings/button.xml#menu-button");
-}
-
-/********** toolbarbutton **********/
-
-toolbarbutton {
- -moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#toolbarbutton");
-}
-
-toolbarbutton[type="menu"] {
- -moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#menu");
-}
-
-toolbarbutton[type="menu-button"] {
- -moz-binding: url("chrome://global/content/bindings/toolbarbutton.xml#menu-button");
-}
-
-/******** browser, editor, iframe ********/
-
-browser,
-editor,
-iframe {
- display: inline;
-}
-
-browser {
- -moz-binding: url("chrome://global/content/bindings/browser.xml#browser");
-}
-
-tabbrowser {
- -moz-binding: url("chrome://global/content/bindings/tabbrowser.xml#tabbrowser");
-}
-
-editor {
- -moz-binding: url("chrome://global/content/bindings/editor.xml#editor");
-}
-
-iframe {
- -moz-binding: url("chrome://global/content/bindings/general.xml#iframe");
-}
-
-/********** image **********/
-
-image {
- -moz-binding: url("chrome://global/content/bindings/general.xml#image");
-}
-
-/********** checkbox **********/
-
-checkbox {
- -moz-binding: url("chrome://global/content/bindings/checkbox.xml#checkbox");
-}
-
-/********** radio **********/
-
-radiogroup {
- -moz-binding: url("chrome://global/content/bindings/radio.xml#radiogroup");
- -moz-box-orient: vertical;
- -moz-box-align: start;
-}
-
-radio {
- -moz-binding: url("chrome://global/content/bindings/radio.xml#radio");
-}
-
-/******** groupbox *********/
-
-groupbox {
- -moz-binding: url("chrome://global/content/bindings/groupbox.xml#groupbox");
- display: -moz-groupbox;
-}
-
-caption {
- -moz-binding: url("chrome://global/content/bindings/groupbox.xml#caption");
-}
-
-.groupbox-body {
- -moz-box-pack: inherit;
- -moz-box-align: inherit;
- -moz-box-orient: vertical;
-}
-
-/******* toolbar *******/
-
-toolbox {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbox");
- -moz-box-orient: vertical;
-}
-
-toolbar {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbar");
-}
-
-toolbarseparator {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbardecoration");
-}
-
-toolbarspacer {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbardecoration");
-}
-
-toolbarspring {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbardecoration");
- -moz-box-flex: 1000;
-}
-
-toolbarpaletteitem {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbarpaletteitem");
-}
-
-toolbarpaletteitem[place="palette"] {
- -moz-box-orient: vertical;
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#toolbarpaletteitem-palette");
-}
-
-/********* menubar ***********/
-
-menubar {
- -moz-binding: url("chrome://global/content/bindings/toolbar.xml#menubar");
-}
-
-/********* menu ***********/
-
-menubar > menu {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menu-menubar");
-}
-
-menubar > menu.menu-iconic {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menu-menubar-iconic");
-}
-
-menu {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menu");
-}
-
-menu.menu-iconic {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menu-iconic");
-}
-
-menu:empty {
- visibility: collapse;
-}
-
-/********* menuitem ***********/
-
-menuitem {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem");
-}
-
-menuitem.menuitem-iconic {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic");
-}
-
-menuitem[description] {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic-desc-noaccel");
-}
-
-menuitem[type="checkbox"],
-menuitem[type="radio"] {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic");
-}
-
-menuitem.menuitem-non-iconic {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menubutton-item");
-}
-
-/********* menuseparator ***********/
-
-menuseparator {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menuseparator");
-}
-
-/********* popup & menupopup ***********/
-
-/* is deprecated. Only and are still valid. */
-
-popup,
-menupopup,
-panel {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#popup");
- -moz-box-orient: vertical;
-}
-
-popup,
-menupopup,
-panel,
-tooltip {
- display: -moz-popup;
- z-index: 2147483647;
-}
-
-tooltip {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#tooltip");
- margin-top: 21px;
-}
-
-/********** floating popups **********/
-
-/*
-titlebar {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#titlebar");
-}
-
-resizer[resizerdirection="right"] {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#ew-resizer");
-}
-
-resizer[resizerdirection="bottom"] {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#ns-resizer");
-}
-
-resizer[resizerdirection="bottomright"] {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#diag-resizer");
-}
-
-floatingwindow {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#floater-normal");
- -moz-box-orient: vertical;
- display: none;
- z-index: 2147483647;
-}
-
-floatingwindow[docked="left"] {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#floater-dock-left");
-}
-
-button.popupClose {
- -moz-binding: url("chrome://global/content/bindings/popup.xml#close-button") !important;
-}
-*/
-/******** grid **********/
-
-grid {
- display: -moz-grid;
-}
-
-rows,
-columns {
- display: -moz-grid-group;
-}
-
-row,
-column {
- display: -moz-grid-line;
-}
-
-rows {
- -moz-box-orient: vertical;
-}
-
-column {
- -moz-box-orient: vertical;
-}
-
-/******** listbox **********/
-
-listbox {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listbox");
-}
-
-listcols, listcol {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listbox-base");
-}
-
-listhead {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listhead");
-}
-
-listrows {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listrows");
-}
-
-listitem {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem");
-}
-
-listitem[type="checkbox"] {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem-checkbox");
-}
-
-listheader {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listheader");
- -moz-box-ordinal-group: 2147483646;
-}
-
-listcell {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell");
-}
-
-listcell[type="checkbox"] {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell-checkbox");
-}
-
-.listitem-iconic {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem-iconic");
-}
-
-listitem[type="checkbox"].listitem-iconic {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listitem-checkbox-iconic");
-}
-
-.listcell-iconic {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell-iconic");
-}
-
-listcell[type="checkbox"].listcell-iconic {
- -moz-binding: url("chrome://global/content/bindings/listbox.xml#listcell-checkbox-iconic");
-}
-
-listbox {
- display: -moz-grid;
-}
-
-listbox[rows] {
- height: auto;
-}
-
-listcols, listhead, listrows, listboxbody {
- display: -moz-grid-group;
-}
-
-listcol, listitem, listheaditem {
- display: -moz-grid-line;
-}
-
-listbox {
- -moz-user-focus: normal;
- -moz-box-orient: vertical;
- min-width: 0px;
- min-height: 0px;
- width: 200px;
- height: 200px;
-}
-
-listhead {
- -moz-box-orient: vertical;
-}
-
-listrows {
- -moz-box-orient: vertical;
- -moz-box-flex: 1;
-}
-
-listboxbody {
- -moz-box-orient: vertical;
- -moz-box-flex: 1;
- /* Don't permit a horizontal scrollbar. See bug 285449 */
- overflow-x: hidden !important;
- overflow-y: auto;
- min-height: 0px;
-}
-
-listcol {
- -moz-box-orient: vertical;
- min-width: 16px;
-}
-
-listcell {
- -moz-box-align: center;
-}
-
-/******** tree ******/
-
-tree {
- -moz-binding: url("chrome://global/content/bindings/tree.xml#tree");
-}
-
-treecols {
- -moz-binding: url("chrome://global/content/bindings/tree.xml#treecols");
-}
-
-treecol {
- -moz-binding: url("chrome://global/content/bindings/tree.xml#treecol");
- -moz-box-ordinal-group: 2147483646;
-}
-
-treecol.treecol-image {
- -moz-binding: url("chrome://global/content/bindings/tree.xml#treecol-image");
-}
-
-tree > treechildren {
- display: -moz-box;
- -moz-binding: url("chrome://global/content/bindings/tree.xml#treebody");
- -moz-user-select: none;
- -moz-box-flex: 1;
-}
-
-treerows {
- -moz-binding: url("chrome://global/content/bindings/tree.xml#treerows");
-}
-
-treecolpicker {
- -moz-binding: url("chrome://global/content/bindings/tree.xml#columnpicker");
-}
-
-tree {
- -moz-box-orient: vertical;
- min-width: 0px;
- min-height: 0px;
- width: 10px;
- height: 10px;
-}
-
-tree[hidecolumnpicker="true"] > treecols > treecolpicker {
- display: none;
-}
-
-treecol {
- min-width: 16px;
-}
-
-treecol[hidden="true"] {
- visibility: collapse;
- display: -moz-box;
-}
-
-.tree-scrollable-columns {
- /* Yes, Virginia, this makes it scrollable */
- overflow: hidden;
-}
-
-/********** deck & stack *********/
-
-deck {
- display: -moz-deck;
- -moz-binding: url("chrome://global/content/bindings/general.xml#deck");
-}
-
-stack, bulletinboard {
- display: -moz-stack;
-}
-
-/********** tabbox *********/
-
-tabbox {
- -moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabbox");
- -moz-box-orient: vertical;
-}
-
-tabs {
- -moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabs");
- -moz-box-orient: horizontal;
-}
-
-tabs[closebutton="true"] {
- -moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabs-closebutton");
-}
-
-tab {
- -moz-binding: url("chrome://global/content/bindings/tabbox.xml#tab");
- -moz-box-align: center;
- -moz-box-pack: center;
-}
-
-tabpanels {
- -moz-binding: url("chrome://global/content/bindings/tabbox.xml#tabpanels");
- display: -moz-deck;
-}
-
-/********** progressmeter **********/
-
-progressmeter {
- -moz-binding: url("chrome://global/content/bindings/progressmeter.xml#progressmeter");
-}
-
-/********** basic rule for anonymous content that needs to pass box properties through
- ********** to an insertion point parent that holds the real kids **************/
-
- .box-inherit {
- -moz-box-orient: inherit;
- -moz-box-pack: inherit;
- -moz-box-align: inherit;
- -moz-box-direction: inherit;
-}
-
-/********** label **********/
-
-description {
- -moz-binding: url("chrome://global/content/bindings/text.xml#text-base");
-}
-
-label {
- -moz-binding: url("chrome://global/content/bindings/text.xml#text-label");
-}
-
-label.text-link {
- -moz-binding: url("chrome://global/content/bindings/text.xml#text-link");
- -moz-user-focus: normal;
-}
-
-label[control], label.radio-label, label.checkbox-label {
- -moz-binding: url("chrome://global/content/bindings/text.xml#label-control");
-}
-
-html|span.accesskey {
- text-decoration: underline;
-}
-
-/********** textbox **********/
-
-textbox {
- -moz-binding: url("chrome://global/content/bindings/textbox.xml#textbox");
- -moz-user-select: text;
-}
-
-textbox[multiline="true"] {
- -moz-binding: url("chrome://global/content/bindings/textbox.xml#textarea");
-}
-
-html|*.textbox-input {
- -moz-appearance: none !important;
- text-align: inherit;
-}
-
-html|*.textbox-textarea {
- -moz-appearance: none !important;
-}
-
-.textbox-input-box {
- -moz-binding: url("chrome://global/content/bindings/textbox.xml#input-box");
-}
-
-textbox[type="timed"] {
- -moz-binding: url("chrome://global/content/bindings/textbox.xml#timed-textbox");
-}
-
-textbox[type="number"] {
- -moz-binding: url("chrome://global/content/bindings/numberbox.xml#numberbox");
-}
-
-/********** autocomplete textbox **********/
-
-textbox[type="autocomplete"] {
- -moz-binding: url("chrome://global/content/autocomplete.xml#autocomplete");
-}
-
-panel[type="autocomplete"] {
- -moz-binding: url("chrome://global/content/autocomplete.xml#autocomplete-result-popup");
-}
-
-.autocomplete-history-popup {
- -moz-binding: url("chrome://global/content/autocomplete.xml#autocomplete-history-popup");
-}
-
-.autocomplete-treebody {
- -moz-binding: url("chrome://global/content/autocomplete.xml#autocomplete-treebody");
-}
-
-.autocomplete-history-dropmarker {
- -moz-binding: url("chrome://global/content/autocomplete.xml#history-dropmarker");
-}
-
-/********** colorpicker **********/
-
-colorpicker {
- -moz-binding: url("chrome://global/content/bindings/colorpicker.xml#colorpicker");
-}
-
-colorpicker[type="button"] {
- -moz-binding: url("chrome://global/content/bindings/colorpicker.xml#colorpicker-button");
-}
-
-.colorpickertile {
- -moz-binding: url("chrome://global/content/bindings/colorpicker.xml#colorpickertile");
-}
-
-/********** menulist **********/
-
-menulist {
- -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist");
-}
-
-menulist[editable="true"] {
- -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-editable");
-}
-
-menulist[type="description"] {
- -moz-binding: url("chrome://global/content/bindings/menulist.xml#menulist-description");
-}
-
-html|*.menulist-editable-input {
- -moz-appearance: none !important;
-}
-
-menulist > menupopup > menuitem {
- -moz-binding: url("chrome://global/content/bindings/menu.xml#menuitem-iconic-noaccel");
-}
-
-dropmarker {
- -moz-binding: url("chrome://global/content/bindings/general.xml#dropmarker");
-}
-
-/********** splitter **********/
-
-splitter {
- -moz-binding: url("chrome://global/content/bindings/splitter.xml#splitter");
-}
-
-grippy {
- -moz-binding: url("chrome://global/content/bindings/splitter.xml#grippy");
-}
-
-.tree-splitter {
- width: 0px;
- max-width: 0px;
- min-width: 0% ! important;
- min-height: 0% ! important;
- -moz-box-ordinal-group: 2147483646;
-}
-
-/********** scrollbar **********/
-
-/* Scrollbars are never flipped even if BiDI kicks in. */
-scrollbar {
- direction: ltr;
-}
-
-thumb {
- -moz-binding: url(chrome://global/content/bindings/scrollbar.xml#thumb);
- display: -moz-box !important;
-}
-
-.scale-thumb {
- -moz-binding: url(chrome://global/content/bindings/scale.xml#scalethumb);
-}
-
-scrollbar, scrollbarbutton, scrollcorner, slider, thumb, scale {
- -moz-user-select: none;
-}
-
-scrollcorner {
- display: -moz-box !important;
-}
-
-scrollcorner[hidden="true"] {
- display: none !important;
-}
-
-scrollbar[value="hidden"] {
- visibility: hidden;
-}
-
-scale {
- -moz-binding: url(chrome://global/content/bindings/scale.xml#scale);
-}
-
-.scale-slider {
- -moz-binding: url(chrome://global/content/bindings/scale.xml#scaleslider);
- -moz-user-focus: normal;
-}
-
-scrollbarbutton[sbattr="scrollbar-up-top"]:not(:-moz-system-metric(scrollbar-start-backward)),
-scrollbarbutton[sbattr="scrollbar-down-top"]:not(:-moz-system-metric(scrollbar-start-forward)),
-scrollbarbutton[sbattr="scrollbar-up-bottom"]:not(:-moz-system-metric(scrollbar-end-backward)),
-scrollbarbutton[sbattr="scrollbar-down-bottom"]:not(:-moz-system-metric(scrollbar-end-forward)) {
- display: none;
-}
-
-thumb[sbattr="scrollbar-thumb"]:-moz-system-metric(scrollbar-thumb-proportional) {
- -moz-box-flex: 1;
-}
-
-/******** scrollbox ********/
-
-scrollbox {
- -moz-binding: url("chrome://global/content/bindings/scrollbox.xml#scrollbox");
- /* This makes it scrollable! */
- overflow: hidden;
-}
-
-arrowscrollbox {
- -moz-binding: url("chrome://global/content/bindings/scrollbox.xml#arrowscrollbox");
-}
-
-autorepeatbutton {
- -moz-binding: url("chrome://global/content/bindings/scrollbox.xml#autorepeatbutton");
-}
-
-/********** statusbar **********/
-
-statusbar
-{
- -moz-binding: url("chrome://global/content/bindings/general.xml#statusbar");
-}
-
-statusbarpanel {
- -moz-binding: url("chrome://global/content/bindings/general.xml#statusbarpanel");
-}
-
-.statusbarpanel-iconic {
- -moz-binding: url("chrome://global/content/bindings/general.xml#statusbarpanel-iconic");
-}
-
-.statusbarpanel-iconic-text {
- -moz-binding: url("chrome://global/content/bindings/general.xml#statusbarpanel-iconic-text");
-}
-
-.statusbarpanel-menu-iconic {
- -moz-binding: url("chrome://global/content/bindings/general.xml#statusbarpanel-menu-iconic");
-}
-
-/********** spinbuttons ***********/
-
-spinbuttons {
- -moz-binding: url("chrome://global/content/bindings/spinbuttons.xml#spinbuttons");
-}
-
-.spinbuttons-button {
- -moz-user-focus: ignore;
-}
-
-/********** stringbundle **********/
-
-stringbundleset {
- -moz-binding: url("chrome://global/content/bindings/stringbundle.xml#stringbundleset");
- visibility: collapse;
-}
-
-stringbundle {
- -moz-binding: url("chrome://global/content/bindings/stringbundle.xml#stringbundle");
- visibility: collapse;
-}
-
-/********** dialog **********/
-
-dialog {
- -moz-binding: url("chrome://global/content/bindings/dialog.xml#dialog");
- -moz-box-orient: vertical;
-}
-
-dialogheader {
- -moz-binding: url("chrome://global/content/bindings/dialog.xml#dialogheader");
-}
-
-/********* page ************/
-
-page {
- -moz-box-orient: vertical;
-}
-
-/********** wizard **********/
-
-wizard {
- -moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard");
- -moz-box-orient: vertical;
- width: 40em;
- height: 30em;
-}
-
-wizardpage {
- -moz-binding: url("chrome://global/content/bindings/wizard.xml#wizardpage");
- -moz-box-orient: vertical;
- overflow: auto;
-}
-
-.wizard-header {
- -moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard-header");
-}
-
-.wizard-buttons {
- -moz-binding: url("chrome://global/content/bindings/wizard.xml#wizard-buttons");
-}
-
-/********** datepicker and timepicker ********/
-
-datepicker {
- -moz-binding: url('chrome://global/content/bindings/datetimepicker.xml#datepicker');
-}
-
-datepicker[type="popup"] {
- -moz-binding: url('chrome://global/content/bindings/datetimepicker.xml#datepicker-popup');
-}
-
-datepicker[type="grid"] {
- -moz-binding: url('chrome://global/content/bindings/datetimepicker.xml#datepicker-grid');
-}
-
-timepicker {
- -moz-binding: url('chrome://global/content/bindings/datetimepicker.xml#timepicker');
-}
diff --git a/xpfe/global/resources/locale/Makefile.in b/xpfe/global/resources/locale/Makefile.in
deleted file mode 100644
index db37d1e034f7..000000000000
--- a/xpfe/global/resources/locale/Makefile.in
+++ /dev/null
@@ -1,48 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-DIRS = en-US
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/locale/en-US/Makefile.in b/xpfe/global/resources/locale/en-US/Makefile.in
deleted file mode 100644
index 81fb0e454ca0..000000000000
--- a/xpfe/global/resources/locale/en-US/Makefile.in
+++ /dev/null
@@ -1,46 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/locale/en-US/about.dtd b/xpfe/global/resources/locale/en-US/about.dtd
deleted file mode 100644
index 74365f60c7d1..000000000000
--- a/xpfe/global/resources/locale/en-US/about.dtd
+++ /dev/null
@@ -1,3 +0,0 @@
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/brand.dtd b/xpfe/global/resources/locale/en-US/brand.dtd
deleted file mode 100644
index f7fbf31634d2..000000000000
--- a/xpfe/global/resources/locale/en-US/brand.dtd
+++ /dev/null
@@ -1,2 +0,0 @@
-
-%realBrandDTD;
diff --git a/xpfe/global/resources/locale/en-US/charsetOverlay.dtd b/xpfe/global/resources/locale/en-US/charsetOverlay.dtd
deleted file mode 100644
index 71c64a78d739..000000000000
--- a/xpfe/global/resources/locale/en-US/charsetOverlay.dtd
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/commonDialog.dtd b/xpfe/global/resources/locale/en-US/commonDialog.dtd
deleted file mode 100644
index 7501f0c69bd9..000000000000
--- a/xpfe/global/resources/locale/en-US/commonDialog.dtd
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/xpfe/global/resources/locale/en-US/commonDialogs.properties b/xpfe/global/resources/locale/en-US/commonDialogs.properties
deleted file mode 100644
index 53aad65369b0..000000000000
--- a/xpfe/global/resources/locale/en-US/commonDialogs.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-Alert=Alert
-Confirm=Confirm
-ConfirmCheck=Confirm
-Prompt=Prompt
-PromptUsernameAndPassword2=Authentication Required
-PromptPassword2=Password Required
-Select=Select
-OK=OK
-Cancel=Cancel
-Yes=&Yes
-No=&No
-Save=&Save
-Revert=&Revert
-DontSave=&Don't Save
-ScriptDlgGenericHeading=[JavaScript Application]
-ScriptDlgHeading=The page at %S says:
diff --git a/xpfe/global/resources/locale/en-US/config.dtd b/xpfe/global/resources/locale/en-US/config.dtd
deleted file mode 100644
index 62e5015521e3..000000000000
--- a/xpfe/global/resources/locale/en-US/config.dtd
+++ /dev/null
@@ -1,82 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/config.properties b/xpfe/global/resources/locale/en-US/config.properties
deleted file mode 100644
index 734ce039091c..000000000000
--- a/xpfe/global/resources/locale/en-US/config.properties
+++ /dev/null
@@ -1,55 +0,0 @@
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is about:config.
-#
-# The Initial Developer of the Original Code is
-# Neil Rashbrook.
-# Portions created by the Initial Developer are Copyright (C) 2003
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-# Neil Rashbrook
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 2 or later (the "GPL"), or
-# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-# Lock column values
-default=default
-user=user set
-locked=locked
-
-# Type column values
-string=string
-int=integer
-bool=boolean
-
-# Preference prompts
-# %S is replaced by one of the type column values above
-new_title=New %S value
-new_prompt=Enter the preference name
-modify_title=Enter %S value
-
-nan_title=Invalid value
-nan_text=The text you entered is not a number.
diff --git a/xpfe/global/resources/locale/en-US/contents-region.rdf b/xpfe/global/resources/locale/en-US/contents-region.rdf
deleted file mode 100644
index 7c7ff5ec95f5..000000000000
--- a/xpfe/global/resources/locale/en-US/contents-region.rdf
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/contents.rdf b/xpfe/global/resources/locale/en-US/contents.rdf
deleted file mode 100644
index c653e1c4b694..000000000000
--- a/xpfe/global/resources/locale/en-US/contents.rdf
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/dialog.properties b/xpfe/global/resources/locale/en-US/dialog.properties
deleted file mode 100644
index 12861c2f24ab..000000000000
--- a/xpfe/global/resources/locale/en-US/dialog.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-button-accept=OK
-button-cancel=Cancel
-button-help=Help
-button-disclosure=More Info
-accesskey-accept=
-accesskey-cancel=
-accesskey-help=H
-accesskey-disclosure=I
diff --git a/xpfe/global/resources/locale/en-US/dialogOverlay.dtd b/xpfe/global/resources/locale/en-US/dialogOverlay.dtd
deleted file mode 100644
index 3e2d3f79eb34..000000000000
--- a/xpfe/global/resources/locale/en-US/dialogOverlay.dtd
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/xpfe/global/resources/locale/en-US/intl.css b/xpfe/global/resources/locale/en-US/intl.css
deleted file mode 100644
index 0221f963e105..000000000000
--- a/xpfe/global/resources/locale/en-US/intl.css
+++ /dev/null
@@ -1,7 +0,0 @@
-/*
- * This file contains all localizable skin settings such as
- * font, layout, and geometry
- */
-window {
- font: 3mm tahoma,arial,helvetica,sans-serif;
-}
diff --git a/xpfe/global/resources/locale/en-US/keys.properties b/xpfe/global/resources/locale/en-US/keys.properties
deleted file mode 100644
index c602753eac06..000000000000
--- a/xpfe/global/resources/locale/en-US/keys.properties
+++ /dev/null
@@ -1,68 +0,0 @@
-# LOCALIZATION NOTE : FILE This file contains the application's labels for keys on the keyboard.
-# If you decide to translate this file, you should translate it based on
-# the prevelant kind of keyboard for your target user.
-# LOCALIZATION NOTE : There are two types of keys, those w/ text on their labels
-# and those w/ glyphs.
-# LOCALIZATION NOTE : VK_<...> represents a key on the keyboard.
-#
-# For more information please see bugzilla bug 90888.
-
-# F1..F10 should probably not be translated unless there are keyboards that actually have other labels
-# F11..F20 might be something else, but are really keyboard specific and not region/language specific
-# there are actually two different F11/F12 keys, I don't know which one these labels represent.
-# eg, F13..F20 on a sparc keyboard are labeled Props, Again .. Find, Cut
-# sparc also has Stop, Again and F11/F12. VK_F11/VK_F12 probably map to Stop/Again
-# LOCALIZATION NOTE : BLOCK Do not translate the next block
-VK_F1=F1
-VK_F2=F2
-VK_F3=F3
-VK_F4=F4
-VK_F5=F5
-VK_F6=F6
-VK_F7=F7
-VK_F8=F8
-VK_F9=F9
-VK_F10=F10
-
-VK_F11=F11
-VK_F12=F12
-VK_F13=F13
-VK_F14=F14
-VK_F15=F15
-VK_F16=F16
-VK_F17=F17
-VK_F18=F18
-VK_F19=F19
-VK_F20=F20
-# LOCALIZATION NOTE : BLOCK end do not translate block
-
-# LOCALIZATION NOTE : BLOCK GLYPHS, DO translate this block
-VK_UP=Up Arrow
-VK_DOWN=Down Arrow
-VK_LEFT=Left Arrow
-VK_RIGHT=Right Arrow
-VK_PAGE_UP=Page Up
-VK_PAGE_DOWN=Page Down
-# LOCALIZATION NOTE : BLOCK end GLYPHS
-
-# Enter, backspace, and Tab might have both glyphs and text
-# if the keyboards usually have a glyph,
-# if there is a meaningful translation,
-# or if keyboards are localized
-# then translate them or insert the appropriate glyph
-# otherwise you should probably just translate the glyph regions
-
-# LOCALIZATION NOTE : BLOCK maybe GLYPHS
-VK_ENTER=Enter
-VK_RETURN=Return
-VK_TAB=Tab
-VK_BACK=Backspace
-VK_DELETE=Del
-# LOCALIZATION NOTE : BLOCK end maybe GLYPHS
-# LOCALIZATION NOTE : BLOCK typing state keys
-VK_HOME=Home
-VK_END=End
-
-VK_ESCAPE=Esc
-VK_INSERT=Ins
-# LOCALIZATION NOTE : BLOCK end
diff --git a/xpfe/global/resources/locale/en-US/languageNames.properties b/xpfe/global/resources/locale/en-US/languageNames.properties
deleted file mode 100644
index 819328ecc5f6..000000000000
--- a/xpfe/global/resources/locale/en-US/languageNames.properties
+++ /dev/null
@@ -1,193 +0,0 @@
-aa = Afar
-ab = Abkhazian
-ae = Avestan
-af = Afrikaans
-ak = Akan
-am = Amharic
-an = Aragonese
-ar = Arabic
-as = Assamese
-ast = Asturian
-av = Avaric
-ay = Aymara
-az = Azerbaijani
-ba = Bashkir
-be = Belarusian
-bg = Bulgarian
-bh = Bihari
-bi = Bislama
-bm = Bambara
-bn = Bengali
-bo = Tibetan
-br = Breton
-bs = Bosnian
-ca = Catalan
-ce = Chechen
-ch = Chamorro
-co = Corsican
-cr = Cree
-cs = Czech
-cu = Church Slavic
-cv = Chuvash
-cy = Welsh
-da = Danish
-de = German
-dv = Divehi
-dz = Dzongkha
-ee = Ewe
-el = Greek
-en = English
-eo = Esperanto
-es = Spanish
-et = Estonian
-eu = Basque
-fa = Persian
-ff = Fulah
-fi = Finnish
-fj = Fijian
-fo = Faroese
-fr = French
-fur = Friulian
-fy = Frisian
-ga = Irish
-gd = Scots Gaelic
-gl = Galician
-gn = Guarani
-gu = Gujarati
-gv = Manx
-ha = Hausa
-he = Hebrew
-hi = Hindi
-ho = Hiri Motu
-hr = Croatian
-hsb = Upper Sorbian
-ht = Haitian
-hu = Hungarian
-hy = Armenian
-hz = Herero
-ia = Interlingua
-id = Indonesian
-ie = Interlingue
-ig = Igbo
-ii = Sichuan Yi
-ik = Inupiaq
-io = Ido
-is = Icelandic
-it = Italian
-iu = Inuktitut
-ja = Japanese
-jv = Javanese
-ka = Georgian
-kg = Kongo
-ki = Kikuyu
-kj = Kuanyama
-kk = Kazakh
-kl = Greenlandic
-km = Khmer
-kn = Kannada
-ko = Korean
-kok = Konkani
-kr = Kanuri
-ks = Kashmiri
-ku = Kurdish
-kv = Komi
-kw = Cornish
-ky = Kirghiz
-la = Latin
-lb = Luxembourgish
-lg = Ganda
-li = Limburgan
-ln = Lingala
-lo = Lao
-lt = Lithuanian
-lu = Luba-Katanga
-lv = Latvian
-mg = Malagasy
-mh = Marshallese
-mi = Maori
-mk = Macedonian
-ml = Malayalam
-mn = Mongolian
-mo = Moldavian
-mr = Marathi
-ms = Malay
-mt = Maltese
-my = Burmese
-na = Nauru
-nb = Norwegian Bokm\u00e5l
-nd = Ndebele, North
-ne = Nepali
-ng = Ndonga
-nl = Dutch
-nn = Norwegian Nynorsk
-no = Norwegian
-nr = Ndebele, South
-nso = Sotho, Northern
-nv = Navajo
-ny = Chichewa
-oc = Occitan
-oj = Ojibwa
-om = Oromo
-or = Oriya
-os = Ossetian
-pa = Punjabi
-pi = Pali
-pl = Polish
-ps = Pashto
-pt = Portuguese
-qu = Quechua
-rm = Rhaeto-Romanic
-rn = Kirundi
-ro = Romanian
-ru = Russian
-rw = Kinyarwanda
-sa = Sanskrit
-sc = Sardinian
-sd = Sindhi
-se = Northern Sami
-sg = Sango
-si = Singhalese
-sk = Slovak
-sl = Slovenian
-sm = Samoan
-sn = Shona
-so = Somali
-sq = Albanian
-sr = Serbian
-ss = Siswati
-st = Sotho, Southern
-su = Sundanese
-sv = Swedish
-sw = Swahili
-ta = Tamil
-te = Telugu
-tg = Tajik
-th = Thai
-ti = Tigrinya
-tig = Tigre
-tk = Turkmen
-tl = Tagalog
-tlh = Klingon
-tn = Tswana
-to = Tonga
-tr = Turkish
-ts = Tsonga
-tt = Tatar
-tw = Twi
-ty = Tahitian
-ug = Uighur
-uk = Ukrainian
-ur = Urdu
-uz = Uzbek
-ve = Venda
-vi = Vietnamese
-vo = Volap\u00fck
-wa = Walloon
-wen = Sorbian
-wo = Wolof
-xh = Xhosa
-yi = Yiddish
-yo = Yoruba
-za = Zhuang
-zh = Chinese
-zu = Zulu
diff --git a/xpfe/global/resources/locale/en-US/mac/Makefile.in b/xpfe/global/resources/locale/en-US/mac/Makefile.in
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/xpfe/global/resources/locale/en-US/mac/contents-platform.rdf b/xpfe/global/resources/locale/en-US/mac/contents-platform.rdf
deleted file mode 100644
index beedcd62cf4c..000000000000
--- a/xpfe/global/resources/locale/en-US/mac/contents-platform.rdf
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/mac/jar.mn b/xpfe/global/resources/locale/en-US/mac/jar.mn
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/xpfe/global/resources/locale/en-US/mac/platformDialogOverlay.dtd b/xpfe/global/resources/locale/en-US/mac/platformDialogOverlay.dtd
deleted file mode 100644
index 7c6cff279447..000000000000
--- a/xpfe/global/resources/locale/en-US/mac/platformDialogOverlay.dtd
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/mac/platformKeys.properties b/xpfe/global/resources/locale/en-US/mac/platformKeys.properties
deleted file mode 100644
index 735385c42a79..000000000000
--- a/xpfe/global/resources/locale/en-US/mac/platformKeys.properties
+++ /dev/null
@@ -1,18 +0,0 @@
-#mac
-#this file defines the on screen display names for the various modifier keys
-#these are used in XP menus to show keyboard shortcuts
-
-#the shift key - open up arrow symbol (ctrl-e)
-VK_SHIFT=\u21e7
-
-#the command key - clover leaf symbol (ctrl-q)
-VK_META=\u2318
-
-#the option/alt key - splitting tracks symbol (ctrl-g)
-VK_ALT=\u2325
-
-#the control key. hat symbol (ctrl-f)
-VK_CONTROL=\u2303
-
-#the separator character used between modifiers (none on Mac OS)
-MODIFIER_SEPARATOR=
diff --git a/xpfe/global/resources/locale/en-US/mac/wizard.properties b/xpfe/global/resources/locale/en-US/mac/wizard.properties
deleted file mode 100644
index 109c494f95b2..000000000000
--- a/xpfe/global/resources/locale/en-US/mac/wizard.properties
+++ /dev/null
@@ -1,13 +0,0 @@
-button-back=Go Back
-accesskey-back=B
-button-next=Continue
-accesskey-next=C
-button-finish=Done
-accesskey-finish=
-button-cancel=Cancel
-accesskey-cancel=
-default-first-title=Introduction
-default-last-title=Conclusion
-instruct-first=Click the right arrow to continue.
-instruct-last=Click the right arrow to continue.
-
diff --git a/xpfe/global/resources/locale/en-US/nsTreeSorting.properties b/xpfe/global/resources/locale/en-US/nsTreeSorting.properties
deleted file mode 100644
index 19bd5b3475c1..000000000000
--- a/xpfe/global/resources/locale/en-US/nsTreeSorting.properties
+++ /dev/null
@@ -1 +0,0 @@
-SortMenuItems=Sorted by %COLNAME%
diff --git a/xpfe/global/resources/locale/en-US/os2/Makefile.in b/xpfe/global/resources/locale/en-US/os2/Makefile.in
deleted file mode 100644
index 8f8a1c559729..000000000000
--- a/xpfe/global/resources/locale/en-US/os2/Makefile.in
+++ /dev/null
@@ -1,52 +0,0 @@
-#
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-DEPTH = ../../../../../..
-topsrcdir = @top_srcdir@
-srcdir = @srcdir@
-VPATH = @srcdir@
-
-include $(DEPTH)/config/autoconf.mk
-
-CHROME_DIR=locales/en-US
-CHROME_L10N_DIR=global/locale
-
-CHROME_L10N = \
- $(NULL)
-
-include $(topsrcdir)/config/rules.mk
-
diff --git a/xpfe/global/resources/locale/en-US/os2/contents-platform.rdf b/xpfe/global/resources/locale/en-US/os2/contents-platform.rdf
deleted file mode 100644
index beedcd62cf4c..000000000000
--- a/xpfe/global/resources/locale/en-US/os2/contents-platform.rdf
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/os2/jar.mn b/xpfe/global/resources/locale/en-US/os2/jar.mn
deleted file mode 100644
index 18681c61f7f3..000000000000
--- a/xpfe/global/resources/locale/en-US/os2/jar.mn
+++ /dev/null
@@ -1,2 +0,0 @@
-en-os2.jar:
-* locale/en-US/global-platform/contents.rdf (contents-platform.rdf)
diff --git a/xpfe/global/resources/locale/en-US/printPageSetup.dtd b/xpfe/global/resources/locale/en-US/printPageSetup.dtd
deleted file mode 100644
index 6b4b37c381ea..000000000000
--- a/xpfe/global/resources/locale/en-US/printPageSetup.dtd
+++ /dev/null
@@ -1,62 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/printPageSetup.properties b/xpfe/global/resources/locale/en-US/printPageSetup.properties
deleted file mode 100644
index 8e1c59b403d0..000000000000
--- a/xpfe/global/resources/locale/en-US/printPageSetup.properties
+++ /dev/null
@@ -1,47 +0,0 @@
-# ***** BEGIN LICENSE BLOCK *****
-# Version: MPL 1.1/GPL 2.0/LGPL 2.1
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License. You may obtain a copy of the License at
-# http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# The Original Code is mozilla.org code.
-#
-# The Initial Developer of the Original Code is
-# Netscape Communications Corporation.
-# Portions created by the Initial Developer are Copyright (C) 1998
-# the Initial Developer. All Rights Reserved.
-#
-# Contributor(s):
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either of the GNU General Public License Version 2 or later (the "GPL"),
-# or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
-# in which case the provisions of the GPL or the LGPL are applicable instead
-# of those above. If you wish to allow use of your version of this file only
-# under the terms of either the GPL or the LGPL, and not to allow others to
-# use your version of this file under the terms of the MPL, indicate your
-# decision by deleting the provisions above and replace them with the notice
-# and other provisions required by the GPL or the LGPL. If you do not delete
-# the provisions above, a recipient may use your version of this file under
-# the terms of any one of the MPL, the GPL or the LGPL.
-#
-# ***** END LICENSE BLOCK *****
-
-letterSize=Letter (8 1/2 x 11 in.)
-legalSize=Legal (8 1/2 x 14 in.)
-exectiveSize=Executive (7 1/2 x 10 in.)
-a5Size=DIN A5 (148 x 210 mm)
-a4Size=DIN A4 (210 x 297 mm)
-a3Size=DIN A3 (297 x 420 mm)
-a2Size=DIN A2 (420 x 594 mm)
-a1Size=DIN A1 (594 x 841 mm)
-a0Size=DIN A0 (841 x 1189 mm)
-
-# EOF.
diff --git a/xpfe/global/resources/locale/en-US/printPreviewProgress.dtd b/xpfe/global/resources/locale/en-US/printPreviewProgress.dtd
deleted file mode 100644
index 0ab25fbe2b1d..000000000000
--- a/xpfe/global/resources/locale/en-US/printPreviewProgress.dtd
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/printProgress.dtd b/xpfe/global/resources/locale/en-US/printProgress.dtd
deleted file mode 100644
index 993d91e0fbc9..000000000000
--- a/xpfe/global/resources/locale/en-US/printProgress.dtd
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/printdialog.dtd b/xpfe/global/resources/locale/en-US/printdialog.dtd
deleted file mode 100644
index 9ff5c13643eb..000000000000
--- a/xpfe/global/resources/locale/en-US/printdialog.dtd
+++ /dev/null
@@ -1,42 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/region.dtd b/xpfe/global/resources/locale/en-US/region.dtd
deleted file mode 100644
index 4538d7b6bfe1..000000000000
--- a/xpfe/global/resources/locale/en-US/region.dtd
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-#expand
-
-#expand
diff --git a/xpfe/global/resources/locale/en-US/region.properties b/xpfe/global/resources/locale/en-US/region.properties
deleted file mode 100644
index 4ddc6af642be..000000000000
--- a/xpfe/global/resources/locale/en-US/region.properties
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# Localizable URLs
-#
-pluginStartupMessage=Starting Plugin for type
-
-# plug-ins URLs
-more_plugins_label=mozilla.org
-more_plugins_url=https://pfs.mozilla.org/plugins/
-plugindoc_label=plugindoc.mozdev.org
-plugindoc_url=http://plugindoc.mozdev.org/
-
-#
-# brand.properties
-#
-getNewThemesURL=http://mozilla.org/themes/download/
-
diff --git a/xpfe/global/resources/locale/en-US/regionNames.properties b/xpfe/global/resources/locale/en-US/regionNames.properties
deleted file mode 100644
index 584220d1a50a..000000000000
--- a/xpfe/global/resources/locale/en-US/regionNames.properties
+++ /dev/null
@@ -1,243 +0,0 @@
-ad = Andorra
-ae = U.A.E.
-af = Afghanistan
-ag = Antigua and Barbuda
-ai = Anguilla
-al = Albania
-am = Armenia
-an = Netherlands Antilles
-ao = Angola
-aq = Antarctica
-ar = Argentina
-as = American Samoa
-at = Austria
-au = Australia
-aw = Aruba
-ax = \u00c5land Islands
-az = Azerbaijan
-ba = Bosnia and Herzegovina
-bb = Barbados
-bd = Bangladesh
-be = Belgium
-bf = Burkina Faso
-bg = Bulgaria
-bh = Bahrain
-bi = Burundi
-bj = Benin
-bm = Bermuda
-bn = Brunei Darussalam
-bo = Bolivia
-br = Brazil
-bs = Bahamas
-bt = Bhutan
-bv = Bouvet Island
-bw = Botswana
-by = Belarus
-bz = Belize
-ca = Canada
-cc = Cocos (Keeling) Islands
-cd = Congo-Kinshasa
-cf = Central African Republic
-cg = Congo-Brazzaville
-ch = Switzerland
-ci = Ivory Coast
-ck = Cook Islands
-cl = Chile
-cm = Cameroon
-cn = China
-co = Colombia
-cr = Costa Rica
-cs = Serbia and Montenegro
-cu = Cuba
-cv = Cape Verde
-cx = Christmas Island
-cy = Cyprus
-cz = Czech Republic
-de = Germany
-dj = Djibouti
-dk = Denmark
-dm = Dominica
-do = Dominican Republic
-dz = Algeria
-ec = Ecuador
-ee = Estonia
-eg = Egypt
-eh = Western Sahara
-er = Eritrea
-es = Spain
-et = Ethiopia
-fi = Finland
-fj = Fiji
-fk = Falkland Islands (Malvinas)
-fm = Micronesia
-fo = Faroe Islands
-fr = France
-ga = Gabon
-gb = United Kingdom
-gd = Grenada
-ge = Georgia
-gf = French Guiana
-gg = Guernsey
-gh = Ghana
-gi = Gibraltar
-gl = Greenland
-gm = Gambia
-gn = Guinea
-gp = Guadeloupe
-gq = Equatorial Guinea
-gr = Greece
-gs = South Georgia and the South Sandwich Islands
-gt = Guatemala
-gu = Guam
-gw = Guinea-Bissau
-gy = Guyana
-hk = Hong Kong
-hm = Heard Island and McDonald Islands
-hn = Honduras
-hr = Croatia
-ht = Haiti
-hu = Hungary
-id = Indonesia
-ie = Ireland
-il = Israel
-im = Isle of Man
-in = India
-io = British Indian Ocean Territory
-iq = Iraq
-ir = Iran
-is = Iceland
-it = Italy
-je = Jersey
-jm = Jamaica
-jo = Jordan
-jp = Japan
-ke = Kenya
-kg = Kyrgyzstan
-kh = Cambodia
-ki = Kiribati
-km = Comoros
-kn = Saint Kitts and Nevis
-kp = North Korea
-kr = South Korea
-kw = Kuwait
-ky = Cayman Islands
-kz = Kazakhstan
-la = Laos
-lb = Lebanon
-lc = Saint Lucia
-li = Liechtenstein
-lk = Sri Lanka
-lr = Liberia
-ls = Lesotho
-lt = Lithuania
-lu = Luxembourg
-lv = Latvia
-ly = Libya
-ma = Morocco
-mc = Monaco
-md = Moldova
-mg = Madagascar
-mh = Marshall Islands
-mk = Macedonia, F.Y.R. of
-ml = Mali
-mm = Myanmar
-mn = Mongolia
-mo = Macao
-mp = Northern Mariana Islands
-mq = Martinique
-mr = Mauritania
-ms = Montserrat
-mt = Malta
-mu = Mauritius
-mv = Maldives
-mw = Malawi
-mx = Mexico
-my = Malaysia
-mz = Mozambique
-na = Namibia
-nc = New Caledonia
-ne = Niger
-nf = Norfolk Island
-ng = Nigeria
-ni = Nicaragua
-nl = Netherlands
-no = Norway
-np = Nepal
-nr = Nauru
-nu = Niue
-nz = New Zealand
-om = Oman
-pa = Panama
-pe = Peru
-pf = French Polynesia
-pg = Papua New Guinea
-ph = Philippines
-pk = Pakistan
-pl = Poland
-pm = Saint Pierre and Miquelon
-pn = Pitcairn
-pr = Puerto Rico
-ps = Occupied Palestinian Territory
-pt = Portugal
-pw = Palau
-py = Paraguay
-qa = Qatar
-re = Reunion
-ro = Romania
-ru = Russian Federation
-rw = Rwanda
-sa = Saudi Arabia
-sb = Solomon Islands
-sc = Seychelles
-sd = Sudan
-se = Sweden
-sg = Singapore
-sh = Saint Helena
-si = Slovenia
-sj = Svalbard and Jan Mayen
-sk = Slovakia
-sl = Sierra Leone
-sm = San Marino
-sn = Senegal
-so = Somalia
-sr = Suriname
-st = Sao Tome and Principe
-sv = El Salvador
-sy = Syria
-sz = Swaziland
-tc = Turks and Caicos Islands
-td = Chad
-tf = French Southern Territories
-tg = Togo
-th = Thailand
-tj = Tajikistan
-tk = Tokelau
-tl = Timor-Leste
-tm = Turkmenistan
-tn = Tunisia
-to = Tonga
-tr = Turkey
-tt = Trinidad and Tobago
-tv = Tuvalu
-tw = Taiwan
-tz = Tanzania
-ua = Ukraine
-ug = Uganda
-um = United States Minor Outlying Islands
-us = United States
-uy = Uruguay
-uz = Uzbekistan
-va = Vatican City
-vc = Saint Vincent and the Grenadines
-ve = Venezuela
-vg = British Virgin Islands
-vi = U.S. Virgin Islands
-vn = Vietnam
-vu = Vanuatu
-wf = Wallis and Futuna
-ws = Samoa
-ye = Yemen
-yt = Mayotte
-za = South Africa
-zm = Zambia
-zw = Zimbabwe
diff --git a/xpfe/global/resources/locale/en-US/tabbrowser.dtd b/xpfe/global/resources/locale/en-US/tabbrowser.dtd
deleted file mode 100644
index 0ef1231749e1..000000000000
--- a/xpfe/global/resources/locale/en-US/tabbrowser.dtd
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/tabbrowser.properties b/xpfe/global/resources/locale/en-US/tabbrowser.properties
deleted file mode 100644
index 01ac97641305..000000000000
--- a/xpfe/global/resources/locale/en-US/tabbrowser.properties
+++ /dev/null
@@ -1,9 +0,0 @@
-tabs.loading=Loading...
-tabs.untitled=(Untitled)
-tabs.closeWarningTitle=Confirm Closing Other Tabs
-tabs.closeWarning=You are about to close %S other tab(s). Are you sure you want to continue?
-tabs.closeButton=Close other tabs
-tabs.closeWarningPromptMe=Warn me when I attempt to close other tabs
-browsewithcaret.checkMsg=Do not show me this dialog box again.
-browsewithcaret.checkWindowTitle=Caret Browsing
-browsewithcaret.checkLabel=Pressing F7 turns Caret Browsing on or off. This feature places a moveable cursor in web pages, allowing you to select text with the keyboard. Do you want to turn Caret Browsing on?
diff --git a/xpfe/global/resources/locale/en-US/textcontext.dtd b/xpfe/global/resources/locale/en-US/textcontext.dtd
deleted file mode 100644
index b067bbf5a0de..000000000000
--- a/xpfe/global/resources/locale/en-US/textcontext.dtd
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/xpfe/global/resources/locale/en-US/tree.dtd b/xpfe/global/resources/locale/en-US/tree.dtd
deleted file mode 100644
index 8dc733a58bc6..000000000000
--- a/xpfe/global/resources/locale/en-US/tree.dtd
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/xpfe/global/resources/locale/en-US/unix/Makefile.in b/xpfe/global/resources/locale/en-US/unix/Makefile.in
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/xpfe/global/resources/locale/en-US/unix/contents-platform.rdf b/xpfe/global/resources/locale/en-US/unix/contents-platform.rdf
deleted file mode 100644
index 4f1cf6c9d1b7..000000000000
--- a/xpfe/global/resources/locale/en-US/unix/contents-platform.rdf
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/unix/jar.mn b/xpfe/global/resources/locale/en-US/unix/jar.mn
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/xpfe/global/resources/locale/en-US/unix/platformDialogOverlay.dtd b/xpfe/global/resources/locale/en-US/unix/platformDialogOverlay.dtd
deleted file mode 100644
index bfb12a3a1027..000000000000
--- a/xpfe/global/resources/locale/en-US/unix/platformDialogOverlay.dtd
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/unix/platformKeys.properties b/xpfe/global/resources/locale/en-US/unix/platformKeys.properties
deleted file mode 100644
index 55ba8064888c..000000000000
--- a/xpfe/global/resources/locale/en-US/unix/platformKeys.properties
+++ /dev/null
@@ -1,18 +0,0 @@
-#default
-#this file defines the on screen display names for the various modifier keys
-#these are used in XP menus to show keyboard shortcuts
-
-#the shift key
-VK_SHIFT=Shift
-
-#the command key
-VK_META=Meta
-
-#the alt key
-VK_ALT=Alt
-
-#the control key
-VK_CONTROL=Ctrl
-
-#the separator character used between modifiers
-MODIFIER_SEPARATOR=+
diff --git a/xpfe/global/resources/locale/en-US/unix/printjoboptions.dtd b/xpfe/global/resources/locale/en-US/unix/printjoboptions.dtd
deleted file mode 100644
index 6cb7e0925e1b..000000000000
--- a/xpfe/global/resources/locale/en-US/unix/printjoboptions.dtd
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/unix/wizard.properties b/xpfe/global/resources/locale/en-US/unix/wizard.properties
deleted file mode 100644
index 5482bcb5b477..000000000000
--- a/xpfe/global/resources/locale/en-US/unix/wizard.properties
+++ /dev/null
@@ -1,13 +0,0 @@
-button-back=< Back
-accesskey-back=B
-button-next=Next >
-accesskey-next=N
-button-finish=Finish
-accesskey-finish=
-button-cancel=Cancel
-accesskey-cancel=
-default-first-title=Welcome to the %S
-default-last-title=Completing the %S
-instruct-first=To continue, click Next.
-instruct-last=To continue, click Next.
-
diff --git a/xpfe/global/resources/locale/en-US/win/Makefile.in b/xpfe/global/resources/locale/en-US/win/Makefile.in
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/xpfe/global/resources/locale/en-US/win/contents-platform.rdf b/xpfe/global/resources/locale/en-US/win/contents-platform.rdf
deleted file mode 100644
index beedcd62cf4c..000000000000
--- a/xpfe/global/resources/locale/en-US/win/contents-platform.rdf
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/win/jar.mn b/xpfe/global/resources/locale/en-US/win/jar.mn
deleted file mode 100644
index e69de29bb2d1..000000000000
diff --git a/xpfe/global/resources/locale/en-US/win/platformDialogOverlay.dtd b/xpfe/global/resources/locale/en-US/win/platformDialogOverlay.dtd
deleted file mode 100644
index 13327ca15caf..000000000000
--- a/xpfe/global/resources/locale/en-US/win/platformDialogOverlay.dtd
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-
diff --git a/xpfe/global/resources/locale/en-US/win/platformKeys.properties b/xpfe/global/resources/locale/en-US/win/platformKeys.properties
deleted file mode 100644
index 55ba8064888c..000000000000
--- a/xpfe/global/resources/locale/en-US/win/platformKeys.properties
+++ /dev/null
@@ -1,18 +0,0 @@
-#default
-#this file defines the on screen display names for the various modifier keys
-#these are used in XP menus to show keyboard shortcuts
-
-#the shift key
-VK_SHIFT=Shift
-
-#the command key
-VK_META=Meta
-
-#the alt key
-VK_ALT=Alt
-
-#the control key
-VK_CONTROL=Ctrl
-
-#the separator character used between modifiers
-MODIFIER_SEPARATOR=+
diff --git a/xpfe/global/resources/locale/en-US/win/wizard.properties b/xpfe/global/resources/locale/en-US/win/wizard.properties
deleted file mode 100644
index 5482bcb5b477..000000000000
--- a/xpfe/global/resources/locale/en-US/win/wizard.properties
+++ /dev/null
@@ -1,13 +0,0 @@
-button-back=< Back
-accesskey-back=B
-button-next=Next >
-accesskey-next=N
-button-finish=Finish
-accesskey-finish=
-button-cancel=Cancel
-accesskey-cancel=
-default-first-title=Welcome to the %S
-default-last-title=Completing the %S
-instruct-first=To continue, click Next.
-instruct-last=To continue, click Next.
-
diff --git a/xpfe/global/resources/locale/en-US/wizardManager.properties b/xpfe/global/resources/locale/en-US/wizardManager.properties
deleted file mode 100644
index 202b1f96727a..000000000000
--- a/xpfe/global/resources/locale/en-US/wizardManager.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-finishButtonLabel=Finish
-nextButtonLabel=Next
-oflabel=%S of %S
diff --git a/xpfe/global/resources/locale/en-US/wizardOverlay.dtd b/xpfe/global/resources/locale/en-US/wizardOverlay.dtd
deleted file mode 100644
index 5f2bac388d5f..000000000000
--- a/xpfe/global/resources/locale/en-US/wizardOverlay.dtd
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
-
-
-
-