]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/admin/org_unit_settings.xhtml
opac/staff login timeouts are now inherited (see last change to oils_utils.c)
[Evergreen.git] / Open-ILS / xul / staff_client / server / admin / org_unit_settings.xhtml
1 <?xml version='1.0' encoding="UTF-8"?>
2 <!-- 
3 # Copyright (C) 2008  Georgia Public Library Service
4 # Bill Erickson <erickson@esilibrary.com>
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 -->
15
16 <!DOCTYPE html PUBLIC 
17         "-//W3C//DTD XHTML 1.0 Transitional//EN" 
18         "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" [
19         <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
20 ]>
21
22 <html xmlns='http://www.w3.org/1999/xhtml'>
23     <head>
24         <title>Org Unit Settings</title>
25         <link type='text/css' rel='stylesheet' href='admin.css'/>
26         <script type="text/javascript" djConfig="parseOnLoad: true,isDebug:false" src="/js/dojo/dojo/dojo.js"></script>
27         <script type="text/javascript" src='org_unit_settings.js'></script>
28         <script>
29             // Configure the different settings
30             var osSettings = {
31                 'circ.lost_materials_processing_fee' : {
32                     label : '&staff.server.admin.org_settings.lost_fee;',
33                     type : 'currency',
34                 },
35                 'cat.default_item_price' : {
36                     label : '&staff.server.admin.org_settings.default_price;',
37                     type : 'currency',
38                 },
39                 'auth.opac_timeout' : {
40                     label : '&staff.server.admin.org_settings.opac_timeout;',
41                     type : 'number',
42                 },
43                 'auth.staff_timeout' : {
44                     label : '&staff.server.admin.org_settings.staff_timeout;',
45                     type : 'number',
46                 },
47                 'org.bounced_emails' : {
48                     label : '&staff.server.admin.org_settings.from_address;',
49                     desc : '&staff.server.admin.org_settings.bounce_note;'
50                 },
51                 'circ.hold_expire_alert_interval' : {
52                     label : '&staff.server.admin.org_settings.circ.hold_expire_alert_interval;',
53                     desc : '&staff.server.admin.org_settings.circ.hold_expire_alert_interval.desc;',
54                 },
55                 'circ.hold_expire_interval' : {
56                     label : '&staff.server.admin.org_settings.circ.hold_expire_interval;',
57                     desc : '&staff.server.admin.org_settings.circ.hold_expire_interval.desc;',
58                 },
59                 'global.credit.allow' : {
60                     label : '&staff.server.admin.org_settings.global.credit.allow;',
61                     desc : '&staff.server.admin.org_settings.global.credit.allow.desc;',
62                     type : 'bool'
63                 },
64                 'global.default_locale' : {
65                     label : '&staff.server.admin.org_settings.global.default_locale;',
66                 },
67                 'circ.void_overdue_on_lost' : {
68                     label : '&staff.server.admin.org_settings.circ.void_overdue_on_lost;',
69                     type : 'bool'
70                 },
71                 'circ.hold_stalling.soft' : {
72                     label : '&staff.server.admin.org_settings.circ.hold_stalling.soft;',
73                     desc : '&staff.server.admin.org_settings.circ.hold_stalling.soft.desc;',
74                 },
75                 'circ.hold_boundary.hard' : {
76                     label : '&staff.server.admin.org_settings.circ.hold_boundary.hard;',
77                     type : 'number'
78                 },
79                 'circ.hold_boundary.soft' : {
80                     label : '&staff.server.admin.org_settings.circ.hold_boundary.soft;',
81                     type : 'number'
82                 },
83                 'opac.barcode_regex' : {
84                     label : '&staff.server.admin.org_settings.opac.barcode_regex;',
85                     desc : '&staff.server.admin.org_settings.opac.barcode_regex.desc;'
86                 },
87                 'circ.item_checkout_history.max' : {
88                     label : '&staff.server.admin.org_settings.circ.item_checkout_history.max;',
89                     desc : '&staff.server.admin.org_settings.circ.item_checkout_history.max.desc;'
90                 },
91                 'circ.reshelving_complete.interval' : {
92                     label : '&staff.server.admin.org_settings.circ.reshelving_complete.interval;',
93                     desc : '&staff.server.admin.org_settings.circ.reshelving_complete.interval.desc;',
94                     noInherit : true
95                 }
96             };
97         </script>
98     </head>
99     <body class="tundra tall">
100         <div dojoType="dijit.layout.LayoutContainer" orientation="vertical" class="tall">
101             <div dojoType="dijit.layout.ContentPane" layoutAlign='top'>
102                 <h1>Org Unit Settings</h1><br/>
103                 <span>Context Location</span>
104                 <span>
105                     <select dojoType="openils.widget.OrgUnitFilteringSelect" jsId='osContextSelector'
106                         searchAttr="shortname" autocomplete="true" labelAttr='shortname' onchange='osChangeContext();'> 
107                     </select>
108                 </span>
109                 <span> * Indicates the setting is not inherited from the parent at run time</span>
110             </div>
111             <div dojoType="dijit.layout.ContentPane" layoutAlign='client' class='tall'>
112                 <script>
113                     var osGridLayout = [{
114                         defaultCell: {styles: 'text-align: center;'},
115                         cells : [[
116                             {name: 'Edit', get: osGetEditLink, 
117                                 value: '&lt;a href=&quot;javascript:void(0);&quot; onclick=&quot;osLaunchEditor(\'SETTING\');&quot;>Edit&lt;/a>'},
118                             {name: 'Setting', get: osGetGridData, field:'label', width:'auto'},
119                             {name: 'Context', get: osGetGridData, field:'context', width:'auto'},
120                             {name: 'Value', get: osGetGridData, field:'value', width:'auto'},
121                         ]]
122                     }];
123                 </script>
124                 <div dojoType='dojox.Grid' jsId='osGrid'> </div>
125             </div>
126         </div>
127
128         <!-- edit dialog -->
129         <div dojoType="dijit.Dialog" jsId='osEditDialog' title="Edit Setting">
130             <table class='form_table'>
131                 <thead>
132                     <tr><td colspan='2' align='center'><div id='os-edit-name'/></td></tr>
133                     <tr><td colspan='2' align='center'><div id='os-edit-desc' style='max-width:600px;'/></td></tr>
134                 </thead>
135                 <tbody>
136                     <tr>
137                         <td>Context</td>
138                         <td> 
139                             <select dojoType="openils.widget.OrgUnitFilteringSelect" jsId='osEditContextSelector'
140                                 searchAttr="shortname" autocomplete="true" labelAttr='shortname'> 
141                             </select>
142                         </td>
143                     </tr>
144                     <tr>
145                         <td>Value</td>
146                         <td>
147                             <input dojoType='dijit.form.TextBox' jsId='osEditTextBox'/>
148                             <input dojoType='dijit.form.CurrencyTextBox' jsId='osEditCurrencyTextBox'/>
149                             <input dojoType='dijit.form.NumberTextBox' jsId='osEditNumberTextBox'/>
150                             <select dojoType='dijit.form.FilteringSelect' jsId='osEditBoolSelect'>
151                                 <option value='true'>&common.true;</option>
152                                 <option value='false'>&common.false;</option>
153                             </select>
154                         </td>
155                     </tr>
156                     <tr>
157                         <td> 
158                             <button dojoType='dijit.form.Button' onclick='osEditSetting(true);'>Delete Setting</button>
159                         </td>
160                         <td> 
161                             <button dojoType='dijit.form.Button' onclick='osEditSetting();'>Update Setting</button>
162                         </td>
163                     </tr>
164                 </tbody>
165             </table>
166         </div> <!-- edit dialog -->
167         <span id='os-true' class='hidden'>&common.true;</span>
168         <span id='os-false' class='hidden'>&common.false;</span>
169     </body>
170 </html>
171