]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/display.xul
should be the last re/un-naming
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / display.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Patron Display -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
10 <?xml-stylesheet href="/xul/server/skin/patron_display.css" type="text/css"?>
11
12 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
13 <!-- LOCALIZATION -->
14 <!DOCTYPE window SYSTEM "chrome://open_ils_staff_client/locale/lang.dtd">
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19 <?xul-overlay href="/xul/server/patron/display_overlay.xul"?>
20
21 <window id="patron_display_win" 
22         onload="try { my_init(); } catch(E) { alert(E); }"
23         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
24
25         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
26         <!-- BEHAVIOR -->
27         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
28         <scripts id="openils_util_scripts"/>
29
30         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
31         <script>
32         <![CDATA[
33                 function my_init() {
34                         try {
35                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
36                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
37                                 JSAN.errorLevel = "die"; // none, warn, or die
38                                 JSAN.addRepository('/xul/server/');
39                                 JSAN.use('util.error'); g.error = new util.error();
40                                 g.error.sdump('D_TRACE','my_init() for patron_display.xul');
41
42                                 g.cgi = new CGI();
43
44                                 JSAN.use('patron.display'); g.patron = new patron.display();
45                                 g.patron.init( { 
46                                         'session' : g.cgi.param('session') , 
47                                         'barcode' : g.cgi.param('barcode') ,
48                                         'id' : g.cgi.param('id') ,
49                                 } );
50
51                         } catch(E) {
52                                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
53                                         "system administrator or software developer the following:\n" 
54                                         + 'patron/display.xul\n' + E + '\n';
55                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
56                                 alert(err_msg);
57                         }
58                 }
59
60         ]]>
61         </script>
62
63         <commandset id="patron_display_cmds">
64                 <command id="cmd_patron_refresh" />
65                 <command id="cmd_patron_checkout" />
66                 <command id="cmd_patron_items" />
67                 <command id="cmd_patron_holds" />
68                 <command id="cmd_patron_bills" />
69                 <command id="cmd_patron_edit" />
70                 <command id="cmd_patron_info" />
71                 <command id="cmd_patron_retrieve" />
72                 <command id="cmd_search_form" />
73         </commandset>
74
75         <box id="patron_display_main" />
76
77 </window>
78