kitodo / kitodo-production

Kitodo.Production is a workflow management tool for mass digitization and is part of the Kitodo Digital Library Suite.
http://www.kitodo.org/software/kitodoproduction/
GNU General Public License v3.0
60 stars 65 forks source link

No proper display of GND URI #884

Closed henning-gerhardt closed 7 years ago

henning-gerhardt commented 7 years ago

After finding a solution for #882 it was now possible to store a new person but after new loading the meta data the displayed URI to this new stored record was wrong:

gnd_error_002

It was missing the identifier value 132775026.

Into the mets.xml the following was stored in Kitodo.Production 2.1.0

<goobi:metadata name="Author" type="person">
    <goobi:lastName>Forberger</goobi:lastName>
    <goobi:firstName>Rudolf</goobi:firstName>
    <goobi:authorityURI>http://d-nb.info/gnd/</goobi:authorityURI>
    <goobi:authorityValue>http://d-nb.info/gnd/132775026</goobi:authorityValue>
    <goobi:displayName>Forberger, Rudolf</goobi:displayName>
</goobi:metadata>

But if I tried look into the stored information with Kitodo.Production 2.0.0 I get the following

<goobi:metadata name="Author" type="person">
    <goobi:lastName>Forberger</goobi:lastName>
    <goobi:firstName>Rudolf</goobi:firstName>
    <goobi:authorityID>gnd</goobi:authorityID>
    <goobi:authorityURI>http://d-nb.info/gnd/</goobi:authorityURI>
    <goobi:authorityValue>http://d-nb.info/gnd/132775026</goobi:authorityValue>
    <goobi:displayName>Forberger, Rudolf</goobi:displayName>
</goobi:metadata>

with a proper displayed value for URI.

henning-gerhardt commented 7 years ago

If the missing entry (compare between 2.0.0 and 2.1.0)

<goobi:authorityID>gnd</goobi:authorityID>

is added into the meta.xml then is the displayed URI correct and stay correct after saving and reloading.

henning-gerhardt commented 7 years ago

Probably this issue is created by a configuration error and issue #883.

henning-gerhardt commented 7 years ago

Wrong storing and displaying of a GND entry was triggered by a configuration mistake. Loading GND information are only possible with fix of #883.