]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/search_result.xul
commonStrings is loaded by the global_util overlay now
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / patron / search_result.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 PUBLIC "" ""[
15         <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
16 ]>
17
18 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
19 <!-- OVERLAYS -->
20 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
21 <?xul-overlay href="/xul/server/patron/search_result_overlay.xul"?>
22
23 <window id="patron_search_result_win" 
24         onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
25         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
26
27         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
28         <!-- BEHAVIOR -->
29         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
30         <scripts id="openils_util_scripts"/>
31
32         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
33         <script>
34         <![CDATA[
35                 function $(id) { return document.getElementById(id); }
36                 
37                 function my_init() {
38                         try {
39                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
40                                 if (typeof JSAN == 'undefined') { throw( $("commonStrings").getString('common.jsan.missing') ); }
41                                 JSAN.errorLevel = "die"; // none, warn, or die
42                                 JSAN.addRepository('/xul/server/');
43                                 JSAN.use('util.error'); g.error = new util.error();
44                                 g.error.sdump('D_TRACE','my_init() for patron_search_result.xul');
45
46                                 g.cgi = new CGI();
47                                 var keys = g.cgi.keys();
48                                 var query = {};
49                                 for (var i = 0; i < keys.length; i++) {
50                                         query[keys[i]] = g.cgi.param(keys[i]);
51                                 }
52                                 if (typeof xulG != 'undefined') if (xulG.query) {
53                                         for (var i in xulG.query) {
54                                                 query[i] = xulG.query[i];
55                                         }
56                                 }
57
58                                 JSAN.use('patron.search_result'); g.search_result = new patron.search_result();
59                                 g.search_result.init( { 'query' : query } );
60         
61                         } catch(E) {
62                                 var err_msg = $("commonStrings").getFormattedString('common.exception', ['patron/search_result.xul', E]);
63                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
64                                 alert(err_msg);
65                         }
66                 }
67
68         ]]>
69         </script>
70
71         <commandset id="patron_search_result_cmds">
72                 <command id="cmd_patron_refresh" />
73                 <command id="cmd_patron_checkout" />
74                 <command id="cmd_patron_items" />
75                 <command id="cmd_patron_holds" />
76                 <command id="cmd_patron_bills" />
77                 <command id="cmd_patron_edit" />
78                 <command id="cmd_patron_info" />
79                 <command id="cmd_search_print" />
80                 <command id="cmd_sel_clip" disabled="true"/>
81                 <command id="cmd_save_cols" />
82         </commandset>
83
84         <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties"/>
85
86         <box id="patron_search_result_main" />
87
88 </window>
89