]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/volume_editor.xul
Monograph Parts; Unified vol/copy wizard; Call Number affixes; Instant Detail
[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
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="cat_volume_editor_win" 
21     onload="try { my_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     title="&staff.cat.volume_editor.title;" height="800" width="300" oils_persist="height width"
23     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
24
25     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
26     <!-- BEHAVIOR -->
27         <script type="text/javascript">
28         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
29     </script>
30         <scripts id="openils_util_scripts"/>
31
32     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
33     <script type="text/javascript" src="volume_editor.js"/>
34
35     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
36     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
37
38     <groupbox flex="1" style="overflow: auto">
39         <caption id="caption" label="&staff.cat.volume_editor.caption.label;"/>
40         <hbox>
41             <button label="&staff.cat.volume_editor.cancel.label;" accesskey="&staff.cat.volume_editor.cancel.accesskey;" oncommand="window.close();"/>
42             <spacer flex="1" />
43             <button label="&staff.cat.volume_editor.modify.label;" accesskey="&staff.cat.volume_editor.modify.accesskey;" oncommand="g.stash_and_close();"/>
44         </hbox>
45         <hbox>
46             <spacer flex="1" />
47             <checkbox id="auto_merge" label="&staff.cat.volume_editor.automerge.label;" accesskey="&staff.cat.volume_editor.automerge.accesskey;" oils_persist="checked"/>
48         </hbox>
49         <grid flex="1">
50             <columns>
51                 <column />
52                 <column />
53                 <column />
54                 <column flex="1"/>
55                 <column />
56             </columns>
57             <rows id="rows">
58                 <row>
59                     <label value="&staff.cat.volume_editor.owning_lib;" class="header"/>
60                     <label value="&staff.cat.volume_editor.classification;" class="header"/>
61                     <label value="&staff.cat.volume_editor.prefix;" class="header"/>
62                     <label value="&staff.cat.volume_editor.label;" class="header"/>
63                     <label value="&staff.cat.volume_editor.suffix;" class="header"/>
64                 </row>
65             </rows>
66         </grid>
67     </groupbox>
68
69 </window>
70