Bug 10907: Optionally show the staff member's name who managed a suggestion in OPAC
[koha.git] / koha-tmpl / opac-tmpl / bootstrap / en / modules / ilsdi.tt
1 [% USE Koha %]
2 [% INCLUDE 'doc-head-open.inc' %][% LibraryNameTitle or "Koha online" %] catalog ›
3     [% IF ( GetAvailability ) %]
4         ILS-DI › GetAvailability
5     [% ELSIF ( GetRecords ) %]
6         ILS-DI › GetRecords
7     [% ELSIF ( GetAuthorityRecords ) %]
8         ILS-DI › GetAuthorityRecords
9     [% ELSIF ( LookupPatron ) %]
10         ILS-DI › LookupPatron
11     [% ELSIF ( AuthenticatePatron ) %]
12         ILS-DI › AuthenticatePatron
13     [% ELSIF ( GetPatronInfo ) %]
14         ILS-DI › GetPatronInfo
15     [% ELSIF ( GetPatronStatus ) %]
16         ILS-DI › GetPatronStatus
17     [% ELSIF ( GetServices ) %]
18         ILS-DI › GetServices
19     [% ELSIF ( RenewLoan ) %]
20         ILS-DI › RenewLoan
21     [% ELSIF ( HoldTitle ) %]
22         ILS-DI › HoldTitle
23     [% ELSIF ( HoldItem ) %]
24         ILS-DI › HoldItem
25     [% ELSIF ( CancelHold ) %]
26         ILS-DI › CancelHold
27     [% ELSE %]
28         ILS-DI
29     [% END %]
30 [% INCLUDE 'doc-head-close.inc' %]
31 [% BLOCK cssinclude %][% END %]
32 </head>
33 <body>
34 [% INCLUDE 'masthead.inc' %]
35
36     <div class="main">
37         <ul class="breadcrumb">
38             <li><a href="/cgi-bin/koha/opac-main.pl">Home</a> <span class="divider">&rsaquo;</span></li>
39             [% IF ( GetAvailability ) %]
40                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
41                 <li><a href="#">GetAvailability</a></li>
42             [% ELSIF ( GetRecords ) %]
43                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
44                 <li><a href="#">GetRecords</a></li>
45             [% ELSIF ( GetAuthorityRecords ) %]
46                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
47                 <li><a href="#">GetAuthorityRecords</a></li>
48             [% ELSIF ( LookupPatron ) %]
49                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
50                 <li><a href="#">LookupPatron</a></li>
51             [% ELSIF ( AuthenticatePatron ) %]
52                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
53                 <li><a href="#">AuthenticatePatron</a></li>
54             [% ELSIF ( GetPatronInfo ) %]
55                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
56                 <li><a href="#">GetPatronInfo</a></li>
57             [% ELSIF ( GetPatronStatus ) %]
58                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
59                 <li><a href="#">GetPatronStatus</a></li>
60             [% ELSIF ( GetServices ) %]
61                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
62                 <li><a href="#">GetServices</a></li>
63             [% ELSIF ( RenewLoan ) %]
64                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
65                 <li><a href="#">RenewLoan</a></li>
66             [% ELSIF ( HoldTitle ) %]
67                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
68                 <li><a href="#">HoldTitle</a></li>
69             [% ELSIF ( HoldItem ) %]
70                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
71                 <li><a href="#">HoldItem</a></li>
72             [% ELSIF ( CancelHold ) %]
73                 <li><a href="/cgi-bin/koha/ilsdi.pl">ILS-DI</a> <span class="divider">&rsaquo;</span></li>
74                 <li><a href="#">CancelHold</a></li>
75             [% ELSE %]
76                 <li><a href="#">ILS-DI</a></li>
77             [% END %]
78
79
80
81
82
83
84
85
86
87
88
89         </ul>
90
91         <div class="container-fluid">
92             <div class="row-fluid">
93                 [% IF ( OpacNav || OpacNavBottom ) %]
94                     <div class="span2">
95                         <div id="navigation">
96                             [% INCLUDE 'navigation.inc' %]
97                         </div>
98                     </div>
99                     <div class="span10">
100                 [% ELSE %]
101                     <div class="span12">
102                 [% END %]
103                 <div id="ilsdi">
104                         <h1>ILS-DI</h1>
105                             [% IF ( GetAvailability ) %]
106
107                                 <h2>GetAvailability</h2>
108                                 <p>Given a set of bibliographic or item identifiers, returns a
109                                 list with availability of the items associated with the identifiers.</p>
110                                 <h4>Parameters</h4>
111                                 <dl>
112                                     <dt><strong>id</strong> (Required)</dt>
113                                     <dd>list of either bibliographic or item identifiers</dd>
114                                     <dt><strong>id_type</strong> (Required)</dt>
115                                     <dd>defines the type of record identifier being used in the request, possible values:
116                                         <ul>
117                                             <li>bib</li>
118                                             <li>item</li>
119                                         </ul>
120                                     </dd>
121                                     <dt><strong>return_type</strong> (Optional)</dt>
122                                     <dd>requests a particular level of detail in reporting availability, possible values:
123                                         <ul>
124                                             <li>bib</li>
125                                             <li>item</li>
126                                         </ul>
127                                     </dd>
128                                     <dt><strong>return_fmt</strong> (Optional)</dt>
129                                     <dd>requests a particular format or set of formats in reporting availability</dd>
130                                 </dl>
131                                 <h4>Example call</h4>
132                                 <a href="ilsdi.pl?service=GetAvailability&amp;id=1+2+99999&amp;id_type=item">
133                                     ilsdi.pl?service=GetAvailability&amp;id=1+2+99999&amp;id_type=item
134                                 </a>
135                                 <h4>Example response</h4>
136 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
137 &lt;dlf:collection
138   xmlns:dlf="http://diglib.org/ilsdi/1.1"
139   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
140   xsi:schemaLocation="http://diglib.org/ilsdi/1.1
141     http://diglib.org/architectures/ilsdi/schemas/1.1/dlfexpanded.xsd"&gt;
142   &lt;dlf:record&gt;
143     &lt;dlf:bibliographic id="1" /&gt;
144     &lt;dlf:items&gt;
145       &lt;dlf:item id="1"&gt;
146         &lt;dlf:simpleavailability&gt;
147           &lt;dlf:identifier&gt;1&lt;/dlf:identifier&gt;
148           &lt;dlf:availabilitystatus&gt;available&lt;/dlf:availabilitystatus&gt;
149           &lt;dlf:location&gt;Bibliothèque Jean Prunier&lt;/dlf:location&gt;
150         &lt;/dlf:simpleavailability&gt;
151       &lt;/dlf:item&gt;
152     &lt;/dlf:items&gt;
153   &lt;/dlf:record&gt;
154   &lt;dlf:record&gt;
155     &lt;dlf:bibliographic id="2" /&gt;
156     &lt;dlf:items&gt;
157       &lt;dlf:item id="2"&gt;
158         &lt;dlf:simpleavailability&gt;
159           &lt;dlf:identifier&gt;2&lt;/dlf:identifier&gt;
160           &lt;dlf:availabilitystatus&gt;available&lt;/dlf:availabilitystatus&gt;
161           &lt;dlf:location&gt;Bibliothèque Jean Prunier&lt;/dlf:location&gt;
162         &lt;/dlf:simpleavailability&gt;
163       &lt;/dlf:item&gt;
164     &lt;/dlf:items&gt;
165   &lt;/dlf:record&gt;
166   &lt;dlf:record&gt;
167     &lt;dlf:bibliographic id="99999" /&gt;
168     &lt;dlf:items&gt;
169       &lt;dlf:item id="99999"&gt;
170         &lt;dlf:simpleavailability&gt;
171           &lt;dlf:identifier&gt;99999&lt;/dlf:identifier&gt;
172
173           &lt;dlf:availabilitystatus&gt;unknown&lt;/dlf:availabilitystatus&gt;
174           &lt;dlf:availabilitymsg&gt;Error: could not retrieve availability for this ID&lt;/dlf:availabilitymsg&gt;
175         &lt;/dlf:simpleavailability&gt;
176       &lt;/dlf:item&gt;
177     &lt;/dlf:items&gt;
178   &lt;/dlf:record&gt;
179 &lt;/dlf:collection&gt;</pre>
180
181                             [% ELSIF ( GetRecords ) %]
182
183                                 <h2>GetRecords</h2>
184                                 <p>Given a list of record identifiers, returns a list of record
185                                 objects that contain bibliographic information, as well as
186                                 associated holdings and item information. The caller may request
187                                 a specific metadata schema for the record objects to be returned.
188                                 This function behaves similarly to HarvestBibliographicRecords and
189                                 HarvestExpandedRecords in Data Aggregation, but allows quick, real
190                                 time lookup by bibliographic identifier.</p>
191                                 <p>You can use OAI-PMH ListRecords instead of this service.</p>
192                                 <h4>Parameters</h4>
193                                 <dl>
194                                     <dt><strong>id</strong> (Required)</dt>
195                                     <dd>list of system record identifiers</dd>
196                                     <dt><strong>id_type</strong> (Optional)</dt>
197                                     <dd>Defines the metadata schema in which the records are
198                                     returned, possible values:
199                                         <ul>
200                                             <li>MARCXML</li>
201                                         </ul>
202                                     </dd>
203                                 </dl>
204                                 <h4>Example Call</h4>
205                                 <a href="ilsdi.pl?service=GetRecords&amp;id=1+2+99999">
206                                     ilsdi.pl?service=GetRecords&amp;id=1+2+99999
207                                 </a>
208                                 <h4>Example response</h4>
209 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
210 &lt;GetRecords&gt;
211   &lt;record&gt;
212     &lt;biblioitemnumber&gt;1&lt;/biblioitemnumber&gt;
213     &lt;isbn&gt;9782862749198&lt;/isbn&gt;
214     &lt;marcxml&gt;
215       &lt;?xml version="1.0" encoding="UTF-8" ?&gt;
216       &lt;record
217           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
218           xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/ standards/marcxml/schema/MARC21slim.xsd"
219           xmlns="http://www.loc.gov/MARC21/slim"&gt;
220         &lt;leader&gt;00397nac a22001451u 4500&lt;/leader&gt;
221         &lt;datafield tag="010" ind1=" " ind2=" "&gt;
222           &lt;subfield code="a"&gt;9782862749198&lt;/subfield&gt;
223         &lt;/datafield&gt;
224         &lt;datafield tag="090" ind1=" " ind2=" "&gt;
225           &lt;subfield code="a"&gt;1&lt;/subfield&gt;
226         &lt;/datafield&gt;
227         &lt;datafield tag="101" ind1=" " ind2=" "&gt;
228           &lt;subfield code="a"&gt;fre&lt;/subfield&gt;
229         &lt;/datafield&gt;
230         &lt;datafield tag="100" ind1=" " ind2=" "&gt;
231           &lt;subfield code="a"&gt;20080725              frey50       &lt;/subfield&gt;
232         &lt;/datafield&gt;
233         &lt;datafield tag="200" ind1=" " ind2=" "&gt;
234           &lt;subfield code="a"&gt;Jardins d'enfance&lt;/subfield&gt;
235           &lt;subfield code="b"&gt;LITT&lt;/subfield&gt;
236           &lt;subfield code="f"&gt;Abécassis, Eliette&lt;/subfield&gt;
237         &lt;/datafield&gt;
238         &lt;datafield tag="210" ind1=" " ind2=" "&gt;
239           &lt;subfield code="c"&gt;cherche midi éditeur&lt;/subfield&gt;
240           &lt;subfield code="d"&gt;11/2001&lt;/subfield&gt;
241         &lt;/datafield&gt;
242         &lt;datafield tag="215" ind1=" " ind2=" "&gt;
243           &lt;subfield code="a"&gt;180&lt;/subfield&gt;
244         &lt;/datafield&gt;
245         &lt;datafield tag="225" ind1=" " ind2=" "&gt;
246           &lt;subfield code="a"&gt;nouvelles&lt;/subfield&gt;
247         &lt;/datafield&gt;
248         &lt;datafield tag="995" ind1=" " ind2=" "&gt;
249           &lt;subfield code="9"&gt;1&lt;/subfield&gt;
250           &lt;subfield code="c"&gt;BIB&lt;/subfield&gt;
251           &lt;subfield code="2"&gt;0&lt;/subfield&gt;
252           &lt;subfield code="k"&gt;R ABE&lt;/subfield&gt;
253           &lt;subfield code="o"&gt;0&lt;/subfield&gt;
254           &lt;subfield code="e"&gt;Secteur Adulte&lt;/subfield&gt;
255           &lt;subfield code="b"&gt;BIB&lt;/subfield&gt;
256           &lt;subfield code="j"&gt;7786000200&lt;/subfield&gt;
257           &lt;subfield code="q"&gt;a&lt;/subfield&gt;
258           &lt;subfield code="r"&gt;2&lt;/subfield&gt;
259           &lt;subfield code="s"&gt;Achats&lt;/subfield&gt;
260         &lt;/datafield&gt;
261         &lt;controlfield tag="001"&gt;1&lt;/controlfield&gt;
262       &lt;/record&gt;
263     &lt;/marcxml&gt;
264     &lt;publicationyear&gt;2001&lt;/publicationyear&gt;
265     &lt;collectiontitle&gt;nouvelles&lt;/collectiontitle&gt;
266     &lt;pages&gt;180&lt;/pages&gt;
267     &lt;issues&gt;
268     &lt;/issues&gt;
269     &lt;itemtype&gt;LITT&lt;/itemtype&gt;
270     &lt;biblionumber&gt;1&lt;/biblionumber&gt;
271     &lt;timestamp&gt;2008-09-03 18:43:19&lt;/timestamp&gt;
272     &lt;cn_sort&gt;_&lt;/cn_sort&gt;
273     &lt;publishercode&gt;cherche midi éditeur&lt;/publishercode&gt;
274     &lt;reserves&gt;
275     &lt;/reserves&gt;
276     &lt;items&gt;
277       &lt;item&gt;
278         &lt;biblioitemnumber&gt;1&lt;/biblioitemnumber&gt;
279         &lt;withdrawn&gt;0&lt;/withdrawn&gt;
280         &lt;holdingbranchname&gt;Bibliothèque Jean Prunier&lt;/holdingbranchname&gt;
281         &lt;notforloan&gt;0&lt;/notforloan&gt;
282         &lt;replacementpricedate&gt;2008-08-20&lt;/replacementpricedate&gt;
283         &lt;itemnumber&gt;1&lt;/itemnumber&gt;
284         &lt;location&gt;Secteur Adulte&lt;/location&gt;
285         &lt;itemcallnumber&gt;R ABE&lt;/itemcallnumber&gt;
286         &lt;date_due&gt;&lt;/date_due&gt;
287         &lt;itemlost&gt;0&lt;/itemlost&gt;
288         &lt;datelastseen&gt;2008-08-20&lt;/datelastseen&gt;
289         &lt;homebranch&gt;BIB&lt;/homebranch&gt;
290         &lt;homebranchname&gt;Bibliothèque Jean Prunier&lt;/homebranchname&gt;
291         &lt;biblionumber&gt;1&lt;/biblionumber&gt;
292         &lt;holdingbranch&gt;BIB&lt;/holdingbranch&gt;
293         &lt;timestamp&gt;2008-08-20 17:15:51&lt;/timestamp&gt;
294         &lt;damaged&gt;0&lt;/damaged&gt;
295         &lt;cn_sort&gt;R_ABE&lt;/cn_sort&gt;
296         &lt;dateaccessioned&gt;2008-08-20&lt;/dateaccessioned&gt;
297       &lt;/item&gt;
298     &lt;/items&gt;
299   &lt;/record&gt;
300   &lt;record&gt;
301     &lt;biblioitemnumber&gt;2&lt;/biblioitemnumber&gt;
302     &lt;isbn&gt;9782265078031&lt;/isbn&gt;
303     &lt;marcxml&gt;
304       &lt;?xml version="1.0" encoding="UTF-8" ?&gt;
305       &lt;record
306           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
307           xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/ standards/marcxml/schema/MARC21slim.xsd"
308           xmlns="http://www.loc.gov/MARC21/slim"&gt;
309         &lt;leader&gt;00407nac a22001451u 4500&lt;/leader&gt;
310         &lt;datafield tag="010" ind1=" " ind2=" "&gt;
311           &lt;subfield code="a"&gt;9782265078031&lt;/subfield&gt;
312         &lt;/datafield&gt;
313         &lt;datafield tag="090" ind1=" " ind2=" "&gt;
314           &lt;subfield code="a"&gt;2&lt;/subfield&gt;
315         &lt;/datafield&gt;
316         &lt;datafield tag="101" ind1=" " ind2=" "&gt;
317           &lt;subfield code="a"&gt;fre&lt;/subfield&gt;
318         &lt;/datafield&gt;
319         &lt;datafield tag="100" ind1=" " ind2=" "&gt;
320           &lt;subfield code="a"&gt;20080725              frey50       &lt;/subfield&gt;
321         &lt;/datafield&gt;
322         &lt;datafield tag="200" ind1=" " ind2=" "&gt;
323           &lt;subfield code="a"&gt;(Les) tribulations d'une jeune divorcée&lt;/subfield&gt;
324           &lt;subfield code="b"&gt;LITT&lt;/subfield&gt;
325           &lt;subfield code="f"&gt;Abécassis, Eliette&lt;/subfield&gt;
326         &lt;/datafield&gt;
327         &lt;datafield tag="210" ind1=" " ind2=" "&gt;
328           &lt;subfield code="c"&gt;bussière&lt;/subfield&gt;
329           &lt;subfield code="d"&gt;01/2005&lt;/subfield&gt;
330         &lt;/datafield&gt;
331         &lt;datafield tag="215" ind1=" " ind2=" "&gt;
332           &lt;subfield code="a"&gt;306&lt;/subfield&gt;
333         &lt;/datafield&gt;
334         &lt;datafield tag="225" ind1=" " ind2=" "&gt;
335           &lt;subfield code="a"&gt;fleuve noir&lt;/subfield&gt;
336         &lt;/datafield&gt;
337         &lt;datafield tag="995" ind1=" " ind2=" "&gt;
338           &lt;subfield code="9"&gt;2&lt;/subfield&gt;
339           &lt;subfield code="c"&gt;BIB&lt;/subfield&gt;
340           &lt;subfield code="2"&gt;0&lt;/subfield&gt;
341           &lt;subfield code="k"&gt;R ABE&lt;/subfield&gt;
342           &lt;subfield code="o"&gt;0&lt;/subfield&gt;
343           &lt;subfield code="e"&gt;Secteur Adulte&lt;/subfield&gt;
344           &lt;subfield code="b"&gt;BIB&lt;/subfield&gt;
345           &lt;subfield code="j"&gt;7786004672&lt;/subfield&gt;
346           &lt;subfield code="q"&gt;a&lt;/subfield&gt;
347           &lt;subfield code="s"&gt;Achats&lt;/subfield&gt;
348         &lt;/datafield&gt;
349         &lt;controlfield tag="001"&gt;2&lt;/controlfield&gt;
350       &lt;/record&gt;
351     &lt;/marcxml&gt;
352     &lt;publicationyear&gt;2005&lt;/publicationyear&gt;
353     &lt;collectiontitle&gt;fleuve noir&lt;/collectiontitle&gt;
354     &lt;pages&gt;306&lt;/pages&gt;
355     &lt;issues&gt;
356     &lt;/issues&gt;
357     &lt;itemtype&gt;LITT&lt;/itemtype&gt;
358     &lt;biblionumber&gt;2&lt;/biblionumber&gt;
359     &lt;timestamp&gt;2008-09-03 18:43:19&lt;/timestamp&gt;
360     &lt;cn_sort&gt;_&lt;/cn_sort&gt;
361     &lt;publishercode&gt;bussière&lt;/publishercode&gt;
362     &lt;reserves&gt;
363     &lt;/reserves&gt;
364     &lt;items&gt;
365       &lt;item&gt;
366         &lt;biblioitemnumber&gt;2&lt;/biblioitemnumber&gt;
367         &lt;withdrawn&gt;0&lt;/withdrawn&gt;
368         &lt;holdingbranchname&gt;Bibliothèque Jean Prunier&lt;/holdingbranchname&gt;
369         &lt;notforloan&gt;0&lt;/notforloan&gt;
370         &lt;replacementpricedate&gt;2008-08-20&lt;/replacementpricedate&gt;
371         &lt;itemnumber&gt;2&lt;/itemnumber&gt;
372         &lt;location&gt;Secteur Adulte&lt;/location&gt;
373         &lt;itemcallnumber&gt;R ABE&lt;/itemcallnumber&gt;
374         &lt;date_due&gt;&lt;/date_due&gt;
375         &lt;itemlost&gt;0&lt;/itemlost&gt;
376         &lt;datelastseen&gt;2008-08-20&lt;/datelastseen&gt;
377         &lt;homebranch&gt;BIB&lt;/homebranch&gt;
378         &lt;homebranchname&gt;Bibliothèque Jean Prunier&lt;/homebranchname&gt;
379         &lt;biblionumber&gt;2&lt;/biblionumber&gt;
380         &lt;holdingbranch&gt;BIB&lt;/holdingbranch&gt;
381         &lt;timestamp&gt;2008-08-20 17:15:51&lt;/timestamp&gt;
382         &lt;damaged&gt;0&lt;/damaged&gt;
383         &lt;cn_sort&gt;R_ABE&lt;/cn_sort&gt;
384         &lt;dateaccessioned&gt;2008-08-20&lt;/dateaccessioned&gt;
385       &lt;/item&gt;
386     &lt;/items&gt;
387   &lt;/record&gt;
388   &lt;record&gt;RecordNotFound&lt;/record&gt;
389 &lt;/GetRecords&gt;</pre>
390
391                             [% ELSIF ( GetAuthorityRecords ) %]
392
393                                 <h2>GetAuthorityRecords</h2>
394                                 <p>Given a list of authority record identifiers, returns a list
395                                 of record objects that contain the authority records. The function
396                                 user may request a specific metadata schema for the record objects.</p>
397                                 <h4>Parameters</h4>
398                                 <dl>
399                                     <dt><strong>id</strong> (Required)</dt>
400                                     <dd>list of authority record identifiers</dd>
401                                     <dt><strong>schema</strong> (Optional)</dt>
402                                     <dd>specifies the metadata schema of records to be returned, possible values:
403                                         <ul>
404                                             <li>MARCXML</li>
405                                         </ul>
406                                     </dd>
407                                 </dl>
408                                 <h4>Example call</h4>
409                                 <a href="ilsdi.pl?service=GetAuthorityRecords&amp;id=1+2+99999">
410                                     ilsdi.pl?service=GetAuthorityRecords&amp;id=1+2+99999
411                                 </a>
412                                 <h4>Example response</h4>
413 <pre>&lt;xml version="1.0" encoding="UTF-8"&gt;;
414 &lt;GetAuthorityRecords&gt;
415   &lt;record&gt;
416     &lt;?xml version="1.0" encoding="UTF-8"?&gt;
417   &lt;record
418     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
419     xsi:schemaLocation="http://www.loc.gov/MARC21/slim http://www.loc.gov/ standards/marcxml/schema/MARC21slim.xsd"
420     xmlns="http://www.loc.gov/MARC21/slim"&gt;
421       &lt;leader&gt;00182     2200085   4500&lt;/leader&gt;
422     &lt;controlfield tag="001"&gt;1&lt;/controlfield&gt;
423       &lt;datafield tag="200" ind1=" " ind2=" "&gt;
424         &lt;subfield code="a"&gt;Hugo&lt;/subfield&gt;
425         &lt;subfield code="b"&gt;Victor&lt;/subfield&gt;
426     &lt;/datafield&gt;
427       &lt;datafield tag="801" ind1=" " ind2=" "&gt;
428         &lt;subfield code="a"&gt;France&lt;/subfield&gt;
429         &lt;subfield code="b"&gt;Nimes&lt;/subfield&gt;
430         &lt;subfield code="c"&gt;2010/04/13&lt;/subfield&gt;
431     &lt;/datafield&gt;
432     &lt;datafield tag="100" ind1=" " ind2=" "&gt;
433         &lt;subfield code="a"&gt;20100413     50                    &lt;/subfield&gt;
434     &lt;/datafield&gt;
435     &lt;datafield tag="152" ind1=" " ind2=" "&gt;
436         &lt;subfield code="b"&gt;NP&lt;/subfield&gt;
437     &lt;/datafield&gt;
438   &lt;/record&gt;
439   &lt;/record&gt;
440   &lt;record&gt;
441     &lt;code&gt;RecordNotFound&lt;/code&gt;
442   &lt;/record&gt;
443   &lt;record&gt;
444     &lt;code&gt;RecordNotFound&lt;/code&gt;
445   &lt;/record&gt;
446 &lt;/GetAuthorityRecords&gt;</pre>
447
448                             [% ELSIF ( LookupPatron ) %]
449
450                                 <h2>LookupPatron</h2>
451                                 <p>Looks up a patron in the ILS by an identifier, and returns
452                                 the ILS identifier for that patron, aka the patron identifier.</p>
453                                 <h4>Parameters</h4>
454                                 <dl>
455                                     <dt><strong>id</strong> (Required)</dt>
456                                     <dd>an identifier used to look up the patron in Koha</dd>
457                                     <dt><strong>id_type</strong> (Optional)</dt>
458                                     <dd>the type of the identifier, possible values:
459                                         <ul>
460                                             <li>cardnumber</li>
461                                             <li>surname</li>
462                                             <li>borrowernumber</li>
463                                         </ul>
464                                     </dd>
465                                 </dl>
466                                 <h4>Example call</h4>
467                                 <a href="ilsdi.pl?service=LookupPatron&amp;id=815&amp;id_type=cardnumber">
468                                     ilsdi.pl?service=LookupPatron&amp;id=815&amp;id_type=cardnumber
469                                 </a>
470                                 <h4>Example response</h4>
471 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
472 &lt;LookupPatron&gt;
473   &lt;id&gt;419&lt;/id&gt;
474 &lt;/LookupPatron&gt;</pre>
475
476                             [% ELSIF ( AuthenticatePatron ) %]
477
478                                 <h2>AuthenticatePatron</h2>
479                                 <p>Authenticates a user's login credentials and returns the identifier for the patron.</p>
480                                 <h4>Parameters</h4>
481                                 <dl>
482                                     <dt><strong>username</strong> (Required)</dt>
483                                     <dd>user's login identifier</dd>
484                                     <dt><strong>password</strong> (Required)</dt>
485                                     <dd>user's password</dd>
486                                 </dl>
487                                 <h4>Example call</h4>
488                                 <a href="ilsdi.pl?service=AuthenticatePatron&amp;username=john9&amp;password=soul">
489                                     ilsdi.pl?service=AuthenticatePatron&amp;username=john9&amp;password=soul
490                                 </a>
491                                 <h4>Example Response</h4>
492 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
493 &lt;AuthenticatePatron&gt;
494   &lt;id&gt;419&lt;/id&gt;
495 &lt;/AuthenticatePatron&gt;</pre>
496
497                             [% ELSIF ( GetPatronInfo ) %]
498
499                                 <h2>GetPatronInfo</h2>
500                                 <p>Returns specified information about the patron, based on
501                                 options in the request. This function can optionally return
502                                 patron's contact information, fine information, hold request
503                                 information, loan information, and messages.</p>
504                                 <h4>Parameters</h4>
505                                 <dl>
506                                     <dt><strong>patron_id</strong> (Required)</dt>
507                                     <dd>the unique patron identifier in the ILS; the same identifier returned by LookupPatron or AuthenticatePatron</dd>
508                                     <dt><strong>show_contact</strong> (Optional, default 1)</dt>
509                                     <dd>whether or not to return patron's contact information in the response</dd>
510                                     <dt><strong>show_fines</strong> (Optional, default 0)</dt>
511                                     <dd>whether or not to return fine information in the response</dd>
512                                     <dt><strong>show_holds</strong> (Optional, default 0)</dt>
513                                     <dd>whether or not to return hold request information in the response</dd>
514                                     <dt><strong>show_loans</strong> (Optional, default 0)</dt>
515                                     <dd>whether or not to return loan information in the response</dd>
516                                 </dl>
517                                 <h4>Example call</h4>
518                                 <a href="ilsdi.pl?service=GetPatronInfo&amp;patron_id=1&amp;show_contact=0&amp;show_loans=1">
519                                     ilsdi.pl?service=GetPatronInfo&amp;patron_id=1&amp;show_contact=0&amp;show_loans=1
520                                 </a>
521                                 <h4>Example response</h4>
522 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
523 &lt;GetPatronInfo&gt;
524   &lt;category_type&gt;A&lt;/category_type&gt;
525   &lt;categorycode&gt;ADUEXT&lt;/categorycode&gt;
526   &lt;borrowernumber&gt;419&lt;/borrowernumber&gt;
527   &lt;lost&gt;0&lt;/lost&gt;
528   &lt;branchcode&gt;BIB&lt;/branchcode&gt;
529   &lt;amountoutstanding&gt;6&lt;/amountoutstanding&gt;
530   &lt;description&gt;Adulte extérieur&lt;/description&gt;
531   &lt;title&gt;M&lt;/title&gt;
532   &lt;enrolmentperiod&gt;12&lt;/enrolmentperiod&gt;
533   &lt;charges&gt;6.00&lt;/charges&gt;
534   &lt;dateenrolled&gt;2009-03-04&lt;/dateenrolled&gt;
535   &lt;borrowernotes&gt;&lt;/borrowernotes&gt;
536   &lt;dateexpiry&gt;2010-03-04&lt;/dateexpiry&gt;
537   &lt;firstname&gt;Jean-André&lt;/firstname&gt;
538   &lt;gonenoaddress&gt;0&lt;/gonenoaddress&gt;
539   &lt;dateofbirth&gt;1984-06-08&lt;/dateofbirth&gt;
540   &lt;debarred&gt;0&lt;/debarred&gt;
541   &lt;branchname&gt;Bibliothèque Jean Prunier&lt;/branchname&gt;
542   &lt;surname&gt;SANTONI&lt;/surname&gt;
543   &lt;cardnumber&gt;815&lt;/cardnumber&gt;
544   &lt;initials&gt;JAS&lt;/initials&gt;
545   &lt;sort1&gt;CSP5&lt;/sort1&gt;
546   &lt;sex&gt;M&lt;/sex&gt;
547   &lt;loans&gt;
548     &lt;loan&gt;
549       &lt;lastreneweddate&gt;2009-04-03&lt;/lastreneweddate&gt;
550       &lt;isbn&gt;2253003689&lt;/isbn&gt;
551       &lt;borrowernumber&gt;419&lt;/borrowernumber&gt;
552       &lt;branchcode&gt;BIB&lt;/branchcode&gt;
553       &lt;itemnumber&gt;4454&lt;/itemnumber&gt;
554       &lt;date_due&gt;2009-05-06&lt;/date_due&gt;
555       &lt;barcode&gt;4765476&lt;/barcode&gt;
556       &lt;datelastseen&gt;2008-08-23&lt;/datelastseen&gt;
557       &lt;issuedate&gt;2008-08-23&lt;/issuedate&gt;
558       &lt;title&gt;L'Île au trésor&lt;/title&gt;
559       &lt;itemtype&gt;LITT&lt;/itemtype&gt;
560       &lt;author&gt;Robert Louis Stevenson&lt;/author&gt;
561       &lt;timestamp&gt;2009-04-03 14:46:10&lt;/timestamp&gt;
562       &lt;publishercode&gt;Librairie générale française&lt;/publishercode&gt;
563       &lt;datecreated&gt;2008-08-23&lt;/datecreated&gt;
564       &lt;totalrenewals&gt;11&lt;/totalrenewals&gt;
565       &lt;dateaccessioned&gt;2008-08-23&lt;/dateaccessioned&gt;
566       &lt;onloan&gt;2008-09-17&lt;/onloan&gt;
567       &lt;biblioitemnumber&gt;4483&lt;/biblioitemnumber&gt;
568       &lt;withdrawn&gt;0&lt;/withdrawn&gt;
569       &lt;notforloan&gt;0&lt;/notforloan&gt;
570       &lt;replacementpricedate&gt;2008-08-23&lt;/replacementpricedate&gt;
571       &lt;itemcallnumber&gt;RO STE&lt;/itemcallnumber&gt;
572       &lt;location&gt;Salle de lecture&lt;/location&gt;
573       &lt;itemlost&gt;0&lt;/itemlost&gt;
574       &lt;publicationyear&gt;1985&lt;/publicationyear&gt;
575       &lt;issues&gt;1&lt;/issues&gt;
576       &lt;homebranch&gt;BIB&lt;/homebranch&gt;
577       &lt;holdingbranch&gt;BIB&lt;/holdingbranch&gt;
578       &lt;biblionumber&gt;4483&lt;/biblionumber&gt;
579       &lt;renewals&gt;3&lt;/renewals&gt;
580       &lt;damaged&gt;0&lt;/damaged&gt;
581       &lt;cn_sort&gt;RO_STE&lt;/cn_sort&gt;
582       &lt;frameworkcode&gt;&lt;/frameworkcode&gt;
583       &lt;datelastborrowed&gt;2008-08-23&lt;/datelastborrowed&gt;
584     &lt;/loan&gt;
585     &lt;loan&gt;
586       &lt;lastreneweddate&gt;2009-03-17&lt;/lastreneweddate&gt;
587       &lt;isbn&gt;9782700017823&lt;/isbn&gt;
588       &lt;borrowernumber&gt;419&lt;/borrowernumber&gt;
589       &lt;branchcode&gt;BIB&lt;/branchcode&gt;
590       &lt;itemnumber&gt;4456&lt;/itemnumber&gt;
591       &lt;date_due&gt;2009-04-18&lt;/date_due&gt;
592       &lt;barcode&gt;2700017UUU&lt;/barcode&gt;
593       &lt;datelastseen&gt;2008-08-23&lt;/datelastseen&gt;
594       &lt;issuedate&gt;2008-08-23&lt;/issuedate&gt;
595       &lt;title&gt;La guitare en 10 leçons&lt;/title&gt;
596       &lt;itemtype&gt;LITT&lt;/itemtype&gt;
597       &lt;author&gt;Jon Buck&lt;/author&gt;
598       &lt;timestamp&gt;2009-03-17 16:48:14&lt;/timestamp&gt;
599       &lt;publishercode&gt;Gründ&lt;/publishercode&gt;
600       &lt;datecreated&gt;2008-08-23&lt;/datecreated&gt;
601       &lt;totalrenewals&gt;6&lt;/totalrenewals&gt;
602       &lt;dateaccessioned&gt;2008-08-23&lt;/dateaccessioned&gt;
603       &lt;notes&gt;La couv. porte en plus : "un guide simple et facile pour apprendre la guitare" | Glossaire. Index&lt;/notes&gt;
604       &lt;onloan&gt;2008-09-25&lt;/onloan&gt;
605       &lt;biblioitemnumber&gt;4486&lt;/biblioitemnumber&gt;
606       &lt;withdrawn&gt;0&lt;/withdrawn&gt;
607       &lt;notforloan&gt;0&lt;/notforloan&gt;
608       &lt;replacementpricedate&gt;2008-08-23&lt;/replacementpricedate&gt;
609       &lt;itemcallnumber&gt;787.87 BUC&lt;/itemcallnumber&gt;
610       &lt;location&gt;Salle de lecture&lt;/location&gt;
611       &lt;itemlost&gt;0&lt;/itemlost&gt;
612       &lt;publicationyear&gt;2007&lt;/publicationyear&gt;
613       &lt;issues&gt;1&lt;/issues&gt;
614       &lt;homebranch&gt;BIB&lt;/homebranch&gt;
615       &lt;holdingbranch&gt;BIB&lt;/holdingbranch&gt;
616       &lt;biblionumber&gt;4486&lt;/biblionumber&gt;
617       &lt;renewals&gt;3&lt;/renewals&gt;
618       &lt;damaged&gt;0&lt;/damaged&gt;
619       &lt;cn_sort&gt;78787_BUC&lt;/cn_sort&gt;
620       &lt;volume&gt;une méthode simple et facile pour apprendre la guitare&lt;/volume&gt;
621       &lt;frameworkcode&gt;&lt;/frameworkcode&gt;
622       &lt;datelastborrowed&gt;2008-08-23&lt;/datelastborrowed&gt;
623     &lt;/loan&gt;
624   &lt;/loans&gt;
625 &lt;/GetPatronInfo&gt;</pre>
626
627                             [% ELSIF ( GetPatronStatus ) %]
628
629                                 <h2>GetPatronStatus</h2>
630                                 <p>Returns a patron's status information from Koha.</p>
631                                 <h4>Parameters</h4>
632                                 <dl>
633                                     <dt><strong>patron_id</strong> (Required)</dt>
634                                     <dd>the unique patron identifier in the ILS; the same identifier returned by LookupPatron or AuthenticatePatron</dd>
635                                 </dl>
636                                 <h4>Example call</h4>
637                                 <a href="ilsdi.pl?service=GetPatronStatus&amp;patron_id=1">
638                                     ilsdi.pl?service=GetPatronStatus&amp;patron_id=1
639                                 </a>
640                                 <h4>Example Response</h4>
641 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
642 &lt;GetPatronStatus&gt;
643   &lt;expiry&gt;2010-03-04&lt;/expiry&gt;
644   &lt;status&gt;0&lt;/status&gt;
645   &lt;type&gt;ADUEXT&lt;/type&gt;
646 &lt;/GetPatronStatus&gt;</pre>
647
648                             [% ELSIF ( GetServices ) %]
649
650                                 <h2>GetServices</h2>
651                                 <p>Returns information about the services available on a particular item for a particular patron.</p>
652                                 <h4>Parameters</h4>
653                                 <dl>
654                                     <dt><strong>patron_id</strong> (Required)</dt>
655                                     <dd>the unique patron identifier in the ILS; the same identifier returned by LookupPatron or AuthenticatePatron</dd>
656                                     <dt><strong>item_id</strong> (Required)</dt>
657                                     <dd>system item identifier</dd>
658                                 </dl>
659                                 <h4>Example call</h4>
660                                 <a href="ilsdi.pl?service=GetServices&amp;patron_id=1&amp;item_id=1">
661                                     ilsdi.pl?service=GetServices&amp;patron_id=1&amp;item_id=1
662                                 </a>
663                                 <h4>Example response</h4>
664 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
665 &lt;GetServices&gt;
666   &lt;AvailableFor&gt;title level hold&lt;/AvailableFor&gt;
667   &lt;AvailableFor&gt;item level hold&lt;/AvailableFor&gt;
668 &lt;/GetServices&gt;</pre>
669
670                             [% ELSIF ( RenewLoan ) %]
671
672                                 <h2>RenewLoan</h2>
673                                 <p>Extends the due date for a patron's existing loan.</p>
674                                 <h4>Parameters</h4>
675                                 <dl>
676                                     <dt><strong>patron_id</strong> (Required)</dt>
677                                     <dd>the unique patron identifier in the ILS; the same identifier returned by LookupPatron or AuthenticatePatron</dd>
678                                     <dt><strong>item_id</strong> (Required)</dt>
679                                     <dd>system item identifier</dd>
680                                     <dt><strong>desired_due_date</strong> (Required)</dt>
681                                     <dd>the date the patron would like the item returned by</dd>
682                                 </dl>
683                                 <h4>Example call</h4>
684                                 <a href="ilsdi.pl?service=RenewLoan&amp;patron_id=1&amp;item_id=1">
685                                     ilsdi.pl?service=RenewLoan&amp;patron_id=1&amp;item_id=1
686                                 </a>
687                                 <h4>Example response</h4>
688 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
689 &lt;RenewLoan&gt;
690   &lt;success&gt;0&lt;/success&gt;
691   &lt;renewals&gt;5&lt;/renewals&gt;
692   &lt;date_due&gt;2009-05-11&lt;/date_due&gt;
693 &lt;/RenewLoan&gt;</pre>
694
695                             [% ELSIF ( HoldTitle ) %]
696
697                                 <h2>HoldTitle</h2>
698                                 <p>Creates, for a patron, a title-level hold request on a given bibliographic record in Koha.</p>
699                                 <h4>Parameters</h4>
700                                 <dl>
701                                     <dt><strong>patron_id</strong> (Required)</dt>
702                                     <dd>the ILS identifier for the patron for whom the request is placed</dd>
703                                     <dt><strong>bib_id</strong> (Required)</dt>
704                                     <dd>the ILS identifier for the bibliographic record on which the request is placed</dd>
705                                     <dt><strong>request_location</strong> (Required)</dt>
706                                     <dd>IP address where the end user request is being placed</dd>
707                                     <dt><strong>pickup_location</strong> (Optional)</dt>
708                                     <dd>an identifier indicating the location to which to deliver the item for pickup</dd>
709                                     <dt><strong>needed_before_date</strong> (Optional)</dt>
710                                     <dd>date after which hold request is no longer needed</dd>
711                                     <dt><strong>pickup_expiry_date</strong> (Optional)</dt>
712                                     <dd>date after which item returned to shelf if item is not picked up</dd>
713                                 </dl>
714                                 <h4>Example Call</h4>
715                                 <a href="ilsdi.pl?service=HoldTitle&amp;patron_id=1&amp;bib_id=1&amp;request_location=127.0.0.1">
716                                     ilsdi.pl?service=HoldTitle&amp;patron_id=1&amp;bib_id=1&amp;request_location=127.0.0.1
717                                 </a>
718                                 <h4>Example response</h4>
719 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
720 &lt;HoldTitle&gt;
721   &lt;title&gt;(les) galères de l'Orfèvre&lt;/title&gt;
722   &lt;date_available&gt;2009-05-11&lt;/date_available&gt;
723   &lt;pickup_location&gt;Bibliothèque Jean-Prunier&lt;/pickup_location&gt;
724 &lt;/HoldTitle&gt;</pre>
725
726                             [% ELSIF ( HoldItem ) %]
727
728                                 <h2>HoldItem</h2>
729                                 <p>Creates, for a patron, an item-level hold request on a specific item of a bibliographic record Koha.</p>
730                                 <h4>Parameters</h4>
731                                 <dl>
732                                     <dt><strong>patron_id</strong> (Required)</dt>
733                                     <dd>the ILS identifier for the patron for whom the request is placed</dd>
734                                     <dt><strong>bib_id</strong> (Required)</dt>
735                                     <dd>the ILS identifier for the bibliographic record on which the request is placed</dd>
736                                     <dt><strong>item_id</strong> (Required)</dt>
737                                     <dd>the ILS identifier for the specific item on which the request is placed</dd>
738                                     <dt><strong>pickup_location</strong> (Optional)</dt>
739                                     <dd>an identifier indicating the location to which to deliver the item for pickup</dd>
740                                     <dt><strong>needed_before_date</strong> (Optional)</dt>
741                                     <dd>date after which hold request is no longer needed</dd>
742                                     <dt><strong>pickup_expiry_date</strong> (Optional)</dt>
743                                     <dd>date after which item returned to shelf if item is not picked up</dd>
744                                 </dl>
745                                 <h4>Example Call</h4>
746                                 <a href="ilsdi.pl?service=HoldItem&amp;patron_id=1&amp;bib_id=1&amp;item_id=1">
747                                     ilsdi.pl?service=HoldItem&amp;patron_id=1&amp;bib_id=1&amp;item_id=1
748                                 </a>
749                                 <h4>Example response</h4>
750 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
751 &lt;HoldTitle&gt;
752   &lt;title&gt;(les) galères de l'Orfèvre&lt;/title&gt;
753   &lt;date_available&gt;2009-05-11&lt;/date_available&gt;
754   &lt;pickup_location&gt;Bibliothèque Jean-Prunier&lt;/pickup_location&gt;
755 &lt;/HoldTitle&gt;</pre>
756
757                             [% ELSIF ( CancelHold ) %]
758
759                                 <h2>CancelHold</h2>
760                                 <p>Cancels an active hold request for the patron.</p>
761                                 <h4>Parameters</h4>
762                                 <dl>
763                                     <dt><strong>patron_id</strong> (Required)</dt>
764                                     <dd>the unique patron identifier in the ILS; the same identifier returned by LookupPatron or AuthenticatePatron</dd>
765                                     <dt><strong>item_id</strong> (Required)</dt>
766                                     <dd>system item identifier</dd>
767                                 </dl>
768                                 <h4>Example call</h4>
769                                 <a href="ilsdi.pl?service=CancelHold&amp;patron_id=1&amp;item_id=1">
770                                     ilsdi.pl?service=CancelHold&amp;patron_id=1&amp;item_id=1
771                                 </a>
772                                 <h4>Example response</h4>
773 <pre>&lt;?xml version="1.0" encoding="ISO-8859-1" ?&gt;
774 &lt;CancelHold&gt;
775   &lt;message&gt;Canceled&lt;/message&gt;
776 &lt;/CancelHold&gt;</pre>
777
778                             [% ELSE %]
779
780                                 <h2>Level 1: Basic discovery interfaces</h2>
781                                 <ul>
782                                     <li>HarvestBibliographicRecords <em>(Use OAI-PMH instead)</em></li>
783                                     <li>HarvestExpandedRecords <em>(Use OAI-PMH instead)</em></li>
784                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=GetAvailability">GetAvailability</a></li>
785                                     <li>GoToBibliographicRequestPage <em>(Use OPAC instead)</em></li>
786                                 </ul>
787                                 <h2>Level 2: Elementary OPAC supplement</h2>
788                                 <ul>
789                                     <li>HarvestAuthorityRecords <em>(Use OAI-PMH instead)</em></li>
790                                     <li>HarvestHoldingsRecords <em>(Use OAI-PMH instead)</em></li>
791                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=GetRecords">GetRecords</a></li>
792                                     <li>Search <em>(Use SRU instead)</em></li>
793                                     <li>Scan <em>(Use SRU instead)</em></li>
794                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=GetAuthorityRecords">GetAuthorityRecords</a></li>
795                                     <li>OutputRewritablePage <em>(Not supported yet)</em></li>
796                                     <li>OutputIntermediateFormat <em>(Not supported yet)</em></li>
797                                 </ul>
798                                 <h2>Level 3: Elementary OPAC alternative</h2>
799                                 <ul>
800                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=LookupPatron">LookupPatron</a></li>
801                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=AuthenticatePatron">AuthenticatePatron</a></li>
802                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=GetPatronInfo">GetPatronInfo</a></li>
803                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=GetPatronStatus">GetPatronStatus</a></li>
804                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=GetServices">GetServices</a></li>
805                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=RenewLoan">RenewLoan</a></li>
806                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=HoldTitle">HoldTitle</a></li>
807                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=HoldItem">HoldItem</a></li>
808                                     <li><a href="ilsdi.pl?service=Describe&amp;verb=CancelHold">CancelHold</a></li>
809                                     <li>RecallItem <em>(Not supported by Koha)</em></li>
810                                     <li>CancelRecall <em>(Not supported by Koha)</em></li>
811                                 </ul>
812                                 <h2>Level 4: Robust/domain specific discovery platforms</h2>
813                                 <ul>
814                                     <li>SearchCourseReserves <em>(Not supported yet)</em></li>
815                                     <li>Explain <em>(Not supported yet)</em></li>
816                                 </ul>
817
818                             [% END # / IF GetAvailability %]
819                     </div> <!-- / #ilsdi -->
820                 </div> <!-- / .span10 -->
821             </div> <!-- / .row-fluid -->
822         </div> <!-- / .container-fluid -->
823     </div> <!-- / .main -->
824
825 [% INCLUDE 'opac-bottom.inc' %]
826 [% BLOCK jsinclude %][% END %]