72833406402ac9b8bd64febb55f9b9f2ce118f6d
[evergreen-equinox.git] / Open-ILS / xul / staff_client / server / cat / manage_multi_home_items.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Add Multi-Home Items to specific Bib -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="main_win" 
21     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
23
24     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
25     <!-- BEHAVIOR -->
26     <script type="text/javascript">
27         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
28     </script>
29     <scripts id="openils_util_scripts"/>
30
31     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
32
33     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
34     <script type="text/javascript" src="manage_multi_home_items.js"/>
35
36     <commandset>
37         <command id="opac"
38             label="&staff.cat.manage_multi_bib_items.actions.menu_entry.show_in_opac.label;"
39             accesskey="&staff.cat.manage_multi_bib_items.actions.menu_entry.show_in_opac.accesskey;"/>
40         <command id="change"
41             label="&staff.cat.manage_multi_bib_items.actions.menu_entry.change_peer_type.label;"
42             accesskey="&staff.cat.manage_multi_bib_items.actions.menu_entry.change_peer_type.accesskey;"/>
43         <command id="remove"
44             label="&staff.cat.manage_multi_bib_items.actions.menu_entry.unlink_from_bib.label;"
45             accesskey="&staff.cat.manage_multi_bib_items.actions.menu_entry.unlink_from_bib.accesskey;"/>
46     </commandset>
47
48     <popupset>
49         <popup id="actions">
50             <menuitem command="opac" />
51             <menuitem command="change" />
52             <menuitem command="remove" />
53         </popup>
54     </popupset>
55
56     <groupbox flex="1" class="my_overflow">
57         <caption label="&staff.cat.manage_multi_bib_items.caption;"/>
58         <hbox>
59             <label control="bpt_menu"
60                 value="&staff.cat.manage_multi_bib_items.peer_type.menu.label;"
61                 accesskey="&staff.cat.manage_multi_bib_items.peer_type.menu.accesskey;"/>
62             <hbox id="menu_placeholder" />
63             <label control="scanbox"
64                 value="&staff.cat.manage_multi_bib_items.barcode.textbox.label;"
65                 accesskey="&staff.cat.manage_multi_bib_items.barcode.textbox.accesskey;"/>
66             <textbox id="scanbox"/>
67             <button id="submit"
68                 label="&staff.cat.manage_multi_bib_items.barcode.submit.label;"
69                 accesskey="&staff.cat.manage_multi_bib_items.barcode.submit.accesskey;"/>
70             <spacer flex="1"/>
71             <menubar>
72                 <menu label="&staff.cat.manage_multi_bib_items.actions.menu.label;" accesskey="&staff.cat.manage_multi_bib_items.actions.menu.accesskey;">
73                     <menupopup>
74                         <menuitem command="opac" />
75                         <menuitem command="change" />
76                         <menuitem command="remove" />
77                     </menupopup>
78                 </menu>
79             </menubar>
80         </hbox>
81         <tree id="list" flex="1" enableColumnDrag="true" context="actions"/>
82         <hbox id="list_actions" />
83     </groupbox>
84
85 </window>
86