Compare commits

...

19 Commits

Author SHA1 Message Date
jrenslin 2b275b24dd Cover new field for additional numbers 2025-11-04 18:21:44 +01:00
jrenslin 6a8c98920f Reflect collection-level ISIL IDs in md:xml export
Close #1395
2025-10-31 15:04:04 +01:00
stefan d54dbe278b Use ISO dates for start / end 2025-10-31 14:44:56 +01:00
stefan 126c595f05 Add transformation for the LIDO as expected by the DDB's CCC portal 2025-07-21 13:41:16 +02:00
jrenslin 5e1e3e7baf Use selections for new implementation of measurements 2024-11-28 09:33:37 +01:00
jrenslin 6f3a780513 Merge branch 'anowicki-master' 2024-11-08 16:05:40 +01:00
anowicki 93e1523f3f Merge remote-tracking branch 'upstream/master' 2024-11-08 13:16:05 +01:00
anowicki a3973c5c62 fixed unnecessary linebreaks after '(?)' in lido-1.0 2024-11-08 13:10:57 +01:00
jrenslin 93f6de4537 Merge branch 'anowicki-master' 2024-10-15 16:02:21 +02:00
jrenslin b75f43cbe3 Merge branch 'master' into master 2024-10-15 16:00:03 +02:00
jrenslin 5dcd88b6e1 Extend default selections by acquisitions 2024-10-15 15:56:08 +02:00
anowicki 73e749160c Changed lido:resourceRepresentation@lido:type for pdf from 'text' to 'provided_text' for DDB compatibilityMerge remote-tracking branch 'upstream/master' 2024-10-02 17:47:55 +02:00
anowicki 6c2b829daa changed lido:resourceRepresentation@lido:type for pdf from 'text' to 'provided_text' for DDB compatibility 2024-10-02 17:06:15 +02:00
jrenslin c9c7b63434 Display objectWorkType via tags in EODEM and LIDO 1.1 exports, and only
that in case both object_type tags exist and an object type is present
in md

See #5

