Kalliope Import
OPAC plugin for data transfer from Kalliope
This documentation describes the installation, configuration and use of the plugin. With the help of this plugin, data from the Kalliope database can be retrieved and transferred to Goobi. To transfer the data, the data from the Kalliope database is retrieved in MODS format and translated into Goobi's data format using a dedicated mapping file.
Details | Text |
---|---|
Identifier | goobi-plugin-opac-kalliope |
Source code | |
Licence | GPL 2.0 or newer |
Documentation date | 13.06.2022 |
The plugin consists of a Java jar file, a Goobi configuration file and a metadata mapping file:
plugin_intranda_opac_kalliope.jar
plugin_KalliopeOpacImport.xml
mods_map_kalliope.xml
These files must be installed readable for the user
tomcat
at the following paths:/opt/digiverso/goobi/plugins/opac/plugin_intranda_opac_kalliope.jar
/opt/digiverso/goobi/config/plugin_KalliopeOpacImport.xml
/opt/digiverso/goobi/xslt/mods_map_kalliope.xml
The configuration file of the plug-in has the following structure:
<?xml version="1.0" encoding="UTF-8"?>
<config_plugin>
<charset>utf-8</charset>
<mapping>/opt/digiverso/goobi/xslt/mods_map_kalliope.xml</mapping>
<defaultDocType>Monograph</defaultDocType>
<defaultPicaType>Aa</defaultPicaType>
</config_plugin>
The option
<charset>
specifies the character set in which the data is delivered by the Kalliope interface. <mapping>
designates the file path to the metadata mapping file. The fields <defaultDocType>
and <defaultPicaType>
specify the publication type to be used for the document.In addition to the configuration file of the plugin, the Kalliope catalogue must be made known in the file
goobi_opac.xml
. This is done by an entry that looks like this:<catalogue title="Kalliope">
<config address="kalliope-verbund.info" database="sru" description="SRU-Schnittstelle des Kalliope Verbundes" port="80" opacType="Kalliope-SRU"/>
</catalogue>
When searching for an identifier in Goobi, a request is made in the background to the URL configured in the file
goobi_opac.xml
. After retrieving the record in MODS format, the mapping of the metadata is done according to the rules configured in the file mods_map_kalliope.xml
.Last modified 1yr ago