DO NOT REPLY [Bug 36064] New: - Ftp file send fails with error 425

2005-08-07 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 36064] - Ftp file send fails with error 425

2005-08-07 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

Bug report for Ant [2005/08/07]

2005-08-07 Thread bugzilla
+---+ | Bugzilla Bug ID | | +-+ | | Status: UNC=Unconfirmed NEW=New ASS=Assigned

programmatically creating and marshalling antfiles

2005-08-07 Thread jonathan gold
are there libraries i've somehow missed in the ant api that allow me to take a Project object i've built programmatically and write it as an antfile to some OutputStream? to give some context: as part of our buildsystem, i'm pulling packages and setting up directories and workspaces (using ivy

Re: programmatically creating and marshalling antfiles

2005-08-07 Thread Conor MacNeill
jonathan gold wrote: > are there libraries i've somehow missed in the ant api that allow me to > take a Project object i've built programmatically and write it as an > antfile to some OutputStream? You have not missed anything as there are no libraries in Ant to do this. There may be external proj

Re: programmatically creating and marshalling antfiles

2005-08-07 Thread Jack Woehr
Conor MacNeill wrote: jonathan gold wrote: are there libraries i've somehow missed in the ant api that allow me to take a Project object i've built programmatically and write it as an antfile to some OutputStream? You have not missed anything as there are no libraries in Ant to do thi

Ant task

2005-08-07 Thread Alexey Panchenko
Hi all, jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Ant.java: 383:if (locals.size() > 0 && !(locals.size() == 1 384: && locals.get(0) == "")) { Is there a reason why the Strings are compared using == here and not equals() ? -- Best regar

Re: Ant task

2005-08-07 Thread Kev Jackson
Alexey Panchenko wrote: Hi all, jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Ant.java: 383:if (locals.size() > 0 && !(locals.size() == 1 384: && locals.get(0) == "")) { Is there a reason why the Strings are compared using == here and not