]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Evergreen/staff_client/chrome/content/evergreen/util/util_overlay.xul
some refactoring
[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         </script>
12
13         <script src="util.js" />        <!-- miscellaneous scripts.  want to make this empty -->
14         <script src="functional.js" />  <!-- neat use of first-class functions, and some predecessors -->
15         <script src="fm_utils.js" />    <!-- some convenience functions for fieldmapper objects -->
16         <script src="error.js" />       <!-- more like output handling -->
17         <script src="validate.js" />    <!-- some validation functions -->
18         <script src="widgets.js" />     <!-- some convenience functions for XUL/HTML elements.  want to eliminate overlap with webutils -->
19         <script src="populate.js" />    <!-- populate widgets (like menus) with values -->
20         <script src="fieldmapper.js" /> <!-- our Objects for things like patrons, books, etc.  This is generated. -->
21         <script src="OrgTree.js" />     <!-- our Organization Hierarchy.  This is generated. -->
22
23         <script src="chrome://evergreen/content/Open-ILS/util/webutils.js" />           <!-- Bill's grab bag of useful functions.  want to eliminate overlap -->
24         <script src="chrome://evergreen/content/Open-ILS/util/RemoteRequest.js" />      <!-- XMLHttpRequest -->
25         <script src="chrome://evergreen/content/Open-ILS/util/ex.js" />                 <!-- error/exception handling -->
26
27         <script src="ses.js" />         <!-- my wrapper over the OpenSRF communication layer.. Jabber and XMLHttpRequest -->
28         <script src="explode.js" />     <!-- original attempt at linking widgets to data.  Want to use something more OO -->
29         <script src="win.js" />         <!-- window and tab handling -->
30         <script src="xpcom.js" />       <!-- misc xpcom -->
31         <script src="print.js" />       <!-- some xpcom for printing -->
32         <script src="sound.js" />       <!-- some xpcom for sound -->
33
34         <script src="chrome://evergreen/content/Open-ILS/util/browser.js" />    <!-- browser detection.. am I not using Mozilla? doh :) -->
35
36         <script src="chrome://evergreen/content/Open-ILS/widgets/Box.js" />             <!-- shared code between OPAC and staff client for surveys -->
37         <script src="chrome://evergreen/content/Open-ILS/widgets/ListBox.js" />
38         <script src="chrome://evergreen/content/Open-ILS/widgets/Survey.js" />
39
40 </util>
41
42 </overlay>