Display Collection Metadata in Collection Viewer light box
- Article Type: General
- Product: Rosetta
- Product Version: 3.2.2
Desired Outcome Goal:
How to diplay Descriptive MD in collections metadata light box ?
Procedure:
1. Click on Producers / Advanced Tools / Delivery XSL files
2. Edit number 4, which should be "ie.xsl"
3. Add in this ie.xsl, the required information to view metadata on the collection level :
<xsl:for-each select="/metadata/collection-metadata/collection-dc">
<div class="typeB">
<span class="title">
<span> Descriptive Data - Collection DC </span>
</span>
</div>
<div class="typeC">
<div class="formDiv">
<xsl:for-each select="/metadata/collection-metadata/collection-dc/dc:record/*">
<xsl:if test='string(.)'>
<div class="line clearfix width98">
<div title="Title" class="width20 fieldName"><xsl:value-of select="local-name()"/>:</div>
<div class="width50"><xsl:value-of select="."/></div>
</div>
</xsl:if>
</xsl:for-each>
</div>
</div>
</xsl:for-each>
Additional Information
See attached screen shots