summaryrefslogtreecommitdiffstats
path: root/comm/suite/chatzilla/xul/content/scripts.xul
diff options
context:
space:
mode:
Diffstat (limited to 'comm/suite/chatzilla/xul/content/scripts.xul')
-rw-r--r--comm/suite/chatzilla/xul/content/scripts.xul55
1 files changed, 55 insertions, 0 deletions
diff --git a/comm/suite/chatzilla/xul/content/scripts.xul b/comm/suite/chatzilla/xul/content/scripts.xul
new file mode 100644
index 0000000000..6207970a07
--- /dev/null
+++ b/comm/suite/chatzilla/xul/content/scripts.xul
@@ -0,0 +1,55 @@
+<?xml version="1.0"?>
+
+<!--
+ -
+ - This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this
+ - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
+
+<overlay id="chatzilla-scripts-overlay"
+ xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+
+ <overlaytarget id="scripts-overlay-target">
+
+ <script src="chrome://global/content/globalOverlay.js"/>
+
+ <script><![CDATA[
+ /* utils.js overloads the standard JS messages with prompt service
+ * calls, which require the locale support to have loaded. This next
+ * line is needed so that the onLoad function in handlers.js can
+ * display the "error loading ChatZilla" message even if the locale
+ * support is what failed to load.
+ */
+ window.baseAlert = window.alert;
+ ]]></script>
+ <script src="chrome://chatzilla/content/lib/js/utils.js"/>
+ <script src="chrome://chatzilla/content/lib/js/connection-xpcom.js"/>
+ <script src="chrome://chatzilla/content/lib/js/events.js"/>
+ <script src="chrome://chatzilla/content/lib/js/command-manager.js"/>
+ <script src="chrome://chatzilla/content/lib/js/pref-manager.js"/>
+ <script src="chrome://chatzilla/content/lib/js/message-manager.js"/>
+ <script src="chrome://chatzilla/content/lib/js/menu-manager.js"/>
+ <script src="chrome://chatzilla/content/lib/js/irc.js"/>
+ <script src="chrome://chatzilla/content/lib/js/irc-debug.js"/>
+ <script src="chrome://chatzilla/content/lib/js/file-utils.js"/>
+ <script src="chrome://chatzilla/content/lib/js/dcc.js"/>
+ <script src="chrome://chatzilla/content/lib/js/ident.js"/>
+ <script src="chrome://chatzilla/content/lib/js/json-serializer.js"/>
+ <script src="chrome://chatzilla/content/lib/js/sts.js"/>
+ <script src="chrome://chatzilla/content/lib/js/text-serializer.js"/>
+ <script src="chrome://chatzilla/content/lib/js/text-logger.js"/>
+ <script src="chrome://chatzilla/content/lib/xul/munger.js"/>
+ <script src="chrome://chatzilla/content/lib/xul/tree-utils.js"/>
+
+ <script src="chrome://chatzilla/content/static.js"/>
+ <script src="chrome://chatzilla/content/commands.js"/>
+ <script src="chrome://chatzilla/content/menus.js"/>
+ <script src="chrome://chatzilla/content/prefs.js"/>
+ <script src="chrome://chatzilla/content/messages.js"/>
+ <script src="chrome://chatzilla/content/mungers.js"/>
+ <script src="chrome://chatzilla/content/handlers.js"/>
+ <script src="chrome://chatzilla/content/networks.js"/>
+
+ </overlaytarget>
+
+</overlay>