Correct urls generation when there is a trailing slash (thanks to sourceforge
for the homework;)
This commit is contained in:
parent
cbfba99325
commit
719d0fc0a3
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@
|
|||
<xsl:template name="package.name">
|
||||
<xsl:param name="url"/>
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains($url, '/')">
|
||||
<xsl:when test="contains($url, '/') and not (substring-after($url,'/')='')">
|
||||
<xsl:call-template name="package.name">
|
||||
<xsl:with-param name="url" select="substring-after($url, '/')"/>
|
||||
</xsl:call-template>
|
||||
|
|
Reference in a new issue