Edit C:\dspace\webapps\xmlui\themes\dri2xhtml-alt\aspect\artifactbrowser\item-view.xsl
<!-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --> <!-- Rendering specific to the item display page. Author: art.lowel at atmire.com Author: lieven.droogmans at atmire.com Author: ben at atmire.com Author: Alexey Maslov --> <xsl:stylesheet xmlns:i18n="http://apache.org/cocoon/i18n/2.1" xmlns:dri="http://di.tamu.edu/DRI/1.0/" xmlns:mets="http://www.loc.gov/METS/" xmlns:dim="http://www.dspace.org/xmlns/dspace/dim" xmlns:xlink="http://www.w3.org/TR/xlink/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:oreatom="http://www.openarchives.org/ore/atom/" xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan" xmlns:encoder="xalan://java.net.URLEncoder" exclude-result-prefixes="xalan encoder i18n dri mets dim xlink xsl"> <xsl:output indent="yes"/> <!-- An item rendered in the summaryView pattern. This is the default way to view a DSpace item in Manakin. --> <xsl:template name="itemSummaryView-DIM"> <!-- Generate the info about the item from the metadata section --> <xsl:apply-templates select="./mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim" mode="itemSummaryView-DIM"/> <!-- Generate the bitstream information from the file section --> <xsl:choose> <xsl:when test="./mets:fileSec/mets:fileGrp[@USE='CONTENT' or @USE='ORIGINAL']/mets:file"> <xsl:apply-templates select="./mets:fileSec/mets:fileGrp[@USE='CONTENT' or @USE='ORIGINAL']"> <xsl:with-param name="context" select="."/> <xsl:with-param name="primaryBitstream" select="./mets:structMap[@TYPE='LOGICAL']/mets:div[@TYPE='DSpace Item']/mets:fptr/@FILEID"/> </xsl:apply-templates> </xsl:when> <!-- Special case for handling ORE resource maps stored as DSpace bitstreams --> <xsl:when test="./mets:fileSec/mets:fileGrp[@USE='ORE']"> <xsl:apply-templates select="./mets:fileSec/mets:fileGrp[@USE='ORE']"/> </xsl:when> <xsl:otherwise> <h2><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-head</i18n:text></h2> <table class="ds-table file-list"> <tr class="ds-table-header-row"> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-file</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-size</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-format</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-view</i18n:text></th> </tr> <tr> <td colspan="4"> <p><i18n:text>xmlui.dri2xhtml.METS-1.0.item-no-files</i18n:text></p> </td> </tr> </table> </xsl:otherwise> </xsl:choose> <!-- Generate the Creative Commons license information from the file section (DSpace deposit license hidden by default)--> <xsl:apply-templates select="./mets:fileSec/mets:fileGrp[@USE='CC-LICENSE']"/> </xsl:template> <!-- Generate the info about the item from the metadata section --> <xsl:template match="dim:dim" mode="itemSummaryView-DIM"> <table class="ds-includeSet-table"> <xsl:call-template name="itemSummaryView-DIM-fields"> </xsl:call-template> </table> <span class="Z3988"> <xsl:attribute name="title"> <xsl:call-template name="renderCOinS"/> </xsl:attribute>  <!-- non-breaking space to force separating the end tag --> </span> </xsl:template> <!-- render each field on a row, alternating phase between odd and even --> <!-- recursion needed since not every row appears for each Item. --> <xsl:template name="itemSummaryView-DIM-fields"> <xsl:param name="clause" select="'1'"/> <xsl:param name="phase" select="'even'"/> <xsl:variable name="otherPhase"> <xsl:choose> <xsl:when test="$phase = 'even'"> <xsl:text>odd</xsl:text> </xsl:when> <xsl:otherwise> <xsl:text>even</xsl:text> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:choose> <!-- artifact? <tr class="ds-table-row odd"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-preview</i18n:text>:</span></td> <td> <xsl:choose> <xsl:when test="mets:fileSec/mets:fileGrp[@USE='THUMBNAIL']"> <a class="image-link"> <xsl:attribute name="href"><xsl:value-of select="@OBJID"/></xsl:attribute> <img alt="Thumbnail"> <xsl:attribute name="src"> <xsl:value-of select="mets:fileSec/mets:fileGrp[@USE='THUMBNAIL']/ mets:file/mets:FLocat[@LOCTYPE='URL']/@xlink:href"/> </xsl:attribute> </img> </a> </xsl:when> <xsl:otherwise> <i18n:text>xmlui.dri2xhtml.METS-1.0.no-preview</i18n:text> </xsl:otherwise> </xsl:choose> </td> </tr>--> <!-- Title row --> <xsl:when test="$clause = 1"> <tr class="ds-table-row {$phase}"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-title</i18n:text>: </span></td> <td> <xsl:choose> <xsl:when test="count(dim:field[@mdschema='dc' and @element='title'][not(@qualifier)]) > 1"> <xsl:for-each select="dim:field[@mdschema='dc' and @element='title'][not(@qualifier)]"> <xsl:value-of select="./node()"/> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='title'][not(@qualifier)]) != 0"> <xsl:text>; </xsl:text><br/> </xsl:if> </xsl:for-each> </xsl:when> <xsl:when test="count(dim:field[@mdschema='dc' and @element='title'][not(@qualifier)]) = 1"> <xsl:value-of select="dim:field[@mdschema='dc' and @element='title'][not(@qualifier)][1]/node()"/> </xsl:when> <xsl:otherwise> <i18n:text>xmlui.dri2xhtml.METS-1.0.no-title</i18n:text> </xsl:otherwise> </xsl:choose> </td> </tr> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$otherPhase"/> </xsl:call-template> </xsl:when> <!-- Author(s) row --> <xsl:when test="$clause = 2 and (dim:field[@mdschema='dc' and @element='contributor'][@qualifier='author'] or dim:field[@mdschema='dc' and @element='creator'] or dim:field[@mdschema='dc' and @element='contributor'])"> <tr class="ds-table-row {$phase}"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-author</i18n:text>:</span></td> <td> <xsl:choose> <xsl:when test="dim:field[@mdschema='dc' and @element='contributor'][@qualifier='author']"> <xsl:for-each select="dim:field[@mdschema='dc' and @element='contributor'][@qualifier='author']"> <span> <xsl:if test="@authority"> <xsl:attribute name="class"><xsl:text>ds-dc_contributor_author-authority</xsl:text></xsl:attribute> </xsl:if> <xsl:copy-of select="node()"/> </span> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='contributor'][@qualifier='author']) != 0"> <xsl:text>; </xsl:text> </xsl:if> </xsl:for-each> </xsl:when> <xsl:when test="dim:field[@element='creator']"> <xsl:for-each select="dim:field[@mdschema='dc' and @element='creator']"> <xsl:copy-of select="node()"/> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='creator']) != 0"> <xsl:text>; </xsl:text> </xsl:if> </xsl:for-each> </xsl:when> <xsl:when test="dim:field[@mdschema='dc' and @element='contributor']"> <xsl:for-each select="dim:field[@mdschema='dc' and @element='contributor']"> <xsl:copy-of select="node()"/> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='contributor']) != 0"> <xsl:text>; </xsl:text> </xsl:if> </xsl:for-each> </xsl:when> <xsl:otherwise> <i18n:text>xmlui.dri2xhtml.METS-1.0.no-author</i18n:text> </xsl:otherwise> </xsl:choose> </td> </tr> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$otherPhase"/> </xsl:call-template> </xsl:when> <!-- Abstract row --> <xsl:when test="$clause = 3 and (dim:field[@mdschema='dc' and @element='description' and @qualifier='abstract'])"> <tr class="ds-table-row {$phase}"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-abstract</i18n:text>:</span></td> <td> <xsl:if test="count(dim:field[@mdschema='dc' and @element='description' and @qualifier='abstract']) > 1"> <hr class="metadata-separator"/> </xsl:if> <xsl:for-each select="dim:field[@mdschema='dc' and @element='description' and @qualifier='abstract']"> <xsl:copy-of select="./node()"/> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='description' and @qualifier='abstract']) != 0"> <hr class="metadata-separator"/> </xsl:if> </xsl:for-each> <xsl:if test="count(dim:field[@mdschema='dc' and @element='description' and @qualifier='abstract']) > 1"> <hr class="metadata-separator"/> </xsl:if> </td> </tr> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$otherPhase"/> </xsl:call-template> </xsl:when> <!-- Description row --> <xsl:when test="$clause = 4 and (dim:field[@mdschema='dc' and @element='description' and not(@qualifier)])"> <tr class="ds-table-row {$phase}"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-description</i18n:text>:</span></td> <td> <xsl:if test="count(dim:field[@mdschema='dc' and @element='description' and not(@qualifier)]) > 1 and not(count(dim:field[@mdschema='dc' and @element='description' and @qualifier='abstract']) > 1)"> <hr class="metadata-separator"/> </xsl:if> <xsl:for-each select="dim:field[@mdschema='dc' and @element='description' and not(@qualifier)]"> <xsl:copy-of select="./node()"/> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='description' and not(@qualifier)]) != 0"> <hr class="metadata-separator"/> </xsl:if> </xsl:for-each> <xsl:if test="count(dim:field[@mdschema='dc' and @element='description' and not(@qualifier)]) > 1"> <hr class="metadata-separator"/> </xsl:if> </td> </tr> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$otherPhase"/> </xsl:call-template> </xsl:when> <!-- identifier.uri row --> <xsl:when test="$clause = 5 and (dim:field[@mdschema='dc' and @element='identifier' and @qualifier='uri'])"> <tr class="ds-table-row {$phase}"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-uri</i18n:text>:</span></td> <td> <xsl:for-each select="dim:field[@mdschema='dc' and @element='identifier' and @qualifier='uri']"> <a> <xsl:attribute name="href"> <xsl:copy-of select="./node()"/> </xsl:attribute> <xsl:copy-of select="./node()"/> </a> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='identifier' and @qualifier='uri']) != 0"> <br/> </xsl:if> </xsl:for-each> </td> </tr> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$otherPhase"/> </xsl:call-template> </xsl:when> <!-- date.issued row --> <xsl:when test="$clause = 6 and (dim:field[@mdschema='dc' and @element='date' and @qualifier='issued'])"> <tr class="ds-table-row {$phase}"> <td><span class="bold"><i18n:text>xmlui.dri2xhtml.METS-1.0.item-date</i18n:text>:</span></td> <td> <xsl:for-each select="dim:field[@mdschema='dc' and @element='date' and @qualifier='issued']"> <xsl:copy-of select="substring(./node(),1,10)"/> <xsl:if test="count(following-sibling::dim:field[@mdschema='dc' and @element='date' and @qualifier='issued']) != 0"> <br/> </xsl:if> </xsl:for-each> </td> </tr> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$otherPhase"/> </xsl:call-template> </xsl:when> <!-- recurse without changing phase if we didn't output anything --> <xsl:otherwise> <!-- IMPORTANT: This test should be updated if clauses are added! --> <xsl:if test="$clause < 7"> <xsl:call-template name="itemSummaryView-DIM-fields"> <xsl:with-param name="clause" select="($clause + 1)"/> <xsl:with-param name="phase" select="$phase"/> </xsl:call-template> </xsl:if> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- An item rendered in the detailView pattern, the "full item record" view of a DSpace item in Manakin. --> <xsl:template name="itemDetailView-DIM"> <!-- Output all of the metadata about the item from the metadata section --> <xsl:apply-templates select="mets:dmdSec/mets:mdWrap[@OTHERMDTYPE='DIM']/mets:xmlData/dim:dim" mode="itemDetailView-DIM"/> <!-- Generate the bitstream information from the file section --> <xsl:choose> <xsl:when test="./mets:fileSec/mets:fileGrp[@USE='CONTENT' or @USE='ORIGINAL']"> <xsl:apply-templates select="./mets:fileSec/mets:fileGrp[@USE='CONTENT' or @USE='ORIGINAL']"> <xsl:with-param name="context" select="."/> <xsl:with-param name="primaryBitstream" select="./mets:structMap[@TYPE='LOGICAL']/mets:div[@TYPE='DSpace Item']/mets:fptr/@FILEID"/> </xsl:apply-templates> </xsl:when> <!-- Special case for handling ORE resource maps stored as DSpace bitstreams --> <xsl:when test="./mets:fileSec/mets:fileGrp[@USE='ORE']"> <xsl:apply-templates select="./mets:fileSec/mets:fileGrp[@USE='ORE']"/> </xsl:when> <xsl:otherwise> <h2><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-head</i18n:text></h2> <table class="ds-table file-list"> <tr class="ds-table-header-row"> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-file</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-size</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-format</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-view</i18n:text></th> </tr> <tr> <td colspan="4"> <p><i18n:text>xmlui.dri2xhtml.METS-1.0.item-no-files</i18n:text></p> </td> </tr> </table> </xsl:otherwise> </xsl:choose> <!-- Generate the Creative Commons license information from the file section (DSpace deposit license hidden by default) --> <xsl:apply-templates select="mets:fileSec/mets:fileGrp[@USE='CC-LICENSE']"/> </xsl:template> <!-- The block of templates used to render the complete DIM contents of a DRI object --> <xsl:template match="dim:dim" mode="itemDetailView-DIM"> <table class="ds-includeSet-table"> <xsl:apply-templates mode="itemDetailView-DIM"/> </table> <span class="Z3988"> <xsl:attribute name="title"> <xsl:call-template name="renderCOinS"/> </xsl:attribute> </span> </xsl:template> <xsl:template match="dim:field" mode="itemDetailView-DIM"> <tr> <xsl:attribute name="class"> <xsl:text>ds-table-row </xsl:text> <xsl:if test="(position() div 2 mod 2 = 0)">even </xsl:if> <xsl:if test="(position() div 2 mod 2 = 1)">odd </xsl:if> </xsl:attribute> <td> <xsl:value-of select="./@mdschema"/> <xsl:text>.</xsl:text> <xsl:value-of select="./@element"/> <xsl:if test="./@qualifier"> <xsl:text>.</xsl:text> <xsl:value-of select="./@qualifier"/> </xsl:if> </td> <td> <xsl:copy-of select="./node()"/> <xsl:if test="./@authority and ./@confidence"> <xsl:call-template name="authorityConfidenceIcon"> <xsl:with-param name="confidence" select="./@confidence"/> </xsl:call-template> </xsl:if> </td> <td><xsl:value-of select="./@language"/></td> </tr> </xsl:template> <!-- Generate the bitstream information from the file section --> <xsl:template match="mets:fileGrp[@USE='CONTENT']"> <xsl:param name="context"/> <xsl:param name="primaryBitstream" select="-1"/> <h2><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-head</i18n:text></h2> <table class="ds-table file-list"> <tr class="ds-table-header-row"> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-file</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-size</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-format</i18n:text></th> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-view</i18n:text></th> <!-- Display header for 'Description' only if at least one bitstream contains a description --> <xsl:if test="mets:file/mets:FLocat/@xlink:label != ''"> <th><i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-description</i18n:text></th> </xsl:if> </tr> <xsl:choose> <!-- If one exists and it's of text/html MIME type, only display the primary bitstream --> <xsl:when test="mets:file[@ID=$primaryBitstream]/@MIMETYPE='text/html'"> <xsl:apply-templates select="mets:file[@ID=$primaryBitstream]"> <xsl:with-param name="context" select="$context"/> </xsl:apply-templates> </xsl:when> <!-- Otherwise, iterate over and display all of them --> <xsl:otherwise> <xsl:apply-templates select="mets:file"> <!--Do not sort any more bitstream order can be changed--> <!--<xsl:sort data-type="number" select="boolean(./@ID=$primaryBitstream)" order="descending" />--> <!--<xsl:sort select="mets:FLocat[@LOCTYPE='URL']/@xlink:title"/>--> <xsl:with-param name="context" select="$context"/> </xsl:apply-templates> </xsl:otherwise> </xsl:choose> </table> </xsl:template> <!-- Build a single row in the bitstreams table of the item view page --> <xsl:template match="mets:file"> <xsl:param name="context" select="."/> <tr> <xsl:attribute name="class"> <xsl:text>ds-table-row </xsl:text> <xsl:if test="(position() mod 2 = 0)">even </xsl:if> <xsl:if test="(position() mod 2 = 1)">odd </xsl:if> </xsl:attribute> <td> <a> <xsl:attribute name="href"> <xsl:value-of select="mets:FLocat[@LOCTYPE='URL']/@xlink:href"/> </xsl:attribute> <xsl:attribute name="title"> <xsl:value-of select="mets:FLocat[@LOCTYPE='URL']/@xlink:title"/> </xsl:attribute> <xsl:choose> <xsl:when test="string-length(mets:FLocat[@LOCTYPE='URL']/@xlink:title) > 50"> <xsl:variable name="title_length" select="string-length(mets:FLocat[@LOCTYPE='URL']/@xlink:title)"/> <xsl:value-of select="substring(mets:FLocat[@LOCTYPE='URL']/@xlink:title,1,15)"/> <xsl:text> ... </xsl:text> <xsl:value-of select="substring(mets:FLocat[@LOCTYPE='URL']/@xlink:title,$title_length - 25,$title_length)"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="mets:FLocat[@LOCTYPE='URL']/@xlink:title"/> </xsl:otherwise> </xsl:choose> <xsl:if test="contains(mets:FLocat[@LOCTYPE='URL']/@xlink:href,'isAllowed=n')"> <img> <xsl:attribute name="src"> <xsl:value-of select="$context-path"/> <xsl:text>/static/icons/lock24.png</xsl:text> </xsl:attribute> <xsl:attribute name="alt">xmlui.dri2xhtml.METS-1.0.blocked</xsl:attribute> <xsl:attribute name="attr" namespace="http://apache.org/cocoon/i18n/2.1">alt</xsl:attribute> </img> </xsl:if> </a> </td> <!-- File size always comes in bytes and thus needs conversion --> <td> <xsl:choose> <xsl:when test="@SIZE < 1024"> <xsl:value-of select="@SIZE"/> <i18n:text>xmlui.dri2xhtml.METS-1.0.size-bytes</i18n:text> </xsl:when> <xsl:when test="@SIZE < 1024 * 1024"> <xsl:value-of select="substring(string(@SIZE div 1024),1,5)"/> <i18n:text>xmlui.dri2xhtml.METS-1.0.size-kilobytes</i18n:text> </xsl:when> <xsl:when test="@SIZE < 1024 * 1024 * 1024"> <xsl:value-of select="substring(string(@SIZE div (1024 * 1024)),1,5)"/> <i18n:text>xmlui.dri2xhtml.METS-1.0.size-megabytes</i18n:text> </xsl:when> <xsl:otherwise> <xsl:value-of select="substring(string(@SIZE div (1024 * 1024 * 1024)),1,5)"/> <i18n:text>xmlui.dri2xhtml.METS-1.0.size-gigabytes</i18n:text> </xsl:otherwise> </xsl:choose> </td> <!-- Lookup File Type description in local messages.xml based on MIME Type. In the original DSpace, this would get resolved to an application via the Bitstream Registry, but we are constrained by the capabilities of METS and can't really pass that info through. --> <td> <xsl:call-template name="getFileTypeDesc"> <xsl:with-param name="mimetype"> <xsl:value-of select="substring-before(@MIMETYPE,'/')"/> <xsl:text>/</xsl:text> <xsl:value-of select="substring-after(@MIMETYPE,'/')"/> </xsl:with-param> </xsl:call-template> </td> <td> <xsl:choose> <xsl:when test="$context/mets:fileSec/mets:fileGrp[@USE='THUMBNAIL']/ mets:file[@GROUPID=current()/@GROUPID]"> <a class="image-link"> <xsl:attribute name="href"> <xsl:value-of select="mets:FLocat[@LOCTYPE='URL']/@xlink:href"/> </xsl:attribute> <img alt="Thumbnail"> <xsl:attribute name="src"> <xsl:value-of select="$context/mets:fileSec/mets:fileGrp[@USE='THUMBNAIL']/ mets:file[@GROUPID=current()/@GROUPID]/mets:FLocat[@LOCTYPE='URL']/@xlink:href"/> </xsl:attribute> </img> </a> </xsl:when> <xsl:otherwise> <a> <xsl:attribute name="href"> <xsl:value-of select="mets:FLocat[@LOCTYPE='URL']/@xlink:href"/> </xsl:attribute> <i18n:text>xmlui.dri2xhtml.METS-1.0.item-files-viewOpen</i18n:text> </a> </xsl:otherwise> </xsl:choose> </td> <!-- Display the contents of 'Description' as long as at least one bitstream contains a description --> <xsl:if test="$context/mets:fileSec/mets:fileGrp[@USE='CONTENT']/mets:file/mets:FLocat/@xlink:label != ''"> <td> <xsl:value-of select="mets:FLocat[@LOCTYPE='URL']/@xlink:label"/> </td> </xsl:if> </tr> </xsl:template> <!-- File Type Mapping template This maps format MIME Types to human friendly File Type descriptions. Essentially, it looks for a corresponding 'key' in your messages.xml of this format: xmlui.dri2xhtml.mimetype.{MIME Type} (e.g.) <message key="xmlui.dri2xhtml.mimetype.application/pdf">PDF</message> If a key is found, the translated value is displayed as the File Type (e.g. PDF) If a key is NOT found, the MIME Type is displayed by default (e.g. application/pdf) --> <xsl:template name="getFileTypeDesc"> <xsl:param name="mimetype"/> <!--Build full key name for MIME type (format: xmlui.dri2xhtml.mimetype.{MIME type})--> <xsl:variable name="mimetype-key">xmlui.dri2xhtml.mimetype.<xsl:value-of select='$mimetype'/></xsl:variable> <!--Lookup the MIME Type's key in messages.xml language file. If not found, just display MIME Type--> <i18n:text i18n:key="{$mimetype-key}"><xsl:value-of select="$mimetype"/></i18n:text> </xsl:template> <!-- Generate the license information from the file section --> <xsl:template match="mets:fileGrp[@USE='CC-LICENSE' or @USE='LICENSE']"> <div class="license-info"> <p><i18n:text>xmlui.dri2xhtml.METS-1.0.license-text</i18n:text></p> <ul> <xsl:if test="@USE='CC-LICENSE'"> <li><a href="{mets:file/mets:FLocat[@xlink:title='license_text']/@xlink:href}"><i18n:text>xmlui.dri2xhtml.structural.link_cc</i18n:text></a></li> </xsl:if> <xsl:if test="@USE='LICENSE'"> <li><a href="{mets:file/mets:FLocat[@xlink:title='license.txt']/@xlink:href}"><i18n:text>xmlui.dri2xhtml.structural.link_original_license</i18n:text></a></li> </xsl:if> </ul> </div> </xsl:template> </xsl:stylesheet>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de