]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/barcode_entry.xul
saving initial user groups
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / barcode_entry.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Retrieve Patron By Barcode -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/evergreen.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window SYSTEM "chrome://evergreen/locale/lang.dtd">
13
14 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
15 <!-- OVERLAYS -->
16 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
17
18 <window id="patron_barcode_entry_win" 
19         onload="my_init()"
20         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
21
22         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
23         <!-- BEHAVIOR -->
24         <script type="text/javascript">var myPackageDir = 'evergreen'; var IAMXUL = true; var g = {};</script>
25         <scripts id="openils_util_scripts"/>
26
27         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
28         <script>
29         <![CDATA[
30                 function my_init() {
31                         try {
32                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
33                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
34                                 JSAN.errorLevel = "die"; // none, warn, or die
35                                 JSAN.addRepository('/xul/server/');
36                                 JSAN.use('util.error'); g.error = new util.error();
37                                 g.error.sdump('D_TRACE','my_init() for patron/barcode_entry.xul');
38
39                                 g.cgi = new CGI();
40                                 var session = g.cgi.param('session');
41                                 if (!session) { 
42                                         g.error.sdump('D_ERROR','session = ' + session + '\n'
43                                                 + 'g.cgi._keys = ' + g.cgi._keys + '\n'
44                                                 + 'location = ' + location + '\n'
45                                                 + 'location.href = ' + location.href + '\n'
46                                         );
47                                         alert('pause.  session is ' + session ); 
48                                 }
49
50                                 var tb = document.getElementById('barcode_tb');
51                                 tb.addEventListener(
52                                         'keypress',
53                                         function(ev) {
54                                                 if (ev.keyCode == 13 || ev.keyCode == 77) {
55                                                         spawn(session);
56                                                 }
57                                         },
58                                         false
59                                 );
60                                 tb.focus();
61         
62                         } catch(E) {
63                                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
64                                         "system administrator or software developer the following:\n" + E + '\n';
65                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
66                                 alert(err_msg);
67                         }
68                 }
69
70                 function spawn(session) {
71                         var tb = document.getElementById('barcode_tb');
72                         var barcode = tb.value;
73
74                         location.href = urls.remote_patron_display + '?session=' 
75                                 + window.escape(session) + '&barcode=' + window.escape(barcode);
76                 }
77
78         ]]>
79         </script>
80
81         <vbox flex="1" class="my_overflow">
82                 <groupbox orient="vertical" flex="1">
83                         <caption label="Retrieve Patron" />
84                         <hbox>
85                                 <label value="Barcode:" accesskey="B" control="barcode_tb"/>
86                                 <textbox id="barcode_tb" />
87                                 <button label="Submit" accesskey="S" oncommand="spawn();"/>
88                         </hbox>
89                         <hbox>
90                                 <label id="status"/>
91                         </hbox>
92                 </groupbox>
93         </vbox>
94
95 </window>
96