You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Requested by NWBib editors via mailing list in thread "Fwd: Re: Feedback zur NWBib, aktuelle URL test.nwbib.de/search?person=Hanekamp%2C+Marietta", 15.-17.06.2020.
Some resources exist both as print and online resources and there are two separate records. Example:
Currently, there is now hint for people looking at the print resource to see that an online version exists. We want to add this in the UI.
NWBib editors asked us to use in the NWBib UI the value in 776.n as link text and the related resource URI as link. From the source:
<datafieldtag="776"ind1="-"ind2="1">
<subfieldcode="i">Erscheint auch als</subfield>
<subfieldcode="n">Online-Ausgabe, PDF</subfield>
<subfieldcode="a">Hübner, Carina</subfield>
<subfieldcode="t">
Der Prozess der Berufsorientierung aus der Perspektive der Schülerschaft mit sonderpädagogischem Unterstützungsbedarf im Bereich Lernen an Förderschulen im Land Nordrhein-Westfalen
</subfield>
<subfieldcode="9">HT020163372</subfield>
</datafield>
However, we alreay have the online resource linked from the print resource via related:
"related": [
{
"id": "http://lobid.org/resources/HT020163372#!",
"label": "Der Prozess der Berufsorientierung aus der Perspektive der Schülerschaft mit sonderpädagogischem Unterstützungsbedarf im Bereich Lernen an Förderschulen im Land Nordrhein-Westfalen"
}
]
Thus, we should go on from there. I assume, we could implement this UI-wise as soon as we add the medium to the related resource:
{
"related":[
{
"id":"http://lobid.org/resources/HT020163372#!",
"label":"Der Prozess der Berufsorientierung aus der Perspektive der Schülerschaft mit sonderpädagogischem Unterstützungsbedarf im Bereich Lernen an Förderschulen im Land Nordrhein-Westfalen",
"medium":[
{
"id":"http://rdaregistry.info/termList/RDACarrierType/1018",
"label":"Online-Ressource"
}
]
}
]
}
We could add the medium field for realted online resources based on the value in 776.n, so whenever it contains the value "online" we would add the medium information.
The text was updated successfully, but these errors were encountered:
We could also make it simpler without the nested object (on the other hand, we could use the "label" for display of the link...):
{
"related":[
{
"id":"http://lobid.org/resources/HT020163372#!",
"label":"Der Prozess der Berufsorientierung aus der Perspektive der Schülerschaft mit sonderpädagogischem Unterstützungsbedarf im Bereich Lernen an Förderschulen im Land Nordrhein-Westfalen",
"medium":"http://rdaregistry.info/termList/RDACarrierType/1018"
}
]
}
Requested by NWBib editors via mailing list in thread "Fwd: Re: Feedback zur NWBib, aktuelle URL test.nwbib.de/search?person=Hanekamp%2C+Marietta", 15.-17.06.2020.
Some resources exist both as print and online resources and there are two separate records. Example:
Print version vs. Online version
Currently, there is now hint for people looking at the print resource to see that an online version exists. We want to add this in the UI.
NWBib editors asked us to use in the NWBib UI the value in
776.n
as link text and the related resource URI as link. From the source:However, we alreay have the online resource linked from the print resource via
related
:Thus, we should go on from there. I assume, we could implement this UI-wise as soon as we add the medium to the
related
resource:We could add the
medium
field for realted online resources based on the value in776.n
, so whenever it contains the value "online" we would add themedium
information.The text was updated successfully, but these errors were encountered: