]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_buckets.xul
some i18n goodness and fixes. And an extra column for patron lists, and including...
[Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_buckets.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/cat.css" type="text/css"?>
11
12 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
13 <!-- LOCALIZATION -->
14 <!DOCTYPE window PUBLIC "" ""[
15         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
16 ]>
17
18 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
19 <!-- OVERLAYS -->
20 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
21 <?xul-overlay href="/xul/server/cat/copy_buckets_overlay.xul"?>
22
23 <window id="copy_buckets_win" title="Copy Buckets"
24         onload="try { my_init(); font_helper(); } catch(E) { alert(E); }" height="600" width="800" persist="height,width"
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 my_init() {
36                         try {
37                                 netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
38                                 if (typeof JSAN == 'undefined') { throw( document.getElementById("commonStrings").getString('common.jsan.missing') ); }
39                                 JSAN.errorLevel = "die"; // none, warn, or die
40                                 JSAN.addRepository('/xul/server/');
41                                 JSAN.use('util.error'); g.error = new util.error();
42                                 g.error.sdump('D_TRACE','my_init() for copy_buckets.xul');
43                                 JSAN.use('OpenILS.data'); g.data = new OpenILS.data(); g.data.init({'via':'stash'});
44
45                                 var copy_ids = xul_param(
46                                         'copy_ids',{
47                                                 'concat' : true,
48                                                 'JSON2js_if_cgi' : true,
49                                                 'JSON2js_if_xpcom' : true,
50                                                 'stash_name':'cb_temp_copy_ids',
51                                                 'clear_xpcom' : true,
52                                         }
53                                 );
54
55                                 JSAN.use('cat.copy_buckets'); g.copy_buckets = new cat.copy_buckets();
56                                 g.copy_buckets.init( 
57                                         { 
58                                                 'copy_ids' : copy_ids,
59                                         } 
60                                 );
61         
62                                 if (typeof window.xulG == 'object' && typeof window.xulG.set_tab_name == 'function') {
63                                         try { window.xulG.set_tab_name(document.getElementById("catStrings").getString('cat.copy_buckets.tab')); } catch(E) { alert(E); }
64                                 }
65
66                         } catch(E) {
67                                 var err_msg = document.getElementById("commonStrings").getFormattedString('common.exception', ["cat/copy_buckets.xul", E]);
68                                 try { g.error.sdump('D_ERROR',err_msg); } catch(E) { dump(err_msg); }
69                                 alert(err_msg);
70                         }
71                 }
72
73         ]]>
74         </script>
75
76         <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale' -->/cat.properties"/>
77         <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale' -->/circ.properties"/>
78
79         <commandset id="copy_buckets_cmds">
80                 <command id="sel_clip1" />
81                 <command id="save_columns1" />
82                 <command id="sel_clip2" />
83                 <command id="save_columns2" />
84                 <command id="cmd_print_export1" />
85                 <command id="cmd_export1" />
86                 <command id="cmd_print_export2" />
87                 <command id="cmd_copy_buckets_submit_barcode" />
88                 <command id="cmd_copy_buckets_print" />
89                 <command id="cmd_copy_buckets_export" />
90                 <command id="cmd_copy_buckets_reprint" />
91                 <command id="cmd_copy_buckets_done" />
92                 <command id="cmd_export_to_copy_status" />
93                 <command id="copy_buckets_new_bucket" />
94                 <command id="copy_buckets_delete_bucket" />
95                 <command id="copy_buckets_delete_item" />
96                 <command id="copy_buckets_add" />
97                 <command id="copy_buckets_sel_add" />
98                 <command id="copy_buckets_export" />
99                 <command id="copy_buckets_transfer_to_volume" />
100                 <command id="copy_buckets_batch_copy_edit" />
101                 <command id="copy_buckets_batch_copy_delete" />
102         </commandset>
103
104         <box id="copy_buckets_main" />
105
106 </window>
107