RE: fileset of cvs changed files

2010-12-31 Thread Urena, Jose M
have you tried the built in + the xslt in style="${ant.home}/etc/changelog.xsl" or style="${ant.home}/etc/changelog-text.xsl" it needs a starting tag or branch and will report all files changed since tag/branch was created -Original Message---

Re: fileset of cvs changed files

2010-12-31 Thread Antoine Levy-Lambert
Hello Mark, what you can do is run your cvs update using the exec task and use a nested filterchain do capture output lines with a "U" [1] and apply a regular expression to keep only the path of the file, then save this output into a file. The output file should contain a series of file relativ

AUTO: Maureen Troendle is out of the office. (returning 01/10/2011)

2010-12-31 Thread Maureen Troendle
I am out of the office until 01/10/2011. I will be out of the office from Dec 31st - Jan 9th. Note: This is an automated response to your message "fileset of cvs changed files" sent on 12/31/10 8:17:33. This is the only notification you will receive while this person is away. --

fileset of cvs changed files

2010-12-31 Thread Mark Lybarger
i'm using ant to build a project that has been checked out from cvs. i want to run a task that uses a fileset of all files changed from cvs. basically, i'm looking to run a source code formatter on the source files and only want it to run on files that have changed from the version control. than