]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/volume_editor.xul
Merge remote branch 'working/user/shadowspar/ttopac-altcleanup' into template-toolkit...
[Evergreen.git] / Open-ILS / xul / staff_client / server / cat / volume_editor.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Copy Viewer/Editor -->
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 <?xml-stylesheet href="/xul/server/skin/cat.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window PUBLIC "" ""[
14     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="cat_volume_editor_win" 
22     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
23     title="&staff.cat.volume_editor.title;" height="800" width="300" oils_persist="height width"
24     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
25
26     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27     <!-- BEHAVIOR -->
28         <script type="text/javascript">
29         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
30     </script>
31         <scripts id="openils_util_scripts"/>
32
33     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
34     <script type="text/javascript" src="volume_editor.js"/>
35
36     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
37     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
38
39     <groupbox flex="1" style="overflow: auto">
40         <caption id="caption" label="&staff.cat.volume_editor.caption.label;"/>
41         <hbox>
42             <button label="&staff.cat.volume_editor.cancel.label;" accesskey="&staff.cat.volume_editor.cancel.accesskey;" oncommand="window.close();"/>
43             <spacer flex="1" />
44             <button label="&staff.cat.volume_editor.modify.label;" accesskey="&staff.cat.volume_editor.modify.accesskey;" oncommand="g.stash_and_close();"/>
45         </hbox>
46         <hbox>
47             <spacer flex="1" />
48             <checkbox id="auto_merge" label="&staff.cat.volume_editor.automerge.label;" accesskey="&staff.cat.volume_editor.automerge.accesskey;" tooltiptext="&staff.cat.volume_editor.automerge.description;" oils_persist="checked"/>
49         </hbox>
50         <grid flex="1">
51             <columns>
52                 <column />
53                 <column class="cn_class"/>
54                 <column class="cn_prefix"/>
55                 <column />
56                 <column class="cn_suffix"/>
57             </columns>
58             <rows id="rows">
59                 <row id="batch_bar">
60                     <spacer />
61                     <vbox class="cn_class">
62                         <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.classification;"
63                             class="header"/>
64                         <hbox id="batch_class"/>
65                     </vbox>
66                     <vbox class="cn_prefix">
67                         <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.prefix;"
68                             class="header"/>
69                         <hbox id="batch_prefix"/>
70                     </vbox>
71                     <vbox>
72                         <label
73                             value="&staff.cat.volume_copy_creator.batch_bar.call_number.label.label;"
74                             accesskey="&staff.cat.volume_copy_creator.batch_bar.call_number.label.accesskey;"
75                             control="marc_cn_menulist" class="header"/>
76                         <hbox id="marc_cn"/>
77                     </vbox>
78                     <vbox class="cn_suffix">
79                         <label value="&staff.cat.volume_copy_creator.batch_bar.call_number.suffix;"
80                             class="header"/>
81                         <hbox id="batch_suffix"/>
82                     </vbox>
83                     <vbox>
84                         <label class="header" value="&staff.cat.volume_copy_creator.batch_bar;"/>
85                         <hbox id="batch_button_box"/>
86                     </vbox>
87                 </row>
88                 <row>
89                     <label value="&staff.cat.volume_editor.owning_lib;" class="header"/>
90                     <label value="&staff.cat.volume_editor.classification;" class="header cn_class"/>
91                     <label value="&staff.cat.volume_editor.prefix;" class="header cn_prefix"/>
92                     <label value="&staff.cat.volume_editor.label;" class="header"/>
93                     <label value="&staff.cat.volume_editor.suffix;" class="header cn_suffix"/>
94                 </row>
95             </rows>
96         </grid>
97     </groupbox>
98
99 </window>
100