IdeaJ

2007-04-20 Thread Kevin Jackson
Hi all, There may be a flurry of minor commits from me in the next few days as I try to work out the weird way that IntelliJ IDEA works - I'm not impressed so far with the project/module structure, and the svn handling is strange too. So if you see tiny little changes being committed, it's becau

svn commit: r530981 - /ant/antlibs/svn/trunk/src/main/org/apache/ant/svn/AbstractSvnTask.java

2007-04-20 Thread kevj
Author: kevj Date: Fri Apr 20 21:47:08 2007 New Revision: 530981 URL: http://svn.apache.org/viewvc?view=rev&rev=530981 Log: -javadoc tweak Modified: ant/antlibs/svn/trunk/src/main/org/apache/ant/svn/AbstractSvnTask.java Modified: ant/antlibs/svn/trunk/src/main/org/apache/ant/svn/AbstractSvnT

DO NOT REPLY [Bug 42179] - NullPointerException when delete fileset has no dir attribute

2007-04-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42179] - NullPointerException when delete fileset has no dir attribute

2007-04-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42179] - NullPointerException when delete fileset has no dir attribute

2007-04-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

DO NOT REPLY [Bug 42179] New: - NullPointerException when delete fileset has no dir attribute

2007-04-20 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND· INSERTED IN THE BUG DATABASE. http://issues.apache.org/bugzilla/show_bu

Re: AW: [Ant Wiki] Update of "Ant1.7.1/Planning" by SteveLoughran

2007-04-20 Thread Steve Loughran
[EMAIL PROTECTED] wrote: + * add a task that runs a completely new ant process, with different env, maybe even JDK. Sometimes people need this; running forrest builds is just one example. We'd use to set it up. I would prefer enhancing with fork and jvm attribute, like . the reason for

Re: [Ant Wiki] Update of "Ant1.7.1/Planning" by SteveLoughran

2007-04-20 Thread Peter Reilly
I (currently) use the following macro: which I use with the following macro: in each directory with a list of sub-project directories I use a build file like: I like to keep each proj

svn commit: r530818 - in /ant/core/trunk/src: main/org/apache/tools/ant/taskdefs/ManifestTask.java tests/junit/org/apache/tools/ant/taskdefs/ManifestTest.java

2007-04-20 Thread jhm
Author: jhm Date: Fri Apr 20 07:07:11 2007 New Revision: 530818 URL: http://svn.apache.org/viewvc?view=rev&rev=530818 Log: Beautify error message. Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestTask.java ant/core/trunk/src/tests/junit/org/apache/tools/ant/taskdef

Re: svn commit: r530662 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestTask.java

2007-04-20 Thread Dominique Devienne
On 4/20/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> +if (ch == '-' || ch == '_') { >> +throw new ManifestException("Manifest attribute >names must not contain '" + ch + "'"); > >"must not start with character" maybe rather than contains, since '-' >and '_' are allowed

AW: svn commit: r530662 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestTask.java

2007-04-20 Thread Jan.Materne
>> +if (ch == '-' || ch == '_') { >> +throw new ManifestException("Manifest attribute >names must not contain '" + ch + "'"); > >"must not start with character" maybe rather than contains, since '-' >and '_' are allowed for the other caracters. Thanks, --DD Yes, sounds better.

AW: [Ant Wiki] Update of "Ant1.7.1/Planning" by SteveLoughran

2007-04-20 Thread Jan.Materne
>+ * add a task that runs a completely new ant >process, with different env, maybe even JDK. Sometimes people >need this; running forrest builds is just one example. We'd >use to set it up. I would prefer enhancing with fork and jvm attribute, like . Jan -

[Ant Wiki] Update of "Ant1.7.1/Planning" by SteveLoughran

2007-04-20 Thread Apache Wiki
Dear Wiki user, You have subscribed to a wiki page or wiki category on "Ant Wiki" for change notification. The following page has been changed by SteveLoughran: http://wiki.apache.org/ant/Ant1%2e7%2e1/Planning The comment on the change is: let people run forking ants in big projects --

Re: svn commit: r530662 - /ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/ManifestTask.java

2007-04-20 Thread Dominique Devienne
+if (ch == '-' || ch == '_') { +throw new ManifestException("Manifest attribute names must not contain '" + ch + "'"); "must not start with character" maybe rather than contains, since '-' and '_' are allowed for the other caracters. Thanks, --DD ---