[GeoNetwork-users] ISO19139:online resource name link replaced by description: bug?

Hi there,

Under 'transfer options', 'online resource', the contents of the
'description' field become the link in the saved record instead of the 'name
of the resource' field. In order to display the link of 'name of the
resource', the description must be omitted.

Any ideas for fixing would be welcome.

Cheers,
Richard

v2.6.3 / ISO 19139 vector template
--
View this message in context: http://osgeo-org.1803224.n2.nabble.com/ISO19139-online-resource-name-link-replaced-by-description-bug-tp6045766p6045766.html
Sent from the GeoNetwork users mailing list archive at Nabble.com.

For reference, changes made to metadata-iso19139.xsl to ensure the name of
resource or URL becomes the hyperlink, and the description is displayed
under the link (currently it is not)

Rich

____________
<xsl:apply-templates mode="simpleElement" select=".">
<xsl:with-param name="schema" select="$schema"/>
<xsl:with-param name="text">
{$linkage}
<xsl:choose>
<xsl:when test="string($name)!=''">
<xsl:value-of select="$name"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$linkage"/>
</xsl:otherwise>
</xsl:choose>

<br/><xsl:value-of select="$description"/>
</xsl:with-param>

--
View this message in context: http://osgeo-org.1803224.n2.nabble.com/ISO19139-online-resource-name-link-replaced-by-description-tp6045766p6336606.html
Sent from the GeoNetwork users mailing list archive at Nabble.com.