]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/cat/volume_copy_creator.xul
font resizer
[Evergreen.git] / Open-ILS / xul / staff_client / server / cat / volume_copy_creator.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 PUBLIC "" ""[
14         <!--#include virtual="/opac/locale/en-US/lang.dtd"-->
15 ]>
16
17 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
18 <!-- OVERLAYS -->
19 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
20
21 <window id="cat_volume_copy_creator_win" 
22         onload="try { my_init(); font_helper(); } catch(E) { alert(E); }"
23         width="800" height="580"
24         title="Volume/Copy Editor"
25         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
26
27         <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
28         <!-- BEHAVIOR -->
29         <script type="text/javascript">
30                 var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};
31         </script>
32         <scripts id="openils_util_scripts"/>
33
34         <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
35         <script type="text/javascript" src="volume_copy_creator.js"/>
36
37         <iframe id="summary" />
38         <groupbox flex="1" style="overflow: auto">
39                 <caption id="caption" label="Volume/Copy Creator"/>
40                 <hbox style="border-bottom: solid black thin">
41                         <hbox id="marc_cn"/>
42                         <spacer flex="1" />
43                         <checkbox id="check_barcodes" label="Check Barcodes?" persist="checked" accesskey="B"/>
44                         <checkbox id="print_labels" label="Print Labels?" persist="checked" accesskey="P"/>
45                         <button id="Create" accesskey="C" label="Edit then Create" disabled="true" oncommand="g.stash_and_close();"/>
46                 </hbox>
47                 <grid flex="1">
48                         <columns> <column flex="0"/> <column flex="0"/> <column flex="1"/> </columns>
49                         <rows id="rows">
50                                 <row>
51                                         <label value="Library" style="font-weight: bold"/>
52                                         <label value="# of volumes" style="font-weight: bold"/>
53                                 </row>
54                         </rows>
55                 </grid>
56         </groupbox>
57
58 </window>
59