DO NOT REPLY [Bug 11569] - Javadoc core task does not support new -linksource and -breakiterator options.

2003-06-27 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://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/proposal/embed/src/java/org/apache/tools/ant/taskdefs Taskdef2.java

2003-06-27 Thread peterreilly
peterreilly2003/06/27 11:43:13 Modified:proposal/embed/src/java/org/apache/tools/ant/taskdefs Taskdef2.java Log: change access levels of methods to match new access levels in Definer Revision ChangesPath 1.3 +2 -2 ant/proposal/embed/src

Re: [Fwd: [GUMP] Build Failure - Axis]

2003-06-27 Thread peter reilly
I can see the problem here. Previously was a special task that was created differently from the other tasks (it was created in Ant#init()). I had removed this, and made it a normal task but missed the usage from Ant#reinit (and perhaps other places). I have not been able to write a script that t

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

2003-06-27 Thread peterreilly
peterreilly2003/06/27 11:16:59 Modified:src/main/org/apache/tools/ant ComponentHelper.java Log: quick fix for Ant.java use of property in Ant#reinit Revision ChangesPath 1.14 +9 -1 ant/src/main/org/apache/tools/ant/ComponentHelper.java Index: ComponentHelpe

Re: Ant Documentation

2003-06-27 Thread Steve Loughran
Andrew Marlow wrote: Hello, The msg below was originally intended for Steve L, another Ant developer, but I have had trouble contacting him so I am now sending this to a wider audience. sorry I have been in crisis, but am glad you are on the main mail list. Apologies. I am trying to improve the

[Fwd: [GUMP] Build Failure - Axis]

2003-06-27 Thread Steve Loughran
One more breakage. The Foreach task is derived from ant-contrib foreach, used in the absence of in ant.1.5. I could fix it in Axis if there is an easy fix, but since Axis breaking is a symptom, better to do it in Ant. -Original Message- From: Sam Ruby [mailto:[EMAIL PROTECTED] Sent: F

About , , and buffer sizes

2003-06-27 Thread Dominique Devienne
Today I evaluated the various ways I could download a file efficiently. So I played with , using both the HTTP and FILE protocol, and with (see build file below). The file I'm downloading is 38,448,695 bytes long. The output of running each target twice is also shown below. So what is this all ab

DO NOT REPLY [Bug 21144] New: - Please add make's keep-going feature into ANT.

2003-06-27 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://nagoya.apache.org/bugzilla/show_bu

Re: [GUMP] Build Failure - ant-embed

2003-06-27 Thread Stefan Bodewig
On 27 Jun 2003, peter reilly <[EMAIL PROTECTED]> wrote: > I can fix the specific issues but am unsure > as how to compile and test ant-embed. I don't know either - apart from looking at the Gump descriptor to see what dependencies there are, and which target to call in which build file, that is.

DO NOT REPLY [Bug 21142] New: - junit task's classpath doesn't override the existing classpath settings

2003-06-27 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://nagoya.apache.org/bugzilla/show_bu

Re: [GUMP] Build Failure - ant-embed

2003-06-27 Thread peter reilly
I can fix the specific issues but am unsure as how to compile and test ant-embed. Looking at the code, it appears that TaskDef2 has copied all the code from it's super class Definer. It may be better in this case just not to extend Definer. Alternatively the gump target could build embed-optional

New Laucher

2003-06-27 Thread Conor MacNeill
I have just committed some new code for an Ant launcher to take over some of the functions found in the ant shell script and ant.bat/lcp.bat. This should alleviate the long line problem and environment limitations on Windows. Currently there is no script to drive this code. That will come later

[GUMP] Build Failure - ant-embed

2003-06-27 Thread Nicola Ken Barozzi
This email is autogenerated from the output from: Buildfile: build.xml init: main-ant15: [echo] Embed is no longer supporte

cvs commit: ant/xdocs external.xml

2003-06-27 Thread bodewig
bodewig 2003/06/27 05:54:14 Modified:docs external.html xdocsexternal.xml Log: Add pointer to Speech4J Revision ChangesPath 1.120 +52 -0 ant/docs/external.html Index: external.html =

DO NOT REPLY [Bug 17895] - Smarter jar task

2003-06-27 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://nagoya.apache.org/bugzilla/show_bu

cvs commit: ant/src/main/org/apache/tools/ant/launch AntMain.java Launcher.java Locator.java

2003-06-27 Thread conor
conor 2003/06/27 04:19:22 Modified:.build.xml src/main/org/apache/tools/ant Main.java Added: src/main/org/apache/tools/ant/launch AntMain.java Launcher.java Locator.java Log: New Launch facility. Separate jar now can be used to

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

2003-06-27 Thread Stefan Bodewig
On 26 Jun 2003, peter reilly <[EMAIL PROTECTED]> wrote: > The problem is that as tasks are now types, the getTypeDefinitions() > should now return everything. Yes, I'm aware of this. But there may be custom tasks - other than - that rely on the old separation of things. > If this is a problem,

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

2003-06-27 Thread peter reilly
On Thu, 2003-06-26 at 16:17, peter reilly wrote: > Yep, I realize that getTaskDefinitions returns > an empty table and that this behaviour is not > backward compatible. > > The problem is that as tasks are now types, the getTypeDefinitions() > should now return everything. Current code that use >

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

2003-06-27 Thread peterreilly
peterreilly2003/06/27 02:24:10 Modified:src/main/org/apache/tools/ant ComponentHelper.java src/main/org/apache/tools/ant/taskdefs Typedef.java src/testcases/org/apache/tools/ant ProjectTest.java Log: Get Project#getTaskDefinitions and Project#getDataType

RE: Ant Documentation

2003-06-27 Thread Jim Fuller
i'ed be willing to assist; - could generate xslt / xml version using docbook xml( which version docbook ? ), then we could use ant ( instead of awk reliance...thoughts ? ) to build the html distribution - could generate generate native xsl:fo code for pdf generation contact me directly if you

AW: Ant Documentation

2003-06-27 Thread Jan . Materne
> I am trying to improve the Ant documentation. Always welcome :-) > I would like to have a single multi-platform open format > document. I understand that the project preference is to > use DocBook. DocBook? That´s really new to me. I only know the plain HTMLs. There are tests generating the d

Re: Ant Documentation

2003-06-27 Thread Andrew Marlow
Hello, The msg below was originally intended for Steve L, another Ant developer, but I have had trouble contacting him so I am now sending this to a wider audience. I am trying to improve the Ant documentation. I would like to have a single multi-platform open format document. I understand that