Changeset 8299
- Timestamp:
- 04/05/12 17:00:56 (9 years ago)
- Location:
- mauRepo/isic_gn/trunk/geonetwork/xsl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/isic_gn/trunk/geonetwork/xsl/metadata-show-embedded.xsl
r8297 r8299 24 24 25 25 <!-- content --> 26 <tr height="100%"><td> 26 <tr height="100%"><td> 27 27 <xsl:call-template name="content"/> 28 28 </td></tr> … … 42 42 <tr height="100%"> 43 43 <td class="content" valign="top"> 44 45 44 <xsl:variable name="md"> 46 45 <xsl:apply-templates mode="brief" select="."/> … … 56 55 <xsl:with-param name="abstract" select="$metadata/abstract" /> 57 56 </xsl:call-template> 58 59 57 <table width="100%"> 58 60 59 61 60 <xsl:if test="/root/request/control"> … … 80 79 <xsl:when test="$currTab='xml'"> 81 80 <xsl:apply-templates mode="xmlDocument" select="."/> 82 </xsl:when> 81 </xsl:when> 83 82 <xsl:otherwise> 84 <xsl:call-template name="distributionURL"/> 83 <xsl:call-template name="distributionURL"/> 85 84 <xsl:apply-templates mode="elementEP" select="."> 86 85 <xsl:with-param name="embedded" select="true()" /> -
mauRepo/isic_gn/trunk/geonetwork/xsl/metadata.xsl
r8297 r8299 16 16 <!-- mauCustomization --> 17 17 <!-- ===================================================================== --> 18 <xsl:template name="distributionURL"> 19 <xsl:for-each select="//gmd:distributionInfo/gmd:MD_Distribution/gmd:transferOptions/gmd:MD_DigitalTransferOptions/gmd:onLine/gmd:CI_OnlineResource/gmd:linkage"> 20 URL: <xsl:value-of select="gmd:URL"/><br/> 21 </xsl:for-each> 18 <xsl:template name="distributionURL"> 19 <table width="100%"> 20 <xsl:for-each select="//gmd:distributionInfo/gmd:MD_Distribution/gmd:transferOptions/gmd:MD_DigitalTransferOptions/gmd:onLine/gmd:CI_OnlineResource/gmd:linkage"> 21 <tr> 22 <td><a> 23 <xsl:attribute name='href'> 24 <xsl:value-of select='gmd:URL'/> 25 </xsl:attribute> 26 <xsl:value-of select="gmd:URL"/> 27 </a><br/> 28 </td> 29 </tr> 30 </xsl:for-each> 31 </table> 22 32 </xsl:template> 23 33
Note: See TracChangeset
for help on using the changeset viewer.