diff --git a/CONTRIBUTORS b/CONTRIBUTORS
index 45c04e1eb..a3de7235e 100644
--- a/CONTRIBUTORS
+++ b/CONTRIBUTORS
@@ -239,6 +239,7 @@ Tom Cunningham
Tom Dimock
Tom Eugelink
Ulrich Schmidt
+Victor Toni
Waldek Herka
Will Wang
William Ferguson
diff --git a/contributors.xml b/contributors.xml
index 24ae73a23..e5ecb2516 100644
--- a/contributors.xml
+++ b/contributors.xml
@@ -950,6 +950,10 @@
Note: If you are using JDK 1.4 or higher, this task does not require external libraries not supplied in the Ant distribution. However, often the built in XSL engine is not as up -to date as a fresh download, so an update is still highly recommended. +to date as a fresh download, so an update is still highly recommended. See Library Dependencies for more information.
It is possible to refine the set of files that are being processed. This can be done with the includes, includesfile, excludes, excludesfile and defaultexcludes @@ -189,6 +189,22 @@ element which is used to perform Entity and URI resolution.
Since Ant 1.7.+Parameters
@@ -417,10 +433,33 @@ See resources to see the concrete synt <param name="set" expression="value"/> </xslt> + Print the current processed file name
++<project> + <xslt style="printFilename.xsl" destdir="out" basedir="in" extension=".txt" + filenameparameter="filename" + filedirparameter="filedir" + /> +</project> + +<xsl:stylesheet + version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> + + <xsl:param name="filename"></xsl:param> + <xsl:param name="filedir">.</xsl:param> + +<xsl:template match="/"> + Current file is <xsl:value-of select="$filename"/> in directory <xsl:value-of select="$filedir"/>. +</xsl:template> + +</xsl:stylesheet> ++
Copyright © 2000-2006 The Apache Software Foundation. All rights Reserved.