Background for the disabling of exports of the regular object type in
case both exist: The German Digital Library (DDB) is unable to handle
duplicate names in work types unless both contain different links to
norm data repositories. This fix allows the DDB to more easily import
while supposedly not losing meaningful data.
2023-08-03 23:11:08 +02:00
stefan 2ff939c6db Cover controlled terms for objectWorkType and material / tech in LIDO
1.0 exports
2023-07-09 22:18:25 +02:00
jrenslin 4ac221bee2 Update README to reflect LIDO 1.1. and EODEM support 2023-06-24 01:39:54 +02:00
jrenslin f7245187f0 Bump year in LICENSE 2023-06-24 01:37:00 +02:00
jrenslin 12326d4d3d Cover object to object links in export selections 2023-05-31 16:55:00 +02:00
jrenslin 0ea0d77192 Merge pull request 'minor fix of xsi:schemaLocation' (#2) from awinkler/musdb-md-xm-xsls:master into master
Reviewed-on: museum-digital/musdb-md-xm-xsls#2
Reviewed-by: Joshua Ramon Enslin <joshua@jrenslin.de>
2023-02-28 18:49:47 +01:00
10 changed files with 2874 additions and 286 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
MIT License
Copyright (c) 2022
Copyright (c) 2022-2023 museum-digital
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
+21 -3
View File
@@ -3,14 +3,32 @@
## Formats covered thus far
- `LIDO 1.0`
(Primary exchange export format)
(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/>
- LIDO 1.0 for the CCC ([Collections from colonial contexts](https://ccc.deutsche-digitale-bibliothek.de/en)) Portral of the German Digital Library
*lido-1.0-ccc*
## Repository structure
### /src
### [/src](./src)
Contains the relevant .xsl files used for converting md:xml to other formats.
### /sample
#### [/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)
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.
+144 -67
View File
@@ -15,7 +15,21 @@
<xsl:value-of select="concat(md_version, 'institution/', institution_id)" disable-output-escaping="yes" />
</xsl:attribute>
<xsl:attribute name="lido:type">local</xsl:attribute>
<xsl:value-of select="institution_isil" />
<!-- ISIL -->
<xsl:choose>
<xsl:when test="collectionSet/sammlung_isil != ''">
<xsl:value-of select="collectionSet/sammlung_isil" />
</xsl:when>
<xsl:otherwise>
<xsl:if test="institution_isil != ''">
<xsl:value-of select="institution_isil" />
</xsl:if>
<xsl:if test="institution_isil = ''">
<xsl:value-of select="institution_id" />
</xsl:if>
</xsl:otherwise>
</xsl:choose>
<!-- End of ISIL -->
<xsl:value-of select="'/'" />
<xsl:value-of select="objekt_id" />
</lido:lidoRecID>
@@ -34,70 +48,133 @@
</xsl:if>
<lido:objectClassificationWrap>
<lido:objectWorkTypeWrap>
<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: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>
</xsl:if>
</xsl:for-each>
</xsl:if>
</lido:objectWorkType>
</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>
</lido:objectWorkTypeWrap>
<lido:classificationWrap>
<xsl:for-each select="collectionSet">
@@ -722,14 +799,14 @@
</xsl:for-each>
</xsl:if>
<lido:date>
<xsl:for-each select="zeit_beginn">
<xsl:for-each select="zeit_beginn_datum">
<xsl:if test="position() = 1">
<lido:earliestDate>
<xsl:value-of select="."/>
</lido:earliestDate>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="zeit_ende">
<xsl:for-each select="zeit_ende_datum">
<xsl:if test="position() = 1">
<lido:latestDate>
<xsl:value-of select="."/>
@@ -1248,14 +1325,14 @@
</xsl:for-each>
<!-- </xsl:if> -->
<lido:date>
<xsl:for-each select="../zeit_beginn">
<xsl:for-each select="../zeit_beginn_datum">
<xsl:if test="position() = 1">
<lido:earliestDate>
<xsl:value-of select="."/>
</lido:earliestDate>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="../zeit_ende">
<xsl:for-each select="../zeit_ende_datum">
<xsl:if test="position() = 1">
<lido:latestDate>
<xsl:value-of select="."/>
+2171
View File
File diff suppressed because it is too large Load Diff
+257 -103
View File
@@ -4,7 +4,7 @@
xmlns:gml="http://www.opengis.net/gml">
<xsl:output method="xml" omit-xml-declaration="no" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<lido:lidoWrap xmlns:lido="http://www.lido-schema.org" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.lido-schema.org http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd http://www.opengis.net/gml http://schemas.opengis.net/gml/3.1.1/base/feature.xsd">
<lido:lidoWrap xmlns:lido="http://www.lido-schema.org" xmlns:gml="http://www.opengis.net/gml" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.lido-schema.org http://www.lido-schema.org/schema/v1.0/lido-v1.0.xsd http://www.opengis.net/gml http://schemas.opengis.net/gml/3.1.1/base/feature.xsd">
<xsl:apply-templates select="/root"/>
</lido:lidoWrap>
</xsl:template>
@@ -15,7 +15,21 @@
<xsl:value-of select="concat(md_version, 'institution/', institution_id)" disable-output-escaping="yes" />
</xsl:attribute>
<xsl:attribute name="lido:type">local</xsl:attribute>
<xsl:value-of select="institution_isil" />
<!-- ISIL -->
<xsl:choose>
<xsl:when test="collectionSet/sammlung_isil != ''">
<xsl:value-of select="collectionSet/sammlung_isil" />
</xsl:when>
<xsl:otherwise>
<xsl:if test="institution_isil != ''">
<xsl:value-of select="institution_isil" />
</xsl:if>
<xsl:if test="institution_isil = ''">
<xsl:value-of select="institution_id" />
</xsl:if>
</xsl:otherwise>
</xsl:choose>
<!-- End of ISIL -->
<xsl:value-of select="'/'" />
<xsl:value-of select="objekt_id" />
</lido:lidoRecID>
@@ -33,72 +47,135 @@
</xsl:if>
<lido:objectClassificationWrap>
<lido:objectWorkTypeWrap>
<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: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>
</xsl:if>
</xsl:for-each>
</xsl:if>
</lido:objectWorkType>
</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>
</lido:objectWorkTypeWrap>
<lido:classificationWrap>
<lido:classificationWrap>
<xsl:for-each select="collectionSet">
<lido:classification>
<xsl:attribute name="lido:type">Sammlung</xsl:attribute>
@@ -676,7 +753,8 @@
<xsl:attribute name="xml:lang">
<xsl:value-of select="./@lang"/>
</xsl:attribute>
<xsl:value-of select="."/> (?)
<xsl:value-of select="."/>
<xsl:text> (?)</xsl:text>
</xsl:if>
<xsl:if test="string-length(./@lang) = 0"><xsl:value-of select="."/> (?)</xsl:if>
</lido:displayDate>
@@ -695,14 +773,14 @@
</xsl:for-each>
</xsl:if>
<lido:date>
<xsl:for-each select="zeit_beginn">
<xsl:for-each select="zeit_beginn_datum">
<xsl:if test="position() = 1">
<lido:earliestDate>
<xsl:value-of select="."/>
</lido:earliestDate>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="zeit_ende">
<xsl:for-each select="zeit_ende_datum">
<xsl:if test="position() = 1">
<lido:latestDate>
<xsl:value-of select="."/>
@@ -721,10 +799,12 @@
<xsl:attribute name="xml:lang">
<xsl:value-of select="./@lang"/>
</xsl:attribute>
<xsl:value-of select="."/> (?)
<xsl:value-of select="."/>
<xsl:text> (?)</xsl:text>
</xsl:if>
<xsl:if test="string-length(./@lang) = 0">
<xsl:value-of select="."/> (?)
<xsl:value-of select="."/>
<xsl:text> (?)</xsl:text>
</xsl:if>
</lido:displayPlace>
</xsl:for-each>
@@ -861,7 +941,44 @@
</lido:termMaterialsTech>
</lido:materialsTech>
</lido:eventMaterialsTech>
</xsl:if>
</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 test="technik2!=''">
<lido:eventMaterialsTech>
<lido:materialsTech>
@@ -872,8 +989,42 @@
</lido:termMaterialsTech>
</lido:materialsTech>
</lido:eventMaterialsTech>
</xsl:if>
</lido:event>
</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>
</lido:eventSet>
</xsl:if>
@@ -938,14 +1089,14 @@
</lido:displayDate>
</xsl:for-each>
<lido:date>
<xsl:for-each select="../zeit_beginn">
<xsl:for-each select="../zeit_beginn_datum">
<xsl:if test="position() = 1">
<lido:earliestDate>
<xsl:value-of select="."/>
</lido:earliestDate>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="../zeit_ende">
<xsl:for-each select="../zeit_ende_datum">
<xsl:if test="position() = 1">
<lido:latestDate>
<xsl:value-of select="."/>
@@ -1102,10 +1253,12 @@
<xsl:attribute name="xml:lang">
<xsl:value-of select="./@lang"/>
</xsl:attribute>
<xsl:value-of select="."/> (?)
<xsl:value-of select="."/>
<xsl:text> (?)</xsl:text>
</xsl:if>
<xsl:if test="string-length(./@lang) = 0">
<xsl:value-of select="."/> (?)
<xsl:value-of select="."/>
<xsl:text> (?)</xsl:text>
</xsl:if>
</lido:displayPlace>
</xsl:for-each>
@@ -1191,39 +1344,40 @@
</xsl:if>
<xsl:for-each select="tagSet/tag_id">
<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: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>
</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>
@@ -1758,7 +1912,7 @@
</xsl:for-each>
</lido:resourceRepresentation>
<lido:resourceRepresentation>
<xsl:attribute name="lido:type">text</xsl:attribute>
<xsl:attribute name="lido:type">provided_text</xsl:attribute>
<xsl:for-each select="../resource_location">
<xsl:if test="position() = 1">
<lido:linkResource>
+144 -67
View File
@@ -15,7 +15,21 @@
<xsl:value-of select="concat(md_version, 'institution/', institution_id)" disable-output-escaping="yes" />
</xsl:attribute>
<xsl:attribute name="lido:type">local</xsl:attribute>
<xsl:value-of select="institution_isil" />
<!-- ISIL -->
<xsl:choose>
<xsl:when test="collectionSet/sammlung_isil != ''">
<xsl:value-of select="collectionSet/sammlung_isil" />
</xsl:when>
<xsl:otherwise>
<xsl:if test="institution_isil != ''">
<xsl:value-of select="institution_isil" />
</xsl:if>
<xsl:if test="institution_isil = ''">
<xsl:value-of select="institution_id" />
</xsl:if>
</xsl:otherwise>
</xsl:choose>
<!-- End of ISIL -->
<xsl:value-of select="'/'" />
<xsl:value-of select="objekt_id" />
</lido:lidoRecID>
@@ -33,70 +47,133 @@
</xsl:if>
<lido:objectClassificationWrap>
<lido:objectWorkTypeWrap>
<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: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>
</xsl:if>
</xsl:for-each>
</xsl:if>
</lido:objectWorkType>
</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>
</lido:objectWorkTypeWrap>
<lido:classificationWrap>
<xsl:for-each select="collectionSet">
@@ -728,14 +805,14 @@
</xsl:for-each>
</xsl:if>
<lido:date>
<xsl:for-each select="zeit_beginn">
<xsl:for-each select="zeit_beginn_datum">
<xsl:if test="position() = 1">
<lido:earliestDate>
<xsl:value-of select="."/>
</lido:earliestDate>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="zeit_ende">
<xsl:for-each select="zeit_ende_datum">
<xsl:if test="position() = 1">
<lido:latestDate>
<xsl:value-of select="."/>
@@ -1070,14 +1147,14 @@
</xsl:for-each>
<!-- </xsl:if> -->
<lido:date>
<xsl:for-each select="../zeit_beginn">
<xsl:for-each select="../zeit_beginn_datum">
<xsl:if test="position() = 1">
<lido:earliestDate>
<xsl:value-of select="."/>
</lido:earliestDate>
</xsl:if>
</xsl:for-each>
<xsl:for-each select="../zeit_ende">
<xsl:for-each select="../zeit_ende_datum">
<xsl:if test="position() = 1">
<lido:latestDate>
<xsl:value-of select="."/>
+4 -15
View File
@@ -1,6 +1,7 @@
{
"show_sammlungen": true,
"show_serien": true,
"show_acquisitions": false,
"show_exhibitions": false,
"show_loans": false,
"show_ereignisse": true,
@@ -9,6 +10,7 @@
"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,
@@ -31,21 +33,8 @@
"show_incipit": true,
"show_explicit": true,
"show_valediction": true,
"show_mass2_laenge_wert": true,
"show_mass2_laenge_einheit": true,
"show_mass2_breite_wert": true,
"show_mass2_breite_einheit": true,
"show_mass2_hoehe_wert": true,
"show_mass2_hoehe_einheit": true,
"show_mass2_gewicht_wert": true,
"show_mass2_gewicht_einheit": true,
"show_mass2_durchmesser_wert": true,
"show_mass2_durchmesser_einheit": true,
"show_wandungsstaerke_wert": true,
"show_wandungsstaerke_einheit": true,
"show_stueckzahl": true,
"show_mass2_seitenzahl": true,
"show_mass2_stempelstellung": true,
"show_separated_measurements": true,
"show_additional_numbers": false,
"show_vergleichsobjekte2": true,
"show_material2": true,
"show_technik2": true,
+124
View File
@@ -0,0 +1,124 @@
{
"show_sammlungen": true,
"show_serien": true,
"show_acquisitions": false,
"show_exhibitions": false,
"show_loans": false,
"show_ereignisse": true,
"show_tags": true,
"show_literatur": true,
"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,
"show_objektart": true,
"show_objekt_name": true,
"show_objekt_beschreibung": true,
"show_objekt_material_technik": true,
"show_objekt_masse": true,
"show_ort2_name": false,
"show_ort2_art": false,
"show_titel2_name": false,
"show_titel2_art": false,
"show_detaileddescription2": true,
"show_beschriftung2": true,
"show_form": true,
"show_sex": true,
"show_color": true,
"show_acknowledgements": true,
"show_salutation": true,
"show_incipit": true,
"show_explicit": true,
"show_valediction": true,
"show_separated_measurements": true,
"show_additional_numbers": false,
"show_vergleichsobjekte2": true,
"show_material2": true,
"show_technik2": true,
"show_reception_history": true,
"show_object_references": true,
"show_content_language": true,
"show_objekt_status": false,
"show_eingangsnummer": false,
"show_invnr2": false,
"show_sachgruppe": false,
"show_systematik": false,
"show_konvolut": false,
"show_teilvon": false,
"show_zeitpunkt_zugang": false,
"show_zugang_art": false,
"show_ankaufsumme": false,
"show_geld_art": false,
"show_vorbesitzer": false,
"show_objektgeschichte": false,
"show_zustand": false,
"show_restaurierung": false,
"show_finding_spot_longitude": false,
"show_finding_spot_latitude": false,
"show_period_copyright": false,
"show_period_freeze": false,
"show_period_autopublish": false,
"show_period_scheduled_end_to_deposit": false,
"show_period_comment": false,
"show_erwerbender": false,
"show_erwerbungsort": false,
"show_ersterfasser": false,
"show_ersterfasst_zeitpunkt": false,
"show_wert_zeitpunkt": false,
"show_wert_bestimmer": false,
"show_wert_zahl": false,
"show_wert_art": false,
"show_wert_reference": false,
"show_wert2_zeitpunkt": false,
"show_wert2_bestimmer": false,
"show_wert2_zahl": false,
"show_wert2_art": false,
"show_deaccession_approved_by": false,
"show_deaccession_approved_date": false,
"show_disposal_reason": false,
"show_disposal_method": false,
"show_disposal_recipient_new_id": false,
"show_deaccession_date": false,
"show_disposal_date": false,
"show_disposal_note": false,
"show_disposal_cost_value": false,
"show_disposal_cost_currency": false,
"show_disposal_price_value": false,
"show_disposal_price_currency": false,
"show_disposal_conditions": false,
"show_disposal_authorized_by": false,
"show_disposal_authorized_date": false,
"show_standort_aktuell": false,
"show_standort_eigentlich": false,
"show_ausstellung": false,
"show_verliehen_an": false,
"show_leihvorgang_ansprechpartner": false,
"show_leihvorgang_zeitraum": false,
"show_leihvorgang_versicherungswert": false,
"show_leihvorgang_anmerkungen": false,
"show_min_temperature": false,
"show_max_temperature": false,
"show_min_humidity": false,
"show_max_humidity": false,
"show_max_lux": false,
"show_urheberrechte": true,
"show_nutzungsrechte": true,
"show_rechte_anmerkungen": false,
"show_metadata_rights_holder": true,
"show_metadata_rights_status": true,
"show_notizen_text2": false,
"show_notizen_text1": false,
"show_bilder_lokal": false,
"show_dokumente_lokal": false,
"show_id_of_negative": false,
"show_handling_recommendations": false,
"show_shipping_note": false,
"show_hazards_note": false,
"show_condition_checking_requirements": false,
"show_installation_note": false,
"show_display_recommendations": false,
"show_security_requirements": false
}
+4 -15
View File
@@ -1,6 +1,7 @@
{
"show_sammlungen": true,
"show_serien": true,
"show_acquisitions": false,
"show_exhibitions": false,
"show_loans": false,
"show_ereignisse": true,
@@ -9,6 +10,7 @@
"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,
@@ -31,21 +33,8 @@
"show_incipit": true,
"show_explicit": true,
"show_valediction": true,
"show_mass2_laenge_wert": true,
"show_mass2_laenge_einheit": true,
"show_mass2_breite_wert": true,
"show_mass2_breite_einheit": true,
"show_mass2_hoehe_wert": true,
"show_mass2_hoehe_einheit": true,
"show_mass2_gewicht_wert": true,
"show_mass2_gewicht_einheit": true,
"show_mass2_durchmesser_wert": true,
"show_mass2_durchmesser_einheit": true,
"show_wandungsstaerke_wert": true,
"show_wandungsstaerke_einheit": true,
"show_stueckzahl": true,
"show_mass2_seitenzahl": true,
"show_mass2_stempelstellung": true,
"show_separated_measurements": true,
"show_additional_numbers": false,
"show_vergleichsobjekte2": true,
"show_material2": true,
"show_technik2": true,
+4 -15
View File
@@ -1,6 +1,7 @@
{
"show_sammlungen": true,
"show_serien": true,
"show_acquisitions": false,
"show_exhibitions": false,
"show_loans": false,
"show_ereignisse": true,
@@ -9,6 +10,7 @@
"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,
@@ -31,21 +33,8 @@
"show_incipit": true,
"show_explicit": true,
"show_valediction": true,
"show_mass2_laenge_wert": true,
"show_mass2_laenge_einheit": true,
"show_mass2_breite_wert": true,
"show_mass2_breite_einheit": true,
"show_mass2_hoehe_wert": true,
"show_mass2_hoehe_einheit": true,
"show_mass2_gewicht_wert": true,
"show_mass2_gewicht_einheit": true,
"show_mass2_durchmesser_wert": true,
"show_mass2_durchmesser_einheit": true,
"show_wandungsstaerke_wert": true,
"show_wandungsstaerke_einheit": true,
"show_stueckzahl": true,
"show_mass2_seitenzahl": true,
"show_mass2_stempelstellung": true,
"show_separated_measurements": true,
"show_additional_numbers": false,
"show_vergleichsobjekte2": true,
"show_material2": true,
"show_technik2": true,