updated release notes for 3.14.0 beta
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / modules / cataloguing / z3950_search.tt
1 [% INCLUDE 'doc-head-open.inc' %]
2 <title>Koha &rsaquo; Z39.50 search results</title>
3 [% INCLUDE 'greybox.inc' %]
4 [% INCLUDE 'doc-head-close.inc' %]
5 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.checkboxes.min.js"></script>
6 <link rel="stylesheet" type="text/css" href="[% themelang %]/css/datatables.css" />
7 <script type="text/javascript" src="[% themelang %]/lib/jquery/plugins/jquery.dataTables.min.js"></script>
8 [% INCLUDE 'datatables-strings.inc' %]
9 <script type="text/javascript" src="[% themelang %]/js/datatables.js"></script>
10 <script type="text/javascript">
11 //<![CDATA[
12 function Import(GetThisOne,biblionumber) {
13     opener.document.location="../cataloguing/addbiblio.pl?biblionumber="+biblionumber+"&z3950=1&frameworkcode=[% frameworkcode %]&breedingid="+GetThisOne;
14     window.close();
15     return false;
16 }
17
18 function closemenu(){
19     $(".linktools").hide();
20     $("tr").removeClass("selected");
21 }
22
23 $(document).ready(function(){
24     $("#CheckAll").click(function(){
25         $(".checkboxed").checkCheckboxes();
26         return false;
27     });
28     $("#CheckNone").click(function(){
29         $(".checkboxed").unCheckCheckboxes();
30         return false;
31     });
32     $("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, {
33         "sDom": 't',
34         "aoColumnDefs": [
35             { "aTargets": [ -1,-2,-3 ], "bSortable": false, "bSearchable": false },
36             { "aTargets": [ 1 ], "sType": "nsb-nse" },
37         ],
38         "aaSorting": [[ 1, "asc" ]],
39         "bPaginate": false
40     }));
41         /* Inline edit/delete links */
42         $("td").click(function(event){
43             var $tgt = $(event.target);
44             var row = $(this).parent();
45             $(".linktools").hide();
46             $("tr").removeClass("selected");
47             row.addClass("selected");
48             if($tgt.is("a")||$tgt.is(":nth-child(7)")||$tgt.is(":nth-child(8)")||$tgt.is(":nth-child(9)")||$tgt.is(":nth-child(10)")){
49                 return true;
50             } else {
51                 var position = $(this).offset();
52                 var top = position.top+5;
53                 var left = position.left+5;
54                 $(".linktools",row).show().css("position","absolute").css("top",top).css("left",left);
55             }
56         });
57     $("form[name='f']").submit(function(){
58         if ($('input[type=checkbox]').filter(':checked').length == 0) {
59             alert(_("Please choose at least one Z39.50 target"));
60             return false;
61         } else
62             return true;
63     });
64 });
65
66 [% IF ( total_pages ) %]
67 function validate_goto_page(){
68     var page = $('#goto_page').val();
69     if(isNaN(page)) {
70         alert(_("The page entered is not a number."));
71         return false;
72     }
73     else if(page < 1 || page > [% total_pages %] ) {
74         alert(_("The page should be a number between 1 and ") + [% total_pages %] + ".");
75         return false;
76     }
77     else {
78         return true;
79     }
80 }
81 [% END %]
82
83 //]]>
84 </script>
85 <style type="text/css">
86 .linktools { background-color:#FFF;border-top:1px solid #DDD; border-left: 1px solid #DDD; border-right: 1px solid #666; border-bottom:1px solid #666;display: none; white-space: nowrap;}
87 .linktools a { font-size : 85%; text-decoration:none; padding:.3em;;background-color:#FFF; display:block;float:left;border-right:1px solid #DDD;}
88 .linktools a:hover { background-color:#EEE;color:#CC3300;border-right:1px solid #CCC;}
89 tr.selected { background-color : #FFFFCC; } tr.selected td { background-color : transparent; }
90 </style>
91       [% IF ( opsearch ) %]
92    <style type="text/css">
93            #custom-doc { width:53em;*width:51.72em;min-width:689px; margin:auto; text-align:left; }
94    </style>
95 </head>
96 <body id="cat_z3950_search" class="cat">
97
98 <div id="custom-doc" class="yui-t7">
99 [% ELSE %]
100 </head>
101 <body style="padding:.5em;">
102 <div>
103 [% END %]
104       <div id="bd">
105           [% IF ( opsearch ) %]
106 <h2>Z39.50 search points</h2>
107     <form method="post" action="z3950_search.pl" name="f" class="checkboxed">
108     <input type="hidden" name="op" id="op" value="do_search" />
109         <div class="yui-g">
110     <div class="yui-u first">
111             <fieldset class="rows"> 
112         <ol><li><label for="title">Title: </label> <input type="text" id="title"  name="title" value="[% title |html %]" /></li>
113         <li><label for="isbn">ISBN: </label> <input type="text" id="isbn" name="isbn" value="[% isbn %]" /></li>
114         <li><label for="lccall">LC call number: </label> <input type="text" id="lccall" name="lccall" value="" /></li>
115         <li><label for="controlnumber">Control no.: </label> <input type="text" id="controlnumber" name="controlnumber" value="" /></li>
116                  <li><label for="srchany">Raw (any): </label> <input type="text" id="srchany" name="srchany" value="" /></li></ol>
117                 </fieldset>
118             </div>
119     <div class="yui-u">
120     <fieldset class="rows">
121         <ol>
122         <li><label for="author">Author: </label> <input type="text" id="author" name="author" value="[% author %]" /></li>
123         <li><label for="issn">ISSN: </label> <input type="text" id="issn" name="issn" value="[% issn %]" /></li>
124         <li> <label for="subject">Subject heading: </label> <input type="text" id="subject" name="subject" value="" /></li>
125                  <li><label for="dewey">Dewey: </label> <input type="text" id="dewey" name="dewey" value="" /></li>
126                  <li><label for="stdid">Standard ID: </label> <input type="text" id="stdid" name="stdid" value="" /></li></ol>
127     </fieldset>
128     <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
129     <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" />
130             </div>
131 </div>
132 <div class="yui-g">
133 <h2>Search targets <span style="display: inline; font-size: 70%; padding-left: 1em;"><span class="checkall"><a id="CheckAll" href="#">Select all</a></span><span class="clearall"><a id="CheckNone" href="#">Clear all</a></span></span></h2>
134
135     [% FOREACH serverloo IN serverloop %]
136         <p> 
137             [% IF ( serverloo.checked ) %]
138                 <input type="checkbox" name="id" id="z3950_[% serverloo.id %]" value="[% serverloo.id %]" checked="checked" />
139             [% ELSE %]
140                 <input type="checkbox" name="id" id="z3950_[% serverloo.id %]" value="[% serverloo.id %]" />
141             [% END %]
142             <label for="z3950_[% serverloo.id %]">[% serverloo.name %]</label>  
143
144         </p>
145     [% END %]
146         </div>
147     <fieldset class="action"><input type="submit"  class="submit" value="Search" onclick="cursor :'wait'"/> <a class="cancel close" href="#">Cancel</a></fieldset>
148     </form>
149
150
151 [% ELSE %]
152     <h2>Results</h2>
153     [% IF ( breeding_loop ) %]
154     <table id="resultst">
155 <thead>    <tr>
156         <th>Server</th>
157         <th>Title</th>
158         <th>Author</th>
159         <th>Date</th>
160         <th>Edition</th>
161         <th>ISBN</th>
162         <th>LCCN</th>
163         <th>MARC</th>
164         <th>Card</th>
165                 <th>&nbsp;</th>
166     </tr></thead>
167     <tbody>[% FOREACH breeding_loo IN breeding_loop %]
168         [% IF ( breeding_loo.breedingid ) %]
169
170             <tr id="row[% breeding_loo.breedingid %]">
171             <td>[% breeding_loo.server %] <div class="linktools"><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" rel="gb_page_center[600,500]">Preview MARC</a> <a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% breeding_loo.breedingid %]" rel="gb_page_center[600,500]">Preview card</a> <a href="#" onclick="Import([% breeding_loo.breedingid %],[% breeding_loo.biblionumber %]); return false">Import</a><a href="#" onclick="closemenu();return false;" title="Close this menu"> X </a></div> </td>
172             <td>[% breeding_loo.title |html %]</td>
173             <td>[% breeding_loo.author %]</td>
174             <td>[% breeding_loo.date %]</td>
175             <td>[% breeding_loo.edition %]</td>
176             <td>[% breeding_loo.isbn %]</td>
177             <td>[% breeding_loo.lccn %]</td>
178             <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">MARC</a></td>
179             <td><a href="/cgi-bin/koha/catalogue/showmarc.pl?viewas=card&amp;importid=[% breeding_loo.breedingid %]" title="MARC" rel="gb_page_center[600,500]">Card</a></td>
180             <td><a href="#" onclick="Import([% breeding_loo.breedingid %],[% breeding_loo.biblionumber %]); return false">Import</a></td> 
181         </tr>
182         [% END %]
183     [% END %]</tbody>
184 </table>
185
186     <form method="post" action="z3950_search.pl" id="page_form" name="page_form" class="checkboxed">
187         <input type="hidden" name="op" id="op" value="do_search" />
188         <input type="hidden" name="current_page" id="current_page" value="[% current_page %]" />
189         <input type="hidden" id="title"  name="title" value="[% title %]" />
190         <input type="hidden" id="isbn" name="isbn" value="[% isbn %]" />
191         <input type="hidden" id="lccall" name="lccall" value="[% lccall %]" />
192         <input type="hidden" id="controlnumber" name="controlnumber" value="[% controlnumber %]" />
193         <input type="hidden" id="srchany" name="srchany" value="[% srchany %]" />
194         <input type="hidden" id="author" name="author" value="[% author %]" />
195         <input type="hidden" id="subject" name="subject" value="[% subject %]" />
196         <input type="hidden" id="dewey" name="dewey" value="[% dewey %]" />
197         <input type="hidden" id="stdid" name="stdid" value="[% stdid %]" />
198         <input type="hidden" name="biblionumber" value="[% biblionumber %]" />
199         <input type="hidden" name="frameworkcode" value="[% frameworkcode %]" />
200
201         [% FOREACH server IN servers %]
202         <input type="hidden" name="id" id="z3950_[% server.id %]" value="[% server.id %]" />
203         [% END %]
204
205         [% IF ( show_prevbutton ) %]
206             <input type="button" name="changepage_prev" value="Previous Page" onclick="$('#current_page').val([% current_page %]-1);$('#page_form').submit();" />
207         [% END %]
208         Page [% current_page %] / [% total_pages %]
209         [% IF ( show_nextbutton ) %]
210             <input type="button" name="changepage_next" value="Next Page" onclick="$('#current_page').val([% current_page %]+1);$('#page_form').submit();" />
211         [% END %]
212         <br />Go to page : <input id="goto_page" name="goto_page" value="[% current_page %]" size="4" /><input type="submit" name="changepage_goto" onclick="return validate_goto_page();" value="Go" />
213     </form>
214
215 <p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode %]"/><input type="submit" value="Try Another Search"/></form></p>
216     [% ELSE %]
217         [% IF ( errconn ) %]
218             <div class="dialog alert">
219                 <ul>
220                 [% FOREACH errcon IN errconn %]
221                     [% IF ( errcon.error == '10000' ) %]<li>Connection failed to [% errcon.server %]</li>
222                     [% ELSIF ( errcon.error == '10007' ) %]<li>Connection timeout to [% errcon.server %]</li>[% END %]
223                 [% END %]
224                 </ul>
225             </div>
226          [% END %]
227    <div class="dialog message">Nothing found.</div>
228         <p><form method="get" action="/cgi-bin/koha/cataloguing/z3950_search.pl"><input type="hidden" name="biblionumber" value="[% biblionumber %]"/><input type="hidden" name="frameworkcode" value="[% frameworkcode %]"/><input type="submit" value="Try Another Search"/></form></p>
229     [% END %]
230
231
232 [% END %]
233
234         </div>
235 </div>
236 [% IF ( numberpending ) %]<h3 align="center">Still [% numberpending %] servers to search</h3>[% END %]
237
238 </body>
239 </html>
240