]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/summary.xul
search_form.xul can take and make URI query components
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / summary.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="/xul/server/skin/evergreen.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/patron_display.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window SYSTEM "chrome://evergreen/locale/lang.dtd">
14
15 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
16 <!-- OVERLAYS -->
17 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
18 <?xul-overlay href="/xul/server/patron/summary_overlay.xul"?>
19
20 <window id="patron_summary_win" 
21         onload="my_init()"
22         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
23
24         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
25         <!-- BEHAVIOR -->
26         <script type="text/javascript">var myPackageDir = 'evergreen'; var IAMXUL = true; var g = {};</script>
27         <scripts id="openils_util_scripts"/>
28
29         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
30         <script>
31         <![CDATA[
32                 function my_init() {
33                         try {
34                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
35                                 if (typeof JSAN == 'undefined') { throw( "The JSAN library object is missing."); }
36                                 JSAN.errorLevel = "die"; // none, warn, or die
37                                 JSAN.addRepository('/xul/server/');
38                                 JSAN.use('util.error'); g.error = new util.error();
39                                 g.error.sdump('D_TRACE','my_init() for patron_summary.xul');
40
41                                 g.cgi = new CGI();
42
43                                 JSAN.use('patron.summary'); g.summary = new patron.summary();
44                                 g.summary.init( { 'barcode' : g.cgi.param('barcode') , 'session' : g.cgi.param('session') } );
45                         } catch(E) {
46                                 var err_msg = "!! This software has encountered an error.  Please tell your friendly " +
47                                         "system administrator or software developer the following:\n" + E + '\n';
48                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
49                                 alert(err_msg);
50                         }
51                 }
52
53         ]]>
54         </script>
55
56         <commandset id="patron_summary_cmds">
57         </commandset>
58
59         <box id="patron_summary_main" />
60
61 </window>
62