mirror of https://github.com/apache/ant-ivy
FIX: HTML report shouldn't display the dependencies of evicted modules (IVY-158) (thanks to Maarten Coene)
git-svn-id: https://svn.apache.org/repos/asf/incubator/ivy/trunk@484191 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
535c0c3433
commit
1137b3714e
|
|
@ -1,6 +1,8 @@
|
|||
- IMPROVE: add regexp management in the install ant task (IVY-154)
|
||||
|
||||
- FIX: HTML report shouldn't display the dependencies of evicted modules (IVY-158) (thanks to Maarten Coene)
|
||||
- FIX: bug when an organisation or module or revision contains a space (IVY-157)
|
||||
- slight modification of xsd in attempt to fix IVY-156
|
||||
- IMPROVE: add regexp management in the install ant task (IVY-154)
|
||||
|
||||
version 1.3-RC1 - 2006-01-25
|
||||
===============================
|
||||
|
|
|
|||
|
|
@ -107,12 +107,14 @@
|
|||
</xsl:call-template>
|
||||
</td>
|
||||
</tr>
|
||||
<xsl:if test="not($revision/@evicted)">
|
||||
<xsl:for-each select="$modules/revision/caller[@organisation=$organisation and @name=$module]">
|
||||
<xsl:call-template name="called">
|
||||
<xsl:with-param name="indent" select="concat($indent, string('---'))"/>
|
||||
<xsl:with-param name="revision" select=".."/>
|
||||
</xsl:call-template>
|
||||
</xsl:for-each>
|
||||
</xsl:if>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="licenses">
|
||||
|
|
|
|||
Loading…
Reference in New Issue