Bug 16241 - Move staff client CSS out of language directory
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / admin / z3950servers.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2
3 [% BLOCK ServerType %]
4     [% IF (server.servertype||type) == 'sru' %]
5         SRU
6     [% ELSIF (server.servertype||type) == 'zed' %]
7         Z39.50
8     [% END %]
9 [% END %]
10
11 <title>Koha &rsaquo; Administration &rsaquo; Z39.50/SRU servers
12 [% IF op == 'edit' %] &rsaquo; Modify [% PROCESS ServerType %] server [% server.servername %][% END %]
13 [% IF op ==  'add' %] &rsaquo; New [% PROCESS ServerType %] server[% END %]
14 </title>
15 [% INCLUDE 'doc-head-close.inc' %]
16
17 [% IF op == 'list' %]
18     <link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" />
19     [% INCLUDE 'datatables.inc' %]
20 [% END %]
21
22 <script type="text/javascript">
23 //<![CDATA[
24 [% IF ( add_form ) %]
25     $(document).ready(function(){
26         // Update selects for syntax, encoding and recordtype
27         [% IF server %]
28             $("#syntax").val('[% server.syntax %]');
29             $("#encoding").val('[% server.encoding %]');
30             $("#recordtype").val('[% server.recordtype %]');
31         [% END %]
32         // Disable recordtype (and default to bib) for non-Z3950 servers until auth is supported
33         [% UNLESS (server.servertype||type) == 'zed' %]
34             $("#recordtype").prop('disabled',true);
35         [% END %]
36         $( "#serverentry" ).validate({
37             rules: {
38                 servername: { required: true },
39                 host: { required: true },
40                 port: {
41                     required: true,
42                     number: true
43                 },
44                 db: { required: true },
45                 rank: { number: true },
46                 timeout: { number: true }
47             }
48         });
49         $("#serverentry").submit(function( event ) {
50             // first test if show_sru_fields exists
51             if( $('#show_sru_fields').length && $('#show_sru_fields').val()=='' && !confirm( _("No SRU search field mappings have been defined. This means that all field searches will go through the whole record. Continue?"))) {
52                 return false;
53             }
54             // copy show_sru_fields to hidden counterpart
55             $('#sru_fields').val( $('#show_sru_fields').val() );
56             // enable recordtype to include field in post
57             $('#recordtype').prop('disabled',false);
58         });
59     });
60     function ModMapping () {
61         var map= $('#show_sru_fields').val();
62         window.open('/cgi-bin/koha/admin/sru_modmapping.pl?mapping='+map,'popup','width=800,height=400,resizable=no,toolbar=false,scrollbars=no,top');
63     }
64 [% ELSE %]
65     $(document).ready(function() {
66         $("#serverst").dataTable($.extend(true, {}, dataTablesDefaults, {
67             "aoColumnDefs": [
68                 { "aTargets": [2,3,4,7,8,9,10,11], "bSortable": false, "bSearchable": false },
69             ],
70             "sPaginationType": "four_button"
71         }));
72     });
73     function ConfirmDelete(name,id) {
74         if( confirm( _("Choose OK if you really want to delete server ")+
75           name+'.')) {
76             window.location="[% script_name %]?op=delete_confirmed&id="+id;
77         }
78         return false;
79     }
80 [% END %]
81 //]]>
82 </script>
83
84 </head>
85 <body id="admin_z3950servers" class="admin">
86 [% INCLUDE 'header.inc' %]
87 [% INCLUDE 'z3950-admin-search.inc' %]
88
89 <div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/admin/admin-home.pl">Administration</a> &rsaquo;
90 <a href="/cgi-bin/koha/admin/z3950servers.pl">Z39.50/SRU servers</a>
91 [% IF op == 'edit' %]&rsaquo; Modify [% PROCESS ServerType %] server [% server.servername %][% END %]
92 [% IF op ==  'add' %]&rsaquo; New [% PROCESS ServerType %] server[% END %]
93 </div>
94
95 <div id="doc3" class="yui-t2">
96 <div id="bd">
97 <div id="yui-main">
98 <div class="yui-b">
99
100 [% IF msg_deleted %]
101     <div class="dialog alert">Z39.50/SRU server deleted ([% msg_add %])</div>
102 [% ELSIF msg_updated %]
103     <div class="dialog message">Z39.50/SRU server updated ([% msg_add %])</div>
104 [% ELSIF msg_added %]
105     <div class="dialog message">Z39.50/SRU server added ([% msg_add %])</div>
106 [% ELSIF msg_notfound %]
107     <div class="dialog alert">Error: Server with id [% msg_add %] not found</div>
108 [% END %]
109
110 [% IF ( add_form ) %]
111     <form action="[% script_name %]" name="Aform" method="post" id="serverentry">
112         <input type="hidden" name="op" value="add_validated" />
113         <input type="hidden" name="servertype" value="[% server.servertype||type||'zed' %]"/>
114         [% IF op == 'edit' %]
115             <h1>Modify [% PROCESS ServerType %] server</h1>
116             <input type="hidden" name="id" value="[% server.id %]" />
117         [% ELSE %]
118             <h1>New [% PROCESS ServerType %] server</h1>
119         [% END %]                
120         <fieldset class="rows">
121         <ol>
122         <li><label for="name">Server name: </label><input type="text" name="servername" id="servername" size="65" maxlength="100" onblur="toUC(this)" value="[% server.servername | html %]"/></li>
123
124         <li><label for="host" class="required">Hostname: </label> <input type="text" name="host" id="host" size="30" value="[% server.host %]" required="required" /> <span class="required">Required</span>
125             [% IF (server.servertype||type) == 'sru' %]
126                 <div class="hint">Includes the domain part, but the path part of the URL should go into Database.</div>
127             [% END %]
128         </li>
129         <li><label for="port" class="required">Port: </label> <input type="text" name="port" id="port" size="5" value="[% server.port %]" required="required" /> <span class="required">Required</span>
130         </li>
131         <li><label for="db" class="required">Database: </label> <input type="text" name="db" id="db" value="[% server.db %]" required="required" /> <span class="required">Required</span>
132         </li>
133         <li><label for="userid">Userid: </label> <input type="text" name="userid" id="userid" value="[% server.userid %]" />
134         </li>
135         <li><label for="password">Password: </label> <input type="text" name="password" id="password" value="[% server.password %]" />
136         </li>
137         <li><label for="checked">Preselected (searched by default): </label>
138         [% IF ( server.checked ) %]
139             <input type="checkbox" name="checked" id="checked" value="1" checked="checked" />
140         [% ELSE %]
141             <input type="checkbox" name="checked" id="checked" value="1" />
142         [% END %]
143         </li>
144         <li><label for="rank">Rank (display order): </label> <input type="text" name="rank" id="rank" size="4" value="[% server.rank %]" />
145         </li>
146
147         <li><label for="syntax">Syntax (z3950 can send<br /> records in various format. Choose one): </label>
148         <select name="syntax" id="syntax">
149             <option value="UNIMARC">UNIMARC</option>
150             <option value="INTERMARC">INTERMARC</option>
151             <option value="CCF">CCF</option>
152             <option value="USMARC">MARC21/USMARC</option>
153             <option value="UKMARC">UKMARC</option>
154             <option value="NORMARC">NORMARC</option>
155             <option value="LIBRISMARC">LIBRISMARC</option>
156             <option value="DANMARC">DANMARC</option>
157             <option value="FINMARC">FINMARC</option>
158             <option value="CANMARC">CANMARC</option>
159             <option value="SBN">SBN</option>
160             <option value="PICAMARC">PICAMARC</option>
161             <option value="AUSMARC">AUSMARC</option>
162             <option value="IBERMARC">IBERMARC</option>
163             <option value="CATMARC">CATMARC</option>
164             <option value="MALMARC">MALMARC</option>
165         </select>
166         </li>
167
168         <li><label for="encoding">Encoding (z3950 can send<br /> records in various encodings. Choose one): </label>
169         <select name="encoding" id="encoding">
170             [% FOREACH enc IN [ 'utf8' 'EUC-KR' 'ISO_5426' 'ISO_6937' 'ISO_8859-1' 'MARC-8' ] %]
171                 <option value="[% enc %]">[% enc %]</option>
172             [% END %]
173         </select>
174         </li>
175
176         <li><label for="timeout">Timeout (0 its like not set): </label>
177         <input type="text" name="timeout" id="timeout" size="4" value="[% server.timeout %]" /> seconds
178         </li>
179         <li><label for="recordtype">Record type: </label>
180         <select name="recordtype" id="recordtype">
181             <option value="biblio">Bibliographic</option>
182             <option value="authority">Authority</option>
183         </select>
184         </li>
185         [% IF (server.servertype||type) == 'sru' %]
186         <li>
187         <label for="sru_options">Additional SRU options: </label>
188         <input type="text" name="sru_options" id="sru_options" size="50" value="[% server.sru_options %]"/>
189         <div class="hint">Separate options by commas. Example: sru=get,sru_version=1.1. See also http://www.indexdata.com/yaz/doc/zoom.html.</div>
190         </li>
191         <li>
192         <label for="sru_fields">SRU Search fields mapping: </label>
193         <input type="hidden" name="sru_fields" id="sru_fields" value="[% server.sru_fields %]" />
194         <input type="text" name="show_sru_fields" id="show_sru_fields" size="100" value="[% server.sru_fields %]" disabled/> <input type="button" value="Modify" onclick="ModMapping()" />
195         </li>
196         [% END %]
197         <li>
198         <label for="add_xslt">XSLT File(s) for transforming results: </label>
199         <input type="text" name="add_xslt" id="add_xslt" size="100" value="[% server.add_xslt %]"/>
200         <div class="hint">Separate multiple filenames by commas.</span>
201         </li>
202
203         </ol>
204         </fieldset>
205
206         <fieldset class="action"><input type="submit" value="Save" /> <a class="cancel" href="/cgi-bin/koha/admin/z3950servers.pl">Cancel</a></fieldset>
207     </form>
208 [% END %]
209
210 [% IF op == 'list' %]
211     <div id="toolbar" class="btn-toolbar">
212         <a id="newserver" class="btn btn-small" href="/cgi-bin/koha/admin/z3950servers.pl?op=add&type=zed"><i class="fa fa-plus"></i> New Z39.50 server</a>
213         <a id="newserver" class="btn btn-small" href="/cgi-bin/koha/admin/z3950servers.pl?op=add&type=sru"><i class="fa fa-plus"></i> New SRU server</a>
214     </div>
215     <h3>Z39.50/SRU servers administration</h3>
216     [% IF id %]
217         You searched for record [% id %]
218     [% ELSIF searchfield %]
219         You searched for [% searchfield %]
220     [% END %]
221     <table id="serverst">
222         <thead><tr><th>Target</th><th>Hostname/Port</th><th>Database</th><th>Userid</th><th>Password</th><th>Preselected</th><th>Rank</th><th>Syntax</th><th>Encoding</th><th>Timeout</th><th>Record type</th><th></th>
223         </tr></thead>
224         <tbody>
225         [% FOREACH loo IN loop %]
226             <tr>
227             <td><a href="[% loo.script_name %]?op=edit&amp;id=[% loo.id %]">[% loo.servername %]</a></td><td>[% loo.host %]:[% loo.port %]</td><td>[% loo.db %]</td><td>[% loo.userid %]</td><td>[% IF loo.password %]########[% END %]</td><td>[% IF ( loo.checked ) %]Yes[% ELSE %]No[% END %]</td><td>[% loo.rank %]</td>
228             <td>[% loo.syntax %]</td><td>[% loo.encoding %]</td><td>[% loo.timeout %]</td>
229             <td>[% IF ( loo.recordtype == 'biblio' )  %]
230                 <span>Bibliographic</span>
231                 [% ELSIF ( loo.recordtype == 'authority' ) %]
232                 <span>Authority</span>
233                 [% END %]
234             </td>
235             <td>
236                 <div class="dropdown">
237                     <a class="btn btn-mini dropdown-toggle" id="reportactions[% savedreport.id %]" role="button" data-toggle="dropdown" href="#">
238                         Actions <b class="caret"></b>
239                     </a>
240                     <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="reportactions[% savedreport.id %]">
241                         <li><a href="[% loo.script_name %]?op=edit&amp;id=[% loo.id %]"><i class="fa fa-pencil"></i> Edit</a></li>
242                         <li><a href="[% loo.script_name %]?op=add&amp;id=[% loo.id %]"><i class="fa fa-copy"></i> Copy</a></li>
243                         <li><a href="javascript:void(0);" onclick="ConfirmDelete('[% loo.servername | replace("['\"]","") %]','[% loo.id %]');"><i class="fa fa-remove"></i> Delete</a></li>
244                     </ul>
245                 </div>
246             </td>
247             </tr>
248         [% END %]
249         </tbody>
250     </table>
251 [% END %]
252
253 </div>
254 </div>
255 <div class="yui-b">
256 [% INCLUDE 'admin-menu.inc' %]
257 </div>
258 </div>
259 [% INCLUDE 'intranet-bottom.inc' %]