Compare commits
No commits in common. "master" and "master" have entirely different histories.
2
LICENSE
2
LICENSE
|
@ -1,6 +1,6 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2022-2023 museum-digital
|
||||
Copyright (c) 2022
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
22
README.md
22
README.md
|
@ -3,30 +3,14 @@
|
|||
## Formats covered thus far
|
||||
|
||||
- `LIDO 1.0`
|
||||
(Primary exchange export format). See <https://lido-schema.org>
|
||||
- LIDO 1.1
|
||||
Updated version of the LIDO standard, as of 2022. See <https://lido-schema.org>
|
||||
- EODEM
|
||||
A LIDO profile (based on LIDO 1.1) specifically designed for the automation of the exchange of loan object information. Contrary to LIDO, it thus also covers some internal fields. See: <https://cidoc.mini.icom.museum/working-groups/documentation-standards/eodem-home/>
|
||||
(Primary exchange export format)
|
||||
|
||||
## Repository structure
|
||||
|
||||
### [/src](./src)
|
||||
### /src
|
||||
|
||||
Contains the relevant .xsl files used for converting md:xml to other formats.
|
||||
|
||||
#### [/src/schemas](./src/schemas)
|
||||
|
||||
This directory contains schemas for validating the different formats.
|
||||
|
||||
#### [/src/selections](./src/selections)
|
||||
|
||||
This directory contains JSON files listing which bits and pieces should be made available during an export from musdb when exporting to a given format. E.g., LIDO cannot represent internal information like insurance values. It thus does not make sense to export such information during the export to md:xml pre-transformation in the first place.
|
||||
|
||||
### [/sample](./sample)
|
||||
### /sample
|
||||
|
||||
Here you can find sample mx:xml files.
|
||||
|
||||
## License
|
||||
|
||||
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for the full license text.
|
||||
|
|
|
@ -34,133 +34,70 @@
|
|||
</xsl:if>
|
||||
<lido:objectClassificationWrap>
|
||||
<lido:objectWorkTypeWrap>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="
|
||||
tagSet[0]/relation_type[. = 'object_type']
|
||||
| tagSet[1]/relation_type[. = 'object_type']
|
||||
| tagSet[2]/relation_type[. = 'object_type']
|
||||
| tagSet[3]/relation_type[. = 'object_type']
|
||||
| tagSet[4]/relation_type[. = 'object_type']
|
||||
| tagSet[5]/relation_type[. = 'object_type']
|
||||
| tagSet[6]/relation_type[. = 'object_type']
|
||||
| tagSet[7]/relation_type[. = 'object_type']
|
||||
| tagSet[8]/relation_type[. = 'object_type']
|
||||
| tagSet[9]/relation_type[. = 'object_type']
|
||||
| tagSet[10]/relation_type[. = 'object_type']
|
||||
| tagSet[11]/relation_type[. = 'object_type']
|
||||
| tagSet[12]/relation_type[. = 'object_type']
|
||||
| tagSet[13]/relation_type[. = 'object_type']
|
||||
| tagSet[14]/relation_type[. = 'object_type']
|
||||
| tagSet[15]/relation_type[. = 'object_type']
|
||||
| tagSet[16]/relation_type[. = 'object_type']
|
||||
| tagSet[17]/relation_type[. = 'object_type']
|
||||
| tagSet[18]/relation_type[. = 'object_type']
|
||||
">
|
||||
|
||||
<!-- objectWorkType exists via tags -->
|
||||
<xsl:for-each select="tagSet/tag_id">
|
||||
<xsl:if test="../relation_type = 'object_type'">
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:variable name="objektartschlagwort" select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</lido:objectWorkType>
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="objektart_gnd">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">gnd</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://d-nb.info/gnd/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_grobsystematik">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">grobsystematik</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/grobsystematik/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_oberbegriffsdatei">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">oberbegriffsdatei</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/oberbegriffsdatei/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_aat">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">aat</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://vocab.getty.edu/aat/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_lcsh">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">lcsh</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://id.loc.gov/authorities/subjects/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_md_tag">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">md:term</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/md-de/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="objektart!=''">
|
||||
<xsl:for-each select="objektart">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">de</xsl:attribute>
|
||||
<xsl:value-of select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
<xsl:if test="objekt_record_set/objektart!=''">
|
||||
<xsl:for-each select="objekt_record_set">
|
||||
<xsl:if test="substring(objekt_record_weitergabe,1,1)=0">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="objekt_record_lang" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="objektart" />
|
||||
</lido:term>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="objektart_gnd">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">gnd</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://d-nb.info/gnd/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_grobsystematik">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">grobsystematik</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/grobsystematik/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_oberbegriffsdatei">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">oberbegriffsdatei</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/oberbegriffsdatei/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_aat">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">aat</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://vocab.getty.edu/aat/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_lcsh">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">lcsh</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://id.loc.gov/authorities/subjects/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_md_tag">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">md:term</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/md-de/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="objektart!=''">
|
||||
<xsl:for-each select="objektart">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">de</xsl:attribute>
|
||||
<xsl:value-of select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
<xsl:if test="objekt_record_set/objektart!=''">
|
||||
<xsl:for-each select="objekt_record_set">
|
||||
<xsl:if test="substring(objekt_record_weitergabe,1,1)=0">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="objekt_record_lang" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="objektart" />
|
||||
</lido:term>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
</lido:objectWorkType>
|
||||
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
|
||||
</xsl:if>
|
||||
</lido:objectWorkType>
|
||||
</lido:objectWorkTypeWrap>
|
||||
<lido:classificationWrap>
|
||||
<xsl:for-each select="collectionSet">
|
||||
|
|
334
src/lido-1.0.xsl
334
src/lido-1.0.xsl
|
@ -33,135 +33,72 @@
|
|||
</xsl:if>
|
||||
<lido:objectClassificationWrap>
|
||||
<lido:objectWorkTypeWrap>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="
|
||||
tagSet[0]/relation_type[. = 'object_type']
|
||||
| tagSet[1]/relation_type[. = 'object_type']
|
||||
| tagSet[2]/relation_type[. = 'object_type']
|
||||
| tagSet[3]/relation_type[. = 'object_type']
|
||||
| tagSet[4]/relation_type[. = 'object_type']
|
||||
| tagSet[5]/relation_type[. = 'object_type']
|
||||
| tagSet[6]/relation_type[. = 'object_type']
|
||||
| tagSet[7]/relation_type[. = 'object_type']
|
||||
| tagSet[8]/relation_type[. = 'object_type']
|
||||
| tagSet[9]/relation_type[. = 'object_type']
|
||||
| tagSet[10]/relation_type[. = 'object_type']
|
||||
| tagSet[11]/relation_type[. = 'object_type']
|
||||
| tagSet[12]/relation_type[. = 'object_type']
|
||||
| tagSet[13]/relation_type[. = 'object_type']
|
||||
| tagSet[14]/relation_type[. = 'object_type']
|
||||
| tagSet[15]/relation_type[. = 'object_type']
|
||||
| tagSet[16]/relation_type[. = 'object_type']
|
||||
| tagSet[17]/relation_type[. = 'object_type']
|
||||
| tagSet[18]/relation_type[. = 'object_type']
|
||||
">
|
||||
|
||||
<!-- objectWorkType exists via tags -->
|
||||
<xsl:for-each select="tagSet/tag_id">
|
||||
<xsl:if test="../relation_type = 'object_type'">
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:variable name="objektartschlagwort" select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</lido:objectWorkType>
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="objektart_gnd">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">gnd</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://d-nb.info/gnd/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_grobsystematik">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">grobsystematik</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/grobsystematik/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_oberbegriffsdatei">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">oberbegriffsdatei</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/oberbegriffsdatei/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_aat">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">aat</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://vocab.getty.edu/aat/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_lcsh">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">lcsh</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://id.loc.gov/authorities/subjects/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_md_tag">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">md:term</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/md-de/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="objektart!=''">
|
||||
<xsl:for-each select="objektart">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">de</xsl:attribute>
|
||||
<xsl:value-of select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
<xsl:if test="objekt_record_set/objektart!=''">
|
||||
<xsl:for-each select="objekt_record_set">
|
||||
<xsl:if test="substring(objekt_record_weitergabe,1,1)=0">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="objekt_record_lang" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="objektart" />
|
||||
</lido:term>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="objektart_gnd">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">gnd</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://d-nb.info/gnd/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_grobsystematik">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">grobsystematik</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/grobsystematik/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_oberbegriffsdatei">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">oberbegriffsdatei</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/oberbegriffsdatei/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_aat">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">aat</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://vocab.getty.edu/aat/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_lcsh">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">lcsh</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://id.loc.gov/authorities/subjects/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_md_tag">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">md:term</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/md-de/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="objektart!=''">
|
||||
<xsl:for-each select="objektart">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">de</xsl:attribute>
|
||||
<xsl:value-of select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
<xsl:if test="objekt_record_set/objektart!=''">
|
||||
<xsl:for-each select="objekt_record_set">
|
||||
<xsl:if test="substring(objekt_record_weitergabe,1,1)=0">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="objekt_record_lang" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="objektart" />
|
||||
</lido:term>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
</lido:objectWorkType>
|
||||
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
|
||||
</xsl:if>
|
||||
</lido:objectWorkType>
|
||||
</lido:objectWorkTypeWrap>
|
||||
<lido:classificationWrap>
|
||||
<lido:classificationWrap>
|
||||
<xsl:for-each select="collectionSet">
|
||||
<lido:classification>
|
||||
<xsl:attribute name="lido:type">Sammlung</xsl:attribute>
|
||||
|
@ -739,8 +676,7 @@
|
|||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text> (?)</xsl:text>
|
||||
<xsl:value-of select="."/> (?)
|
||||
</xsl:if>
|
||||
<xsl:if test="string-length(./@lang) = 0"><xsl:value-of select="."/> (?)</xsl:if>
|
||||
</lido:displayDate>
|
||||
|
@ -785,12 +721,10 @@
|
|||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text> (?)</xsl:text>
|
||||
<xsl:value-of select="."/> (?)
|
||||
</xsl:if>
|
||||
<xsl:if test="string-length(./@lang) = 0">
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text> (?)</xsl:text>
|
||||
<xsl:value-of select="."/> (?)
|
||||
</xsl:if>
|
||||
</lido:displayPlace>
|
||||
</xsl:for-each>
|
||||
|
@ -927,44 +861,7 @@
|
|||
</lido:termMaterialsTech>
|
||||
</lido:materialsTech>
|
||||
</lido:eventMaterialsTech>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:for-each select="tagSet/tag_id">
|
||||
<xsl:if test="../relation_type = 'material'">
|
||||
<lido:eventMaterialsTech>
|
||||
<lido:materialsTech>
|
||||
<lido:termMaterialsTech lido:type="material">
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</lido:termMaterialsTech>
|
||||
</lido:materialsTech>
|
||||
</lido:eventMaterialsTech>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
|
||||
|
||||
|
||||
|
||||
</xsl:if>
|
||||
<xsl:if test="technik2!=''">
|
||||
<lido:eventMaterialsTech>
|
||||
<lido:materialsTech>
|
||||
|
@ -975,42 +872,8 @@
|
|||
</lido:termMaterialsTech>
|
||||
</lido:materialsTech>
|
||||
</lido:eventMaterialsTech>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:for-each select="tagSet/tag_id">
|
||||
<xsl:if test="../relation_type = 'technique'">
|
||||
<lido:eventMaterialsTech>
|
||||
<lido:materialsTech>
|
||||
<lido:termMaterialsTech lido:type="technique">
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</lido:termMaterialsTech>
|
||||
</lido:materialsTech>
|
||||
</lido:eventMaterialsTech>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
|
||||
</lido:event>
|
||||
</xsl:if>
|
||||
</lido:event>
|
||||
</lido:eventSet>
|
||||
</xsl:if>
|
||||
|
||||
|
@ -1239,12 +1102,10 @@
|
|||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text> (?)</xsl:text>
|
||||
<xsl:value-of select="."/> (?)
|
||||
</xsl:if>
|
||||
<xsl:if test="string-length(./@lang) = 0">
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:text> (?)</xsl:text>
|
||||
<xsl:value-of select="."/> (?)
|
||||
</xsl:if>
|
||||
</lido:displayPlace>
|
||||
</xsl:for-each>
|
||||
|
@ -1330,40 +1191,39 @@
|
|||
</xsl:if>
|
||||
|
||||
<xsl:for-each select="tagSet/tag_id">
|
||||
<xsl:if test="(../relation_type != 'object_type') and (../relation_type != 'material') and (../relation_type != 'technique')">
|
||||
<lido:subjectSet>
|
||||
<lido:subject>
|
||||
<lido:subjectConcept>
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
</lido:term>
|
||||
<lido:subjectSet>
|
||||
<lido:subject>
|
||||
<lido:subjectConcept>
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</lido:subjectConcept>
|
||||
</lido:subject>
|
||||
</lido:subjectSet>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</lido:subjectWrap>
|
||||
|
||||
<lido:relatedWorksWrap>
|
||||
|
||||
<xsl:for-each select="vergleichsobjekte2">
|
||||
<lido:relatedWorkSet>
|
||||
<lido:relatedWork>
|
||||
|
@ -1898,7 +1758,7 @@
|
|||
</xsl:for-each>
|
||||
</lido:resourceRepresentation>
|
||||
<lido:resourceRepresentation>
|
||||
<xsl:attribute name="lido:type">provided_text</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">text</xsl:attribute>
|
||||
<xsl:for-each select="../resource_location">
|
||||
<xsl:if test="position() = 1">
|
||||
<lido:linkResource>
|
||||
|
|
187
src/lido-1.1.xsl
187
src/lido-1.1.xsl
|
@ -33,133 +33,70 @@
|
|||
</xsl:if>
|
||||
<lido:objectClassificationWrap>
|
||||
<lido:objectWorkTypeWrap>
|
||||
|
||||
<xsl:choose>
|
||||
<xsl:when test="
|
||||
tagSet[0]/relation_type[. = 'object_type']
|
||||
| tagSet[1]/relation_type[. = 'object_type']
|
||||
| tagSet[2]/relation_type[. = 'object_type']
|
||||
| tagSet[3]/relation_type[. = 'object_type']
|
||||
| tagSet[4]/relation_type[. = 'object_type']
|
||||
| tagSet[5]/relation_type[. = 'object_type']
|
||||
| tagSet[6]/relation_type[. = 'object_type']
|
||||
| tagSet[7]/relation_type[. = 'object_type']
|
||||
| tagSet[8]/relation_type[. = 'object_type']
|
||||
| tagSet[9]/relation_type[. = 'object_type']
|
||||
| tagSet[10]/relation_type[. = 'object_type']
|
||||
| tagSet[11]/relation_type[. = 'object_type']
|
||||
| tagSet[12]/relation_type[. = 'object_type']
|
||||
| tagSet[13]/relation_type[. = 'object_type']
|
||||
| tagSet[14]/relation_type[. = 'object_type']
|
||||
| tagSet[15]/relation_type[. = 'object_type']
|
||||
| tagSet[16]/relation_type[. = 'object_type']
|
||||
| tagSet[17]/relation_type[. = 'object_type']
|
||||
| tagSet[18]/relation_type[. = 'object_type']
|
||||
">
|
||||
|
||||
<!-- objectWorkType exists via tags -->
|
||||
<xsl:for-each select="tagSet/tag_id">
|
||||
<xsl:if test="../relation_type = 'object_type'">
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="../noda_tag_Set/noda_source">
|
||||
<xsl:if test="string-length(../noda_link)!=0">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">
|
||||
<xsl:value-of select="../noda_source"/>
|
||||
</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="../noda_link"/>
|
||||
</lido:conceptID>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="../tag_name">
|
||||
<lido:term>
|
||||
<xsl:attribute name="lido:addedSearchTerm">no</xsl:attribute>
|
||||
<xsl:if test="string-length(./@lang)!=0">
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="./@lang"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
<xsl:value-of select="."/>
|
||||
<xsl:variable name="objektartschlagwort" select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</lido:objectWorkType>
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="objektart_gnd">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">gnd</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://d-nb.info/gnd/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_grobsystematik">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">grobsystematik</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/grobsystematik/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_oberbegriffsdatei">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">oberbegriffsdatei</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/oberbegriffsdatei/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_aat">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">aat</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://vocab.getty.edu/aat/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_lcsh">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">lcsh</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://id.loc.gov/authorities/subjects/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_md_tag">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">md:term</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/md-de/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="objektart!=''">
|
||||
<xsl:for-each select="objektart">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">de</xsl:attribute>
|
||||
<xsl:value-of select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
<xsl:if test="objekt_record_set/objektart!=''">
|
||||
<xsl:for-each select="objekt_record_set">
|
||||
<xsl:if test="substring(objekt_record_weitergabe,1,1)=0">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="objekt_record_lang" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="objektart" />
|
||||
</lido:term>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
|
||||
<lido:objectWorkType>
|
||||
<xsl:for-each select="objektart_gnd">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">gnd</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://d-nb.info/gnd/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_grobsystematik">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">grobsystematik</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/grobsystematik/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_oberbegriffsdatei">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">oberbegriffsdatei</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/oberbegriffsdatei/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_aat">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">aat</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://vocab.getty.edu/aat/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_lcsh">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">lcsh</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('http://id.loc.gov/authorities/subjects/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:for-each select="objektart_md_tag">
|
||||
<lido:conceptID>
|
||||
<xsl:attribute name="lido:source">md:term</xsl:attribute>
|
||||
<xsl:attribute name="lido:type">uri</xsl:attribute>
|
||||
<xsl:value-of select="concat('https://term.museum-digital.de/md-de/tag/', .)" />
|
||||
</lido:conceptID>
|
||||
</xsl:for-each>
|
||||
<xsl:if test="objektart!=''">
|
||||
<xsl:for-each select="objektart">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">de</xsl:attribute>
|
||||
<xsl:value-of select="." />
|
||||
</lido:term>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
<xsl:if test="objekt_record_set/objektart!=''">
|
||||
<xsl:for-each select="objekt_record_set">
|
||||
<xsl:if test="substring(objekt_record_weitergabe,1,1)=0">
|
||||
<lido:term>
|
||||
<xsl:attribute name="xml:lang">
|
||||
<xsl:value-of select="objekt_record_lang" />
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="objektart" />
|
||||
</lido:term>
|
||||
</xsl:if>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
</lido:objectWorkType>
|
||||
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
|
||||
|
||||
</xsl:if>
|
||||
</lido:objectWorkType>
|
||||
</lido:objectWorkTypeWrap>
|
||||
<lido:classificationWrap>
|
||||
<xsl:for-each select="collectionSet">
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"show_sammlungen": true,
|
||||
"show_serien": true,
|
||||
"show_acquisitions": false,
|
||||
"show_exhibitions": false,
|
||||
"show_loans": false,
|
||||
"show_ereignisse": true,
|
||||
|
@ -10,7 +9,6 @@
|
|||
"show_markings": true,
|
||||
"show_transcripts": true,
|
||||
"show_links": true,
|
||||
"show_object_to_object_links": true,
|
||||
"show_images": true,
|
||||
"show_hidden_images": false,
|
||||
"show_objekt_inventarnr": true,
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"show_sammlungen": true,
|
||||
"show_serien": true,
|
||||
"show_acquisitions": false,
|
||||
"show_exhibitions": false,
|
||||
"show_loans": false,
|
||||
"show_ereignisse": true,
|
||||
|
@ -10,7 +9,6 @@
|
|||
"show_markings": true,
|
||||
"show_transcripts": true,
|
||||
"show_links": true,
|
||||
"show_object_to_object_links": true,
|
||||
"show_images": true,
|
||||
"show_hidden_images": false,
|
||||
"show_objekt_inventarnr": true,
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{
|
||||
"show_sammlungen": true,
|
||||
"show_serien": true,
|
||||
"show_acquisitions": false,
|
||||
"show_exhibitions": false,
|
||||
"show_loans": false,
|
||||
"show_ereignisse": true,
|
||||
|
@ -10,7 +9,6 @@
|
|||
"show_markings": true,
|
||||
"show_transcripts": true,
|
||||
"show_links": true,
|
||||
"show_object_to_object_links": true,
|
||||
"show_images": true,
|
||||
"show_hidden_images": false,
|
||||
"show_objekt_inventarnr": true,
|
||||
|
|
Loading…
Reference in New Issue
Block a user