Tomas Cohen Arazi
ca074c9253
This patch changes koha-indexdefs-to-zebra.xsl to correctly process a new syntax for defining facet indexes on the XML files. It also changes the retrieval file to allow access to Zebra's internal data from Zoom (i.e. access to zebra::facet:*). Sponsored-by: Universidad Nacional de Cordoba Signed-off-by: David Cook <dcook@prosentient.com.au> Seems to work with DOM and MARC21. Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
24 lines
909 B
XML
24 lines
909 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<retrievalinfo xmlns="http://indexdata.com/yaz">
|
|
<retrieval syntax="unimarc" name="F">
|
|
<backend syntax="xml" name="marc">
|
|
<marc inputformat="xml" outputformat="marc"
|
|
inputcharset="utf-8"
|
|
outputcharset="utf-8"/>
|
|
</backend>
|
|
</retrieval>
|
|
<retrieval syntax="unimarc" name="B">
|
|
<backend syntax="xml" name="marc">
|
|
<marc inputformat="xml" outputformat="marc"
|
|
inputcharset="utf-8"
|
|
outputcharset="utf-8"/>
|
|
</backend>
|
|
</retrieval>
|
|
<retrieval syntax="xml"/>
|
|
<retrieval syntax="xml" name="index"/> <!-- allow viewing index entries -->
|
|
<retrieval syntax="xml" name="marc"
|
|
identifier="info:srw/schema/1/marcxml-v1.1"/>
|
|
<retrieval syntax="xml" name="marcxml"
|
|
identifier="info:srw/schema/1/marcxml-v1.1"/>
|
|
<retrieval syntax="xml" name="zebra::*" />
|
|
</retrievalinfo>
|