]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Evergreen/staff_client/chrome/content/evergreen/util/util_overlay.xul
some refactor and localization
[working/Evergreen.git] / Evergreen / staff_client / chrome / content / evergreen / util / util_overlay.xul
1 <?xml version="1.0"?>
2 <!-- Modified by Jason for Evergreen -->
3
4 <overlay id="util"
5         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
6
7 <util id="util_js">
8
9         <script>
10                 var IAMXUL = true;
11                 dump('Loading all the js in the util overlay...\n');
12         </script>
13
14         <script src="error.js" />       <!-- more like output handling -->
15         <script src="util.js" />        <!-- miscellaneous scripts.  want to make this empty -->
16         <script src="functional.js" />  <!-- neat use of first-class functions, and some predecessors -->
17         <script src="fm_utils.js" />    <!-- some convenience functions for fieldmapper objects -->
18         <script src="validate.js" />    <!-- some validation functions -->
19         <script src="widgets.js" />     <!-- some convenience functions for XUL/HTML elements.  want to eliminate overlap with webutils -->
20         <script src="populate.js" />    <!-- populate widgets (like menus) with values -->
21         <script src="fieldmapper.js" /> <!-- our Objects for things like patrons, books, etc.  This is generated. -->
22         <script src="OrgTree.js" />     <!-- our Organization Hierarchy.  This is generated. -->
23
24         <script src="chrome://evergreen/content/Open-ILS/util/webutils.js" />           <!-- Bill's grab bag of useful functions.  want to eliminate overlap -->
25         <script src="chrome://evergreen/content/Open-ILS/util/RemoteRequest.js" />      <!-- XMLHttpRequest -->
26         <script src="chrome://evergreen/content/Open-ILS/util/ex.js" />                 <!-- error/exception handling -->
27
28         <script src="ses.js" />         <!-- my wrapper over the OpenSRF communication layer.. Jabber and XMLHttpRequest -->
29         <script src="explode.js" />     <!-- original attempt at linking widgets to data.  Want to use something more OO -->
30         <script src="win.js" />         <!-- window and tab handling -->
31         <script src="spawn_win.js" />   <!-- spawning various interfaces in tabs -->
32         <script src="xpcom.js" />       <!-- misc xpcom -->
33         <script src="print.js" />       <!-- some xpcom for printing -->
34         <script src="sound.js" />       <!-- some xpcom for sound -->
35
36         <script src="chrome://evergreen/content/Open-ILS/util/browser.js" />    <!-- browser detection.. am I not using Mozilla? doh :) -->
37
38         <script src="chrome://evergreen/content/Open-ILS/widgets/Box.js" />             <!-- shared code between OPAC and staff client for surveys -->
39         <script src="chrome://evergreen/content/Open-ILS/widgets/ListBox.js" />
40         <script src="chrome://evergreen/content/Open-ILS/widgets/Survey.js" />
41
42 </util>
43
44 </overlay>