Customize the metadata labels in the “i” pop-up in the METS Viewer
- Article Type: General
- Product: Rosetta
- Product Version: 5
- Relevant for Installation Type: Local
Desired Outcome Goal:
To customize the metadata labels in the “i” pop-up in the METS Viewer.
Procedure:
1. Go to Producers > Advanced Tools > Configuration Files > ie.xsl
2. Update ie.xsl
For example, to change “creator” to “performer”:
<xsl:variable name="dcFieldName" select="local-name()"/>
<xsl:choose>
<xsl:when test="string(//dc:record/dcterms:isPartOf)='Performances from the UNL School of Music'">
<xsl:choose>
<xsl:when test="contains($dcFieldName,'title')">Type of Recital:</xsl:when>
<xsl:when test="contains($dcFieldName,'creator')">Composer/Title:</xsl:when>
<xsl:when test="contains($dcFieldName,'contributor')">Performer/Instrument:</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$dcFieldName"/>:
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="local-name()"/>:
</xsl:otherwise>
</xsl:choose>
Additional Information
All changes to ie.xsl are global to all IEs in the institution.
It is not possible to customize this at the Collection level.
Documentation:
Rosetta Staff User Guide > Deposit Managers > Configuring Material Flow Infrastructure > Working with Configuration
Category: Delivery
Subject: Rosetta
- Article last edited: 1/31/2017