FIX: report header contains incorrect link after resolve for multiple, comma-separated configurations (IVY-57)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@484015 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Xavier Hanin 2005-08-17 17:19:45 +00:00
parent 8effae1bca
commit 50ef528cd5
2 changed files with 6 additions and 5 deletions

View File

@ -14,6 +14,7 @@
- new type filtering in cachepath task
- new cachefileset task: builds an ant fileset of artifacts in cache
- publish task now uses srcivypattern for ivy files finding and for delivery
- FIX: report header contains incorrect link after resolve for multiple, comma-separated configurations (IVY-57)
- FIX: error retrieving dependencies with a '+' in their revision if the ivy file doesn't exist - fixed by maarten coene (IVY-59)
- FIX: trying to resolve latest with no revision in pattern caused a StackOverflowError (IVY-56)
- FIX: now handle transitive eviction (IVY-51)

View File

@ -175,17 +175,17 @@
<xsl:template name="confs">
<xsl:param name="configurations"/>
<xsl:if test="contains($configurations, ', ')">
<xsl:if test="contains($configurations, ',')">
<xsl:call-template name="conf">
<xsl:with-param name="conf" select="substring-before($configurations,', ')"/>
<xsl:with-param name="conf" select="normalize-space(substring-before($configurations,','))"/>
</xsl:call-template>
<xsl:call-template name="confs">
<xsl:with-param name="configurations" select="substring-after($configurations,', ')"/>
<xsl:with-param name="configurations" select="substring-after($configurations,',')"/>
</xsl:call-template>
</xsl:if>
<xsl:if test="not(contains($configurations, ', '))">
<xsl:if test="not(contains($configurations, ','))">
<xsl:call-template name="conf">
<xsl:with-param name="conf" select="$configurations"/>
<xsl:with-param name="conf" select="normalize-space($configurations)"/>
</xsl:call-template>
</xsl:if>
</xsl:template>