Frédéric Demians
084367f6cb
Modify Makefile.PL and Zebra configuration files in order to parametrized biblio record type returned by Zebra Z39.50 server. How to test: - Test with a MARC21 and a UNIMARC DB - Do a new installation - Search from OPAC - Search from a Z39.50 client like yaz-client: syntax = MARC21/UNIMARC must be choosed - It was working for MARC21: it continues to work - It wasn't working for UNIMARC: it works now, both in OPAC and from a Z39.50 client Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Works fine for MARC21. Frederic looked at UNIMARC. Magnus looked at NORMARC. GRS1 works okay for me. I still have issues with DOM, but they are not directly related to changes in this patch. A followup is still needed for packaging (debian/templates). Signed-off-by: Paul Poulain <paul.poulain@biblibre.com>
22 lines
864 B
XML
22 lines
864 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<retrievalinfo xmlns="http://indexdata.com/yaz">
|
|
<retrieval syntax="__ZEBRA_MARC_FORMAT__" name="F">
|
|
<backend syntax="xml" name="marc">
|
|
<marc inputformat="xml" outputformat="marc"
|
|
inputcharset="utf-8"
|
|
outputcharset="utf-8"/>
|
|
</backend>
|
|
</retrieval>
|
|
<retrieval syntax="__ZEBRA_MARC_FORMAT__" name="B">
|
|
<backend syntax="xml" name="marc">
|
|
<marc inputformat="xml" outputformat="marc"
|
|
inputcharset="utf-8"
|
|
outputcharset="utf-8"/>
|
|
</backend>
|
|
</retrieval>
|
|
<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"/>
|
|
</retrievalinfo>
|