]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/copy_editor.xul
some tweaks and bug fixes
[Evergreen.git] / Open-ILS / xul / staff_client / server / cat / copy_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="chrome://open_ils_staff_client/skin/global.css" type="text/css"?>
9 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
10
11 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
12 <!-- LOCALIZATION -->
13 <!DOCTYPE window SYSTEM "chrome://open_ils_staff_client/locale/lang.dtd">
14
15 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
16 <!-- OVERLAYS -->
17 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
18
19 <window id="cat_copy_editor_win" 
20         onload="try { my_init(); } catch(E) { alert(E); }"
21         width="800" height="500" sizemode="maximized" persist="width height"
22         title="Copies"
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;
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="copy_editor.js"/>
34
35         <iframe id="brief_display"/>
36
37         <groupbox flex="1" style="overflow: auto">
38                 <caption id="caption" label="Copy Viewer"/>
39
40                 <hbox flex="1">
41                         <vbox style="overflow: scroll"> <!-- left pane -->
42                                 <groupbox id="gb_callnumbers">
43                                         <caption label="Call Numbers"/>
44                                         <vbox id="call_number_summary" flex="1"/>
45                                 </groupbox>
46                                 <groupbox id="gb_barcodes">
47                                         <caption label="Barcodes"/>
48                                         <vbox id="barcode_summary" flex="1"/>
49                                 </groupbox>
50                         </vbox>
51                         <splitter><grippy /></splitter>
52                         <vbox id="right_pane" style="overflow: scroll" flex="1"/> <!-- right pane -->
53                 </hbox>
54
55                 <hbox id="nav" hidden="true">
56                         <spacer flex="1"/>
57                         <button id="save" label="Modify" 
58                                 oncommand="g.stash_and_close();"/>
59                         <button id="save" label="Cancel" 
60                                 oncommand="window.close();"/>
61                 </hbox>
62
63                 <spacer/>
64         </groupbox>
65
66 </window>
67