cvs commit: ant/src/main/org/apache/tools/ant/util FileUtils.java

2005-04-07 Thread bruce
bruce 2005/04/06 16:14:00 Modified:src/main/org/apache/tools/ant/util FileUtils.java Log: Improved heuristics on file timestamp granularity by adding an NTFS category and checking for it Revision ChangesPath 1.91 +18 -4

Re: Drop 1.2/1.3 support in Ant 1.7 (or sometime)?

2005-04-07 Thread Kev Jackson
Jesse Glick wrote: Has anyone given thought to when we drop support for running Ant on JDK 1.2/1.3? These releases are pretty old by now and AFAIK all major platforms have had a decent 1.4 port for a while. I am guessing most Java developers would be using a relatively recent JDK anyway - and

Re: Last-minute change to 1.6.3 :(

2005-04-07 Thread Antoine Levy-Lambert
Hello Matt, Matt Benson wrote: Hi all, There are some changes that need to be made to Executor functionality before the interface is released in 1.6.3 . I was supposed to do this and forgot before the RC was made (see bug 22901). I'd like to get Antoine's blessing to make the necessary changes

DO NOT REPLY [Bug 34342] New: - java.lang.OutOfMemoryError in junitreport

2005-04-07 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=34342. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: Drop 1.2/1.3 support in Ant 1.7 (or sometime)?

2005-04-07 Thread Steve Loughran
Stefan Bodewig wrote: On Wed, 06 Apr 2005, Jesse Glick [EMAIL PROTECTED] wrote: Has anyone given thought to when we drop support for running Ant on JDK 1.2/1.3? These releases are pretty old by now and AFAIK all major platforms have had a decent 1.4 port for a while. We still have a customer who

DO NOT REPLY [Bug 34328] - Cannot open zip file created using zip task in ANT 1.5.4 using WINZIP Tool

2005-04-07 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=34328. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: [VOTE] Alexey Solofnenko

2005-04-07 Thread Erik Hatcher
+1 On Apr 6, 2005, at 1:28 AM, Conor MacNeill wrote: I would like to propose Alexey Solofnenko as an Ant committer. Alexey is a long time contributor to Ant and is also active on our user list helping people with good suggestions and ideas. here's my +1 Conor

Re: ResourceCollections

2005-04-07 Thread Peter Reilly
I meant to reply earlier... I do not like ant:mappers, etc This does not use the method antlib:package name that antlibs are meant to be identified by. If ant:whatever core wants is used to identify ant's antlibs', then there is ample reason for thirdparty antlibs authors to ask for easy to use

Re: Last-minute change to 1.6.3 :(

2005-04-07 Thread Matt Benson
--- Antoine Levy-Lambert [EMAIL PROTECTED] wrote: Hello Matt, Matt Benson wrote: Hi all, There are some changes that need to be made to Executor functionality before the interface is released in 1.6.3 . I was supposed to do this and forgot before the RC was made (see bug 22901).

DO NOT REPLY [Bug 34345] New: - JAR should have a support for arg tag

2005-04-07 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=34345. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 34345] - JAR should have a support for arg tag

2005-04-07 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=34345. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: Last-minute change to 1.6.3 :(

2005-04-07 Thread Antoine Levy-Lambert
Hello Matt, OK with me, go ahead. Cheers, Antoine --- Antoine Levy-Lambert [EMAIL PROTECTED] wrote: Hello Matt, Matt Benson wrote: Hi all, There are some changes that need to be made to Executor functionality before the interface is released in 1.6.3 . I was supposed

RE: Drop 1.2/1.3 support in Ant 1.7 (or sometime)?

2005-04-07 Thread Rick Genter
-Original Message- From: Stefan Bodewig [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 06, 2005 4:24 PM To: [EMAIL PROTECTED] Subject: Re: Drop 1.2/1.3 support in Ant 1.7 (or sometime)? On Wed, 06 Apr 2005, Jesse Glick [EMAIL PROTECTED] wrote: Has anyone given thought to when

RE: ResourceCollections

2005-04-07 Thread Dominique Devienne
From: Peter Reilly [mailto:[EMAIL PROTECTED] I do not like ant:mappers, etc I don't have much of a problem with it myself now. It's been argued, winning me over, that the ant: prefix is already reserved, and thus it's an acceptable solution solution to this problem, and Matt idea of loading

Re: Drop 1.2/1.3 support in Ant 1.7 (or sometime)?

2005-04-07 Thread Jesse Glick
Stefan Bodewig wrote: All in all I'm -0.5 on dropping JDK 1.2 for Ant 1.7 and -0.75 on dropping JDK 1.3 for Ant 1.7. BTW dropping JDK 1.2 support but supporting JDK 1.3 doesn't buy us a lot; few new APIs or other features were added in JDK 1.3, as it was mostly a performance release. -J. --

Re: cvs commit: ant/src/main/org/apache/tools/ant/util FileUtils.java

2005-04-07 Thread Martijn Kruithof
+/** + * The granularity of timestamps under the NT File System. + * NTFS has a granularity of 100 nanoseconds, which is less + * than 1 millisecond, so we set this to 0. + */ +public static final long NTFS_FILE_TIMESTAMP_GRANULARITY = 0; Shouldn't this be 1,

Re: Drop 1.2/1.3 support in Ant 1.7 (or sometime)?

2005-04-07 Thread Martijn Kruithof
Jesse Glick wrote: Stefan Bodewig wrote: All in all I'm -0.5 on dropping JDK 1.2 for Ant 1.7 and -0.75 on dropping JDK 1.3 for Ant 1.7. BTW dropping JDK 1.2 support but supporting JDK 1.3 doesn't buy us a lot; few new APIs or other features were added in JDK 1.3, as it was mostly a performance

Re: Drop 1.2/1.3 support in Ant 1.7 (or sometime)?

2005-04-07 Thread Steve Loughran
Martijn Kruithof wrote: Jesse Glick wrote: Stefan Bodewig wrote: All in all I'm -0.5 on dropping JDK 1.2 for Ant 1.7 and -0.75 on dropping JDK 1.3 for Ant 1.7. BTW dropping JDK 1.2 support but supporting JDK 1.3 doesn't buy us a lot; few new APIs or other features were added in JDK 1.3, as it

cvs commit: ant/src/main/org/apache/tools/ant Diagnostics.java

2005-04-07 Thread stevel
stevel 2005/04/07 10:07:34 Modified:src/main/org/apache/tools/ant Diagnostics.java Log: [EMAIL PROTECTED] my junit reports are apparently an hour old. No fix, but -diagnostics now prints some clock info, and examines diffs between temp dir and local clock and complains if they

cvs commit: ant/src/main/org/apache/tools/ant Diagnostics.java

2005-04-07 Thread stevel
stevel 2005/04/07 10:08:24 Modified:src/main/org/apache/tools/ant Diagnostics.java Log: ok, sometimes drift is -ve. Revision ChangesPath 1.26 +1 -1 ant/src/main/org/apache/tools/ant/Diagnostics.java Index: Diagnostics.java

Re: cvs commit: ant/src/main/org/apache/tools/ant Diagnostics.java

2005-04-07 Thread Peter Reilly
[EMAIL PROTECTED] wrote: stevel 2005/04/07 10:07:34 Modified:src/main/org/apache/tools/ant Diagnostics.java Log: [EMAIL PROTECTED] my junit reports are apparently an hour old. One hour, Daylight saving Time ? Peter -

Re: cvs commit: ant/src/main/org/apache/tools/ant Diagnostics.java

2005-04-07 Thread Steve Loughran
Peter Reilly wrote: [EMAIL PROTECTED] wrote: stevel 2005/04/07 10:07:34 Modified:src/main/org/apache/tools/ant Diagnostics.java Log: [EMAIL PROTECTED] my junit reports are apparently an hour old. One hour, Daylight saving Time ? clearly so. But its the same on both my systems, and

cvs commit: ant/src/main/org/apache/tools/ant Diagnostics.java

2005-04-07 Thread jkf
jkf 2005/04/07 10:59:11 Modified:src/main/org/apache/tools/ant Diagnostics.java Log: Made compilable on 1.2 / 1.3 Revision ChangesPath 1.27 +10 -4 ant/src/main/org/apache/tools/ant/Diagnostics.java Index: Diagnostics.java

DO NOT REPLY [Bug 34356] New: - mistake in code example in XSLT Task

2005-04-07 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=34356. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

cvs commit: ant/src/main/org/apache/tools/ant Project.java Executor.java

2005-04-07 Thread mbenson
mbenson 2005/04/07 12:31:39 Modified:src/main/org/apache/tools/ant/helper SingleCheckExecutor.java DefaultExecutor.java src/main/org/apache/tools/ant/taskdefs Ant.java src/main/org/apache/tools/ant Project.java Executor.java Added:

cvs commit: ant/src/main/org/apache/tools/ant/helper KeepGoingExecutor.java

2005-04-07 Thread mbenson
mbenson 2005/04/07 12:33:44 Removed: src/main/org/apache/tools/ant/helper KeepGoingExecutor.java Log: Remove KeepGoingExecutor; keep-going responsibility is on each Executor impl. PR: 22901 Submitted by: Alexey Solofnenko Reviewed by: Matt Benson

cvs commit: ant/docs/manual/CoreTasks style.html

2005-04-07 Thread mbenson
mbenson 2005/04/07 12:40:17 Modified:docs/manual/CoreTasks style.html Log: Remove stray semicolon. PR: 34356 Submitted by: Jim Fuller Revision ChangesPath 1.39 +1 -1 ant/docs/manual/CoreTasks/style.html Index: style.html

DO NOT REPLY [Bug 34356] - mistake in code example in XSLT Task

2005-04-07 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://issues.apache.org/bugzilla/show_bug.cgi?id=34356. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE.

Re: cvs commit: ant/src/main/org/apache/tools/ant/util FileUtils.java

2005-04-07 Thread Bruce Atherton
Ok, I'll make this change. Martijn Kruithof wrote: +/** + * The granularity of timestamps under the NT File System. + * NTFS has a granularity of 100 nanoseconds, which is less + * than 1 millisecond, so we set this to 0. + */ +public static final long

cvs commit: ant/src/main/org/apache/tools/ant/util FileUtils.java

2005-04-07 Thread bruce
bruce 2005/04/07 12:59:35 Modified:src/main/org/apache/tools/ant/util FileUtils.java Log: Round NTFS Granularity up rather than down Revision ChangesPath 1.92 +1 -1 ant/src/main/org/apache/tools/ant/util/FileUtils.java Index: FileUtils.java

cvs commit: ant/src/main/org/apache/tools/ant/taskdefs Ant.java

2005-04-07 Thread mbenson
mbenson 2005/04/07 13:14:52 Modified:src/main/org/apache/tools/ant/helper Tag: ANT_16_BRANCH DefaultExecutor.java SingleCheckExecutor.java src/main/org/apache/tools/ant Tag: ANT_16_BRANCH Executor.java Project.java

cvs commit: ant/src/etc/testcases/taskdefs length.xml

2005-04-07 Thread mbenson
mbenson 2005/04/07 15:22:26 Modified:docs/manual/CoreTasks length.html conditions.html src/main/org/apache/tools/ant/taskdefs Length.java src/testcases/org/apache/tools/ant/taskdefs LengthTest.java src/etc/testcases/taskdefs length.xml Log:

cvs commit: ant/src/testcases/org/apache/tools/ant/taskdefs LengthTest.java

2005-04-07 Thread mbenson
mbenson 2005/04/07 15:28:59 Modified:docs/manual/CoreTasks Tag: ANT_16_BRANCH length.html conditions.html src/main/org/apache/tools/ant/taskdefs Tag: ANT_16_BRANCH Length.java src/etc/testcases/taskdefs Tag:

Re: Last-minute change to 1.6.3 :(

2005-04-07 Thread Matt Benson
Okay, my changes are merged. Thanks! -Matt --- Antoine Levy-Lambert [EMAIL PROTECTED] wrote: Hello Matt, OK with me, go ahead. Cheers, Antoine --- Antoine Levy-Lambert [EMAIL PROTECTED] wrote: Hello Matt, Matt Benson wrote: Hi all, There are some changes