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