Document service command
[pazpar2-moved-to-github.git] / doc / pazpar2_protocol.xml
1 <?xml version="1.0" standalone="no"?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.4//EN"
3  "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd"
4 [
5      <!ENTITY % local SYSTEM "local.ent">
6      %local;
7      <!ENTITY % entities SYSTEM "entities.ent">
8      %entities;
9      <!ENTITY % idcommon SYSTEM "common/common.ent">
10      %idcommon;
11 ]>
12 <refentry id="pazpar2_protocol">
13  <refentryinfo>
14   <productname>Pazpar2</productname>
15   <productnumber>&version;</productnumber>
16   <info><orgname>Index Data</orgname></info>
17  </refentryinfo>
18  <refmeta>
19   <refentrytitle>Pazpar2 protocol</refentrytitle>
20   <manvolnum>7</manvolnum>
21   <refmiscinfo class="manual">Conventions and miscellaneous</refmiscinfo>
22  </refmeta>
23
24  <refnamediv>
25   <refname>pazpar2_protocol</refname>
26   <refpurpose>The webservice protocol of Pazpar2</refpurpose>
27  </refnamediv>
28
29  <refsect1>
30   <title>DESCRIPTION</title>
31   <para>
32    Webservice requests are any that refer to filename "search.pz2". Arguments
33    are GET-style parameters. Argument 'command' is always required and specifies
34    the operation to perform. Any request not recognized as a webservice
35    request is forwarded to the HTTP server specified in the configuration
36    using the proxy setting.
37    This way, a regular webserver can host the user interface (itself dynamic
38    or static HTML), and Ajax-style calls can be used from JS (or any other
39    client-based scripting environment) to interact with the search logic
40    in Pazpar2.
41   </para>
42   <para>
43    Each command is described in sub sections to follow.
44   </para>
45   <refsect2 id="command-init">
46    <title>init</title>
47    <para>
48     Initializes a session.
49     Returns session ID to be used in subsequent requests. If
50     a server ID is given in the Pazpar2 server section, then a
51     that is included in the session ID as suffix after a period (.).
52    </para>
53    <para>
54     If the init command is performed as a HTTP GET request, service
55     and settings from local files are used. The service parameter
56     may chose a particular local service.
57    </para>
58    <para>
59     If the init command is performed as a HTTP POST request and
60     the content-type is text/xml, then the content is XML parsed
61     and treated as service for the session. The root element should be
62     service. Refer to descripton of the
63     <link linkend="service_conf">service</link> format.
64     The posting of a service appeared in Pazpar2 version 1.2.1.
65    </para>
66    <para>
67     Example:
68     <screen>
69      search.pz2?command=init
70     </screen>
71    </para>
72    <para>
73     Response:
74    </para>
75    <screen><![CDATA[
76     <init>
77      <status>OK</status>
78      <session>2044502273</session>
79     </init>
80 ]]></screen>
81    <para>
82     The init command may take a number of setting parameters, similar to
83     the 'settings' command described below. These settings are immediately
84     applied to the new session. Other parameters for init are:
85     <variablelist>
86      <varlistentry>
87       <term>clear</term>
88       <listitem>
89        <para>
90         If this is defined and the value is non-zero, the session will
91         not use the predefined databases in the configuration; only those
92         specified in the settings parameters (per session databases).
93         </para>
94       </listitem>
95      </varlistentry>
96
97      <varlistentry>
98       <term>service</term>
99       <listitem>
100        <para>
101         If this is defined it specifies a service ID. Makes the session use
102         the service with this ID. If this is setting is omitted, the
103         session will use the unnamed service in the Pazpar2 configuration.
104         </para>
105       </listitem>
106      </varlistentry>
107     </variablelist>
108    </para>
109   </refsect2>
110   
111   <refsect2 id="command-ping">
112    <title>ping</title>
113    <para>
114     Keeps a session alive. An idle session will time out after one minute.
115     The ping command can be used to keep the session alive absent other
116     activity.
117     It is suggested that any browser client have a simple alarm handler which
118     sends a ping every 50 seconds or so once a session has been initialized.
119    </para>
120    <para>
121     Example:
122     <screen><![CDATA[
123      search.pz?command=ping&session=2044502273
124 ]]>
125     </screen>
126     Response:
127    <screen><![CDATA[
128 <ping>
129   <status>OK</status>
130 </ping>
131 ]]></screen>
132    </para>
133   </refsect2>
134   <refsect2 id="command-settings">
135    <title>settings</title>
136    <para>
137     The settings command applies session-specific settings to one or more
138     databases. A typical function of this is to enable access to
139     restricted resources for registered users, or to set a user- or
140     library-specific username/password to use against a target.
141    </para>
142    <para>
143     Each setting parameter has the form name[target]=value, where name is the
144     name of the setting (e.g. pz:authentication), target is a target ID,
145     or possibly a wildcard, and value is the desired value for the
146     setting.
147    </para>
148    
149    <para>
150     Because the settings command manipulates potentially sensitive
151     information, it is possible to configure Pazpar2 to only allow access
152     to this command from a trusted site -- usually from server-side
153     scripting, which in turn is responsible for authenticating the user,
154     and possibly determining which resources he has access to, etc.
155    </para>
156    
157    <note>
158     <para>
159      As a shortcut, it is also possible to override settings directly in
160      the init command.
161     </para>
162    </note>
163
164    <para>
165     If the settings command is performed as HTTP POST and the content-type
166     is text/xml, then the content is XML parsed and treated as settings -
167     with a format identical to local
168     <link linkend="target_settings">settings files</link>.
169     The posting of settings appeared in Pazpar version 1.2.1.
170    </para>
171
172    <para>
173     Example:
174     <screen><![CDATA[
175 search.pz?command=settings&session=2044502273&pz:allow[search.com:210/db1]=1
176       ]]></screen>
177     Response:
178    <screen><![CDATA[
179 <settings>
180   <status>OK</status>
181 </settings>
182 ]]></screen>
183    </para>
184    
185   </refsect2>
186   <refsect2 id="command-search">
187    <title>search</title>
188    <para>
189     Launches a search, parameters:
190
191     <variablelist>
192      <varlistentry>
193       <term>session</term>
194       <listitem>
195        <para>
196         Session ID
197         </para>
198       </listitem>
199      </varlistentry>
200      <varlistentry>
201       <term>query</term>
202       <listitem>
203        <para>
204         CCL query
205         </para>
206       </listitem>
207      </varlistentry>
208      <varlistentry>
209       <term>filter</term>
210       <listitem>
211        <para>
212         Limits the search to a given set of targets specified by the
213         filter. The filter consists a comma separated list of
214         <emphasis>setting</emphasis>+<emphasis>operator</emphasis>+<emphasis>args</emphasis>
215         pairs. The <emphasis>setting</emphasis> is a Pazpar2 setting
216         (such as <literal>pz:id</literal>).
217         The <emphasis>operator</emphasis> is either
218         <literal>=</literal> (string match)
219         or <literal>~</literal> (substring match).
220         The <emphasis>args</emphasis> is a list of values separated
221         by <literal>|</literal> (or , one of the values).
222         The idea is that only targets with a setting matching one of
223         the values given will be included in the search.
224        </para>
225       </listitem>
226      </varlistentry>
227      <varlistentry>
228       <term>limit</term>
229       <listitem>
230        <para>
231         Narrows the search by one or more fields (typically facets).
232         The limit is sequence of one or more
233         <emphasis>name</emphasis>=<emphasis>args</emphasis> pairs separated
234         by comma. The <emphasis>args</emphasis> is a list of values
235         separated by vertical bar (<literal>|</literal>).
236         The meaning of <literal>|</literal> is alternative, ie OR .
237         A value that contains a comma (<literal>,</literal>),
238         a vertical bar (<literal>|</literal>) or
239         backslash itself must be preceded by backslash (<literal>\</literal>).
240         The <link linkend="limitmap">pz:limitmap</link> configuration
241         item defines how the searches are mapped to a database.
242        </para>
243       </listitem>
244      </varlistentry>
245      <varlistentry>
246       <term>startrecs</term>
247       <listitem>
248        <para>
249         Specifies the first record to retrieve from each target.
250         The first record in a result set for a target is numbered 0, next
251         record is numbered 2. By default maxrecs is 0.
252         </para>
253       </listitem>
254      </varlistentry>
255      <varlistentry>
256       <term>maxrecs</term>
257       <listitem>
258        <para>
259         Specifies the maximum number of records to retrieve from each
260         target. The default value is 100. This setting has same meaning
261         as per-target setting pz:maxrecs . If pz:maxrecs is set, it takes
262         precedence over argument maxrecs.
263         </para>
264       </listitem>
265      </varlistentry>
266      <varlistentry>
267       <term>sort</term>
268       <listitem>
269        <para>
270         Specifies sort criteria. The argument is a comma-separated list
271         (no whitespace allowed) of sort fields, with the highest-priority
272         field first. A sort field may be followed by a colon followed by
273         the number '0' (decreasing) or '1' (increasing).  Default
274         sort order is decreasing.
275         Sort field names can be any field name designated as a sort field
276         in the pazpar2.cfg file, or the special names 'relevance' and
277         'position'.
278        </para>
279        <para>
280         If not specified here or as <link linkend="sort-default">sort-default"</link>
281         in pazpar2.cfg, Pazpar2 will default to the built-in 'relevance' ranking. 
282        </para>
283        <para>
284         Having sort criteria at search is important for targets that 
285         supports native sorting in order to get best results. Pazpar2 
286         will trigger a new search if search criteria changes from Pazpar2 
287         to target-based sorting or visa-versa.
288         </para>
289       </listitem>
290      </varlistentry>
291
292      <varlistentry>
293       <term>mergekey</term>
294       <listitem>
295        <para>
296         Sets mergekey for this search and rest of session, or until
297         another mergekey is given for show/search. The mergekey value is a
298         comma separated list with one or more names as they appear
299         in the service description  equivalent to
300         <literal>mergekey="optional"</literal> inside a metadata element.
301         If the empty string is given for mergekey it is disabled
302         and rest of session will use the default mergekey from service
303         or stylesheet.
304        </para>
305        <para>
306         This facility, "dynamic mergekey", appeared in Pazpar2 version
307         1.6.31.
308        </para>
309       </listitem>
310      </varlistentry>
311
312      <varlistentry>
313       <term>rank</term>
314       <listitem>
315        <para>
316         Sets rank method this search and rest of session, or until
317         another rank is given for show/search. The rank value is a
318         comma separated list of pairs field=value pairs. The
319         format is the same as
320         <xref linkend="metadata-rank">rank</xref> for a metadata element.
321         If the empty string is given for rank it is disabled
322         and rest of session will use the default rank from metadata or
323         stylesheet.
324        </para>
325        <para>
326         This facility, "dynamic ranking", appeared in Pazpar2 version
327         1.6.31.
328        </para>
329       </listitem>
330      </varlistentry>
331
332     </variablelist>
333
334    </para>
335    <para>
336     Example:
337     <screen><![CDATA[
338 search.pz2?session=2044502273&command=search&query=computer+science
339 ]]>
340      </screen>
341     Response:
342    <screen><![CDATA[
343 <search>
344   <status>OK</status>
345 </search>
346      ]]></screen>
347    </para>
348   </refsect2>
349  
350   <refsect2 id="command-stat">
351    <title>stat</title>
352    <para>
353     Provides status information about an ongoing search. Parameters:
354
355     <variablelist>
356      <varlistentry>
357       <term>session</term>
358       <listitem>
359        <para>
360         Session ID
361         </para>
362       </listitem>
363      </varlistentry>
364     </variablelist>
365
366    </para>
367    <para>
368     Example:
369    <screen><![CDATA[
370 search.pz2?session=2044502273&command=stat
371     ]]></screen>
372     Output
373     <screen><![CDATA[
374 <stat>
375   <activeclients>3</activeclients>
376   <hits>7</hits>                   -- Total hitcount
377   <records>7</records>             -- Total number of records fetched in last query
378   <clients>1</clients>             -- Total number of associated clients
379   <unconnected>0</unconnected>     -- Number of disconnected clients
380   <connecting>0</connecting>       -- Number of clients in connecting state
381   <initializing>0</initializing>   -- Number of clients initializing
382   <searching>0</searching>         -- ... searching
383   <presenting>0</presenting>       -- ... presenting
384   <idle>1</idle>                   -- ... idle (not doing anything)
385   <failed>0</failed>               -- ... Connection failed
386   <error>0</error>                 -- ... Error was produced somewhere
387 </stat>
388      ]]></screen>
389   </para>
390   </refsect2>
391   
392   <refsect2 id="command-show">
393    <title>show</title>
394    <para>
395     Shows records retrieved. Parameters:
396     <variablelist>
397      <varlistentry>
398       <term>session</term>
399       <listitem>
400        <para>
401         Session ID
402        </para>
403       </listitem>
404      </varlistentry>
405      
406      <varlistentry>
407       <term>start</term>
408       <listitem>
409        <para>First record to show - 0-indexed.</para>
410       </listitem>
411      </varlistentry>
412      
413      <varlistentry>
414       <term>num</term>
415       <listitem>
416        <para>
417         Number of records to show If omitted, 20 is used.
418        </para>
419       </listitem>
420      </varlistentry>
421
422      <varlistentry>
423       <term>block</term>
424       <listitem>
425        <para>
426         If block is set to 1, the command will hang until there are records
427         ready to display. Use this to show first records rapidly without
428         requiring rapid polling.
429        </para>
430       </listitem>
431      </varlistentry>
432
433      <varlistentry>
434       <term>sort</term>
435       <listitem>
436        <para>
437         Specifies sort criteria. The argument is a comma-separated list
438         (no whitespace allowed) of sort fields, with the highest-priority
439         field first. A sort field may be followed by a colon followed by
440         the number '0' (decreasing) or '1' (increasing).  Default
441         sort order is decreasing.
442         Sort field names can be any field name designated as a sort field
443         in the pazpar2.cfg file, or the special names 'relevance' and
444         'position'.
445
446         If not specified here or as <link linkend="sort-default">sort-default"</link> 
447         in pazpar2.cfg, pazpar2 will default to the built-in 'relevance' ranking. 
448
449         Having sort criteria at search is important for targets that 
450         supports native sorting in order to get best results. pazpar2 
451         will trigger a new search if search criteria changes from pazpar2 
452         to target-based sorting.
453
454        </para>
455        <para>
456         For targets where If <link linkend="pzsortmap">pz:sortmap</link>
457         is defined, a sort operation will be executed (possibly including
458         extending the search).
459        </para>
460       </listitem>
461      </varlistentry>
462
463      <varlistentry>
464       <term>mergekey</term>
465       <listitem>
466        <para>
467         Sets mergekey for this show and rest of session, or until
468         another mergekey is given for show/search. The mergekey value is a
469         comma separated list with one or more names as they appear
470         in the service description  equivalent to
471         <literal>mergekey="optional"</literal> inside a metadata element.
472         If the empty string is given for mergekey it is disabled
473         and rest of session will use the default mergekey from service
474         or stylesheet.
475        </para>
476        <para>
477         This facility, "dynamic mergekey", appeared in Pazpar2 version
478         1.6.31.
479        </para>
480       </listitem>
481      </varlistentry>
482
483      <varlistentry>
484       <term>rank</term>
485       <listitem>
486        <para>
487         Sets rank method this show and rest of session, or until
488         another rank is given for show/search. The rank value is a
489         comma separated list of pairs field=value pairs. The
490         format is the same as
491         <xref linkend="metadata-rank">rank</xref> for a metadata element.
492         If the empty string is given for rank it is disabled
493         and rest of session will use the default rank from metadata or
494         stylesheet.
495        </para>
496        <para>
497         This facility, "dynamic ranking", appeared in Pazpar2 version
498         1.6.31.
499        </para>
500       </listitem>
501      </varlistentry>
502
503     </variablelist>
504    </para>
505    <para>
506     Example:
507     <screen><![CDATA[
508 search.pz2?session=2044502273&command=show&start=0&num=2&sort=title:1
509 ]]></screen>
510     Output:
511     <screen><![CDATA[
512 <show>
513   <status>OK</status>
514   <activeclients>3</activeclients>     -- How many clients are still working
515   <merged>6</merged>                   -- Number of merged records
516   <total>7</total>                     -- Total of all hitcounts
517   <start>0</start>                     -- The start number you requested
518   <num>2</num>                         -- Number of records retrieved
519   <hit>
520     <md-title>How to program a computer, by Jack Collins</md-title>
521     <count>2</count>                   -- Number of merged records 
522     <recid>6</recid>                   -- Record ID for this record
523   </hit>
524   <hit>
525     <md-title>
526   Computer processing of dynamic images from an Anger scintillation camera :
527   the proceedings of a workshop /
528     </md-title>
529     <recid>2</recid>
530   </hit>
531 </show>
532      ]]></screen>
533    </para>
534   </refsect2>
535
536   <refsect2 id="command-record">
537    <title>record</title>
538    <para>
539     Retrieves a detailed record. Unlike the 
540     <link linkend="command-show">show</link> command, this command 
541     returns metadata records before merging takes place. Parameters:
542     
543     <variablelist>
544      <varlistentry>
545       <term>session</term>
546       <listitem>
547        <para>
548         Session ID
549        </para>
550       </listitem>
551      </varlistentry>
552
553      <varlistentry>
554       <term>id</term>
555       <listitem>
556        <para>
557         record ID as provided by the
558         <link linkend="command-show">show</link> command.
559         </para>
560       </listitem>
561      </varlistentry>
562
563      <varlistentry>
564       <term>offset</term>
565       <listitem>
566        <para>
567         This optional parameter is an integer which, when given, makes
568         Pazpar2 return the original record for a specific target.
569         The record set from first target is numbered 0,
570         second record set is numbered 1, etc.
571         The nativesyntax setting, as usual, is used to determine how to
572         create XML from the original record - unless parameter
573         <literal>binary</literal> is given in which the record is
574         fetched as "raw" from ZOOM C (raw, original record).
575        </para>
576        <para>
577         When offset/checksum is not given, the Pazpar2 metadata for the record
578         is returned and with metadata for each targets' data specified
579         in a 'location' list.
580        </para>
581       </listitem>
582      </varlistentry>
583
584      <varlistentry>
585       <term>checksum</term>
586       <listitem>
587        <para>
588         This optional parameter is a string which, when given, makes
589         Pazpar2 return the original record for a specific target. The
590         checksum is returned as attribtue 'checksum' in element
591         'location' for show command and record command (when checksum
592         and offset is NOT given).
593         The nativesyntax setting, as usual, is used to determine how to
594         create XML from the original record - unless parameter
595         <literal>binary</literal> is given in which the record is
596         fetched as "raw" from ZOOM C (raw, original record).
597        </para>
598        <para>
599         When offset/checksum is not given, the Pazpar2 metadata for the record
600         is returned and with metadata for each targets' data specified
601         in a 'location' list.
602        </para>
603       </listitem>
604      </varlistentry>
605
606
607      <varlistentry>
608       <term>nativesyntax</term>
609       <listitem>
610        <para>
611         This optional parameter can be used to override pz:nativesyntax
612         as given for the target. This allow an alternative nativesyntax
613         to be used for original records (see parameteroffset above).
614        </para>
615       </listitem>
616      </varlistentry>
617
618      <varlistentry>
619       <term>syntax</term>
620       <listitem>
621        <para>
622         This optional parameter is the record syntax used for raw 
623         transfer (i.e. when offset is specified). If syntax is not given,
624         but offset is used, the value of pz:requestsyntax is used.
625        </para>
626       </listitem>
627      </varlistentry>
628
629      <varlistentry>
630       <term>esn</term>
631       <listitem>
632        <para>
633         This optional parameter is the element set name used to retrieval
634         of a raw record (i.e. when offset is specified).
635         If esn is not given, but offset is used, the value of pz:elements
636         is used.
637        </para>
638       </listitem>
639      </varlistentry>
640
641      <varlistentry>
642       <term>binary</term>
643       <listitem>
644        <para>
645         This optional parameter enables "binary" response for retrieval
646         of a original record (i.e. when offset is specified). For binary
647         response the record by default is fetched from ZOOM C using
648         the "raw" option or by parameter nativesyntax if given.
649        </para>
650       </listitem>
651      </varlistentry>
652
653     </variablelist>
654    </para>
655    <para> 
656     Example:
657     <screen><![CDATA[
658 search.pz2?session=605047297&command=record&id=3
659 ]]></screen>
660
661     Example output:
662     
663     <screen><![CDATA[
664 <record>
665   <md-title>
666         The Puget Sound Region : a portfolio of thematic computer maps /
667   </md-title>
668   <md-date>1974</md-date>
669   <md-author>Mairs, John W.</md-author>
670   <md-subject>Cartography</md-subject>
671 </record>
672 ]]></screen>
673    </para>
674   </refsect2>
675
676   <refsect2 id="command-termlist">
677    <title>termlist</title>
678    <para>
679     Retrieves term list(s). Parameters:
680     
681     <variablelist>
682      <varlistentry>
683       <term>session</term>
684       <listitem>
685        <para>
686         Session Id.
687        </para>
688       </listitem>
689      </varlistentry>
690      <varlistentry>
691       <term>name</term>
692       <listitem>
693        <para>
694         comma-separated list of termlist names. If omitted,
695         all termlists are returned.
696        </para>
697       </listitem>
698      </varlistentry>
699      <varlistentry>
700       <term>num</term>
701       <listitem>
702        <para>
703         maximum number of entries to return - default is 15.
704        </para>
705       </listitem>
706      </varlistentry>
707     </variablelist>
708    </para>
709    <para>
710     Example:
711     <screen><![CDATA[
712 search.pz2?session=2044502273&command=termlist&name=author,subject
713 ]]></screen>
714     Output:
715     <screen><![CDATA[
716 <termlist>
717   <activeclients>3</activeclients>
718   <list name="author">
719     <term>
720       <name>Donald Knuth</name>
721       <frequency>10</frequency>
722     </term>
723       <term>
724       <name>Robert Pirsig</name>
725       <frequency>2</frequency>
726     </term>
727   </list>
728   <list name="subject">
729     <term>
730       <name>Computer programming</name>
731       <frequency>10</frequency>
732     </term>
733   </list>
734 </termlist>
735 ]]></screen>
736    </para>
737    
738    <para>
739     For the special termlist name "xtargets", results
740     are returned about the targets which have returned the most hits.
741     The 'term' subtree has additional elements,
742     specifically a state and diagnostic field (in the example below, a
743     target ID is returned in place of 'name'.
744     This may or may not change later.
745    </para>
746    <para>
747     Example
748     <screen><![CDATA[
749 <term>
750   <name>library2.mcmaster.ca</name>
751   <frequency>11734</frequency>         -- Number of hits
752   <state>Client_Idle</state>           -- See the description of 'bytarget' below
753   <diagnostic>0</diagnostic>           -- Z39.50 diagnostic codes
754 </term>
755 ]]></screen>
756    </para>
757   </refsect2>
758   
759
760   <refsect2 id="command-bytarget">
761    <title>bytarget</title>
762    <para>
763     Returns information about the status of each active client. Parameters:
764
765     <variablelist>
766      <varlistentry>
767       <term>session</term>
768       <listitem>
769        <para>
770         Session Id.
771         </para>
772       </listitem>
773      </varlistentry>
774     </variablelist>
775    </para>
776    <para> 
777     Example:
778     <screen><![CDATA[
779 search.pz2?session=605047297&command=bytarget&id=3
780 ]]></screen>
781     
782     Example output:
783     
784     <screen><![CDATA[
785 <bytarget>
786   <status>OK</status>
787   <target>
788     <id>z3950.loc.gov/voyager/</id>
789     <hits>10000</hits>
790     <diagnostic>0</diagnostic>
791     <records>65</records>
792     <state>Client_Presenting</state>
793   </target>
794   <!-- ... more target nodes below as necessary -->
795 </bytarget>
796 ]]></screen>
797     
798     The following client states are defined: Client_Connecting,
799     Client_Connected, Client_Idle, Client_Initializing, Client_Searching,
800     Client_Searching, Client_Presenting, Client_Error, Client_Failed,
801     Client_Disconnected, Client_Stopped, Client_Continue.
802    </para>
803   </refsect2>
804
805   <refsect2 id="command-service">
806    <title>service</title>
807    <para>
808     Returns service definition (XML). Parameters:
809     <variablelist>
810      <varlistentry>
811       <term>session</term>
812       <listitem>
813        <para>
814         Session ID
815         </para>
816       </listitem>
817      </varlistentry>
818     </variablelist>
819    </para>
820    <para>
821     The service command appeared in Pazpar2 version 1.6.32
822    </para>
823   </refsect2>
824  </refsect1>
825  <refsect1>
826   <title>SEE ALSO</title>
827   <para>
828    Pazpar2:
829    <citerefentry>
830     <refentrytitle>pazpar2</refentrytitle>
831     <manvolnum>8</manvolnum>
832    </citerefentry>
833   </para>
834   <para>
835    Pazpar2 Configuration:
836    <citerefentry>
837     <refentrytitle>pazpar2_conf</refentrytitle>
838     <manvolnum>5</manvolnum>
839    </citerefentry>
840   </para>
841  </refsect1>
842 </refentry>
843
844 <!-- Keep this comment at the end of the file
845 Local variables:
846 mode: nxml
847 nxml-child-indent: 1
848 End:
849 -->