added ant-contrib so we can use the foreach task within our build files, which i am using within the lucene build file

This commit is contained in:
eg3p 2007-05-15 18:56:04 +00:00
parent f8a97cce4e
commit f804001124
3 changed files with 16 additions and 9 deletions

View file

@ -3,14 +3,11 @@
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" encoding="utf-8"/>
<xsl:param name="prefix" select="''"/>
<xsl:template match="/">
<xsl:apply-templates select="//transcript"/>
</xsl:template>
<xsl:template match="transcript">
<xsl:value-of select="$prefix"/><xsl:value-of select="."/><xsl:text>
</xsl:text>
<xsl:value-of select="."/><xsl:text> </xsl:text>
</xsl:template>
</xsl:stylesheet>