[EMAIL PROTECTED]: Project svn-antlib-test (in module ant-antlibs) failed

2006-06-12 Thread Gump Integration Build
To whom it may engage... This is an automated request, but not an unsolicited one. For more information please visit http://gump.apache.org/nagged.html, and/or contact the folk at [EMAIL PROTECTED] Project svn-antlib-test has an issue affecting its community integration. This issue affe

Re: Setting Xalan to junitreport

2006-06-12 Thread Weston, Toby
Hi Guys, Sorry, been off list for a while, but does anyone know about any progress on the following; http://marc.theaimsgroup.com/?l=ant-dev&m=114718268207732&w=2 It's regarding Antoine's comments on making junitreport use the xslt task (and so enable switching of XSLT engines). Thanks in advan

Re: how to access a MacroDef?

2006-06-12 Thread Wolfgang Häfelinger
hello, @{msg} import org.apache.tools.ant.taskdefs.MacroInstance; import org.apache.tools.ant.BuildException; task = project.createTask("hello-there"); // error This will throw a java.lang.ClassCastException at org.apache.tools.ant.ComponentHelper.create

Re: Re: Setting Xalan to junitreport

2006-06-12 Thread Antoine Levy-Lambert
Hello Toby, Changing junitreport so that junitreport delegates to the xslt task is still on my agenda. Ivan Ivanov is preparing a patch for this which will go first in Bugzilla. Regards, Antoine Original-Nachricht Datum: Mon, 12 Jun 2006 14:54:10 +0100 Von: "Weston, Toby" <[E

DO NOT REPLY [Bug 39786] New: - project.createTask() does not work for presets

2006-06-12 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: how to access a MacroDef?

2006-06-12 Thread Peter Reilly
Thanks, I have entered a bug report on this. When I was writing presetdef, I had a lot of similar problems and as a result there is a number of places in the code that contain checks for presets being the result of createCompopent. The code here needs to create the task that preset points to. Due

Re: svn commit: r413541 - /ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java

2006-06-12 Thread Matt Benson
--- [EMAIL PROTECTED] wrote: ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java > Sun Jun 11 15:00:52 2006 > @@ -107,8 +107,7 @@ > if (isReference()) { > return getCheckedRef().toString(); > } > -return getName()!=null?("${"+get

Re: how to access a MacroDef?

2006-06-12 Thread Wolfgang Häfelinger
Hi Peter, I worked around the problem by implementing something like obj = componentHelper.createComponent (mymacroname); if (obj instanceof PreSetDef.PreSetDefinition) { PreSetDef.PreSetDefinition psd; psd = (PreSetDef.PreSetDefinition)obj; obj = psd.createObject(getProject()

Re: DO NOT REPLY [Bug 39780] New: - antunit doesnt set java.class.path

2006-06-12 Thread Matt Benson
> this test works on the command line: > > > > > > classpath size=${size} > > > but when run from antunit, it fails cos > java.class.path isnt set. Steve, I was noticing this filesize task you've got in the "book" ns... I assume this relates to an example that will g

svn commit: r413692 - /ant/core/trunk/docs/manual/CoreTasks/macrodef.html

2006-06-12 Thread mbenson
Author: mbenson Date: Mon Jun 12 09:04:49 2006 New Revision: 413692 URL: http://svn.apache.org/viewvc?rev=413692&view=rev Log: document description attribute Modified: ant/core/trunk/docs/manual/CoreTasks/macrodef.html Modified: ant/core/trunk/docs/manual/CoreTasks/macrodef.html URL: http:/

Re: svn commit: r413541 - /ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java

2006-06-12 Thread Steve Loughran
Matt Benson wrote: --- [EMAIL PROTECTED] wrote: ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java Sun Jun 11 15:00:52 2006 @@ -107,8 +107,7 @@ if (isReference()) { return getCheckedRef().toString(); } -return getName()!=null

RE: Re: Setting Xalan to junitreport

2006-06-12 Thread Weston, Toby
Hi Antoine, Sounds great, is that the point where its easiest to keep an eye on things - when there's a Bugzilla ticket to track? Thanks, Toby -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: 12 June 2006 15:37 To: Ant Developers List Subject: Re: Re: Setti

Re: DO NOT REPLY [Bug 39780] New: - antunit doesnt set java.class.path

2006-06-12 Thread Steve Loughran
Matt Benson wrote: this test works on the command line: classpath size=${size} but when run from antunit, it fails cos java.class.path isnt set. Steve, I was noticing this filesize task you've got in the "book" ns... I assume this relates to an example that will

Re: svn commit: r413541 - /ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java

2006-06-12 Thread Matt Benson
--- Steve Loughran <[EMAIL PROTECTED]> wrote: > Matt Benson wrote: > > --- [EMAIL PROTECTED] wrote: > > > ant/core/trunk/src/main/org/apache/tools/ant/types/resources/PropertyResource.java > >> Sun Jun 11 15:00:52 2006 > >> @@ -107,8 +107,7 @@ > >> if (isReference()) { > >> r

Re: DO NOT REPLY [Bug 39780] New: - antunit doesnt set java.class.path

2006-06-12 Thread Matt Benson
I see re ; it is an example of extension more than of usage. This clears up my question. :) Nice to be able to look at the examples ahead of time... -Matt --- Steve Loughran <[EMAIL PROTECTED]> wrote: > Matt Benson wrote: > >> this test works on the command line: > >> > >> > >> > >>

Re: how to access a MacroDef?

2006-06-12 Thread Peter Reilly
The work-around for preset is what has to be done in createTask. After create task, or createComponent() is done, one is has a normal java object. It is too late in the life cycle of the object to use unknownelements. One could create unknown elements and runtime configuratables ( see the code i

svn commit: r413799 - in /ant/core/trunk/src: main/org/apache/tools/ant/taskdefs/optional/ main/org/apache/tools/ant/types/resources/ testcases/org/apache/tools/ant/taskdefs/optional/

2006-06-12 Thread bodewig
Author: bodewig Date: Mon Jun 12 20:50:34 2006 New Revision: 413799 URL: http://svn.apache.org/viewvc?rev=413799&view=rev Log: 2006 Modified: ant/core/trunk/src/main/org/apache/tools/ant/taskdefs/optional/PropertyFile.java ant/core/trunk/src/main/org/apache/tools/ant/types/resources/Pro

svn commit: r413802 - /ant/core/trunk/docs/manual/tutorials.html

2006-06-12 Thread bodewig
Author: bodewig Date: Mon Jun 12 21:18:37 2006 New Revision: 413802 URL: http://svn.apache.org/viewvc?rev=413802&view=rev Log: fix line feeds Modified: ant/core/trunk/docs/manual/tutorials.html (contents, props changed) Modified: ant/core/trunk/docs/manual/tutorials.html URL: http://svn.a

svn commit: r413804 - in /ant/core/trunk: docs/antlibs/dotnet/index.html docs/manual/CoreTasks/ant.html xdocs/antlibs/dotnet/index.xml

2006-06-12 Thread bodewig
Author: bodewig Date: Mon Jun 12 21:20:25 2006 New Revision: 413804 URL: http://svn.apache.org/viewvc?rev=413804&view=rev Log: WiX task is no longer untested Modified: ant/core/trunk/docs/antlibs/dotnet/index.html ant/core/trunk/docs/manual/CoreTasks/ant.html ant/core/trunk/xdocs/antl