]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/admin/work_log.xul
LP2061136 - Stamping 1405 DB upgrade script
[Evergreen.git] / Open-ILS / xul / staff_client / server / admin / work_log.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Display log of recent staff actions -->
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="work_log_win" 
21     onload="try { font_helper(); persist_helper(); /* my_init depends on values that persist_helper may set */ my_init(); } 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     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
31
32     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
33     <script type="text/javascript" src="work_log.js"/>
34
35     <vbox flex="1">
36         <vbox flex="1" id="before_splitter" oils_persist="height">
37             <hbox>
38                 <textbox id="desire_number_of_work_log_entries" type="number" oils_persist="value" />
39                 <label value="&staff.admin.work_log.list1.header;" class="header1"/>
40                 <spacer flex="1"/>
41                 <button id="refresh_btn" label="&staff.admin.work_log.refresh_btn.label;" accesskey="&staff.admin.work_log.refresh_btn.accesskey;" command="cmd_refresh" style="-moz-user-focus: normal" />
42                 <button label="&staff.admin.work_log.list1.retrieve_item_btn.label;" accesskey="&staff.admin.work_log.list1.retrieve_item_btn.accesskey;" command="cmd_retrieve_item" style="-moz-user-focus: normal" />
43                 <button label="&staff.admin.work_log.list1.retrieve_patron_btn.label;" accesskey="&staff.admin.work_log.list1.retrieve_patron_btn.accesskey;" command="cmd_retrieve_patron1" style="-moz-user-focus: normal" />
44             </hbox>
45             <tree id="work_action_log" flex="1" enableColumnDrag="true" context="work_log_actions"/>
46         </vbox>
47         <splitter id="splitter" oils_persist="state hidden" oils_persist_peers="before_splitter after_splitter"><grippy/></splitter>
48         <vbox flex="1" id="after_splitter" oils_persist="height">
49             <hbox>
50                 <textbox id="desire_number_of_patron_log_entries" type="number" oils_persist="value" />
51                 <label value="&staff.admin.work_log.list2.header;" class="header1"/>
52                 <spacer flex="1"/>
53                 <button label="&staff.admin.work_log.list2.retrieve_patron_btn.label;" accesskey="&staff.admin.work_log.list2.retrieve_patron_btn.accesskey;" command="cmd_retrieve_patron2" style="-moz-user-focus: normal" />
54             </hbox>
55             <tree id="work_patron_log" flex="1" enableColumnDrag="true" context="patron_actions"/>
56         </vbox>
57     </vbox>
58
59     <popupset>
60         <menupopup id="work_log_actions">
61             <menuitem label="&staff.admin.work_log.list1.retrieve_item_btn.label;" accesskey="&staff.admin.work_log.list1.retrieve_item_btn.accesskey;" command="cmd_retrieve_item" />
62             <menuitem label="&staff.admin.work_log.list1.retrieve_patron_btn.label;" accesskey="&staff.admin.work_log.list1.retrieve_patron_btn.accesskey;" command="cmd_retrieve_patron1" />
63         </menupopup>
64         <menupopup id="patron_actions">
65             <menuitem label="&staff.admin.work_log.list2.retrieve_patron_btn.label;" accesskey="&staff.admin.work_log.list2.retrieve_patron_btn.accesskey;" command="cmd_retrieve_patron2" />
66         </menupopup>
67     </popupset>
68
69     <commandset>
70         <command id="cmd_refresh" />
71         <command id="cmd_retrieve_item" />
72         <command id="cmd_retrieve_patron1" />
73         <command id="cmd_retrieve_patron2" />
74     </commandset>
75
76 </window>
77