I have a certain document directory structure that I would like to do
opertaion recursively on. What I would like to do is that if a certain
directory contains the file RENDER_ME, I would use a XSLT on some .xml
files that creates the index.html. However, it would only do the
transformation if any of the .xml files is newer than the index.html.
I would like to do the above in Ant. I was trying to write my own task
but I don't know how to do a per directory task that operates on a
fileset ("dirset" in this case). I can probably write one big task to
do the checking of the modification time, checking for the RENDER_ME
file, and do the XSLT recursively down the directory. However, is there
a better way to do such thing in Ant though?
Thanks.
Will