Re: [EMAIL PROTECTED]: Project antunit-test (in module ant-antlibs) failed

2006-06-06 Thread Stefan Bodewig
On Tue, 06 Jun 2006, Steve Loughran <[EMAIL PROTECTED]> wrote: > When I try and run from my laptop, It doesnt find ant-testutil.jar, > which is a bad sign. Do I need to point to it in build.properties or > something? First of all, you need ant-testutil.jar. The property ant-testutil.jar is suppo

svn commit: r412279 - /ant/antlibs/common/trunk/build.xml

2006-06-06 Thread bodewig
Author: bodewig Date: Tue Jun 6 21:09:39 2006 New Revision: 412279 URL: http://svn.apache.org/viewvc?rev=412279&view=rev Log: read a local properties file Modified: ant/antlibs/common/trunk/build.xml Modified: ant/antlibs/common/trunk/build.xml URL: http://svn.apache.org/viewvc/ant/antlibs

Re: pgp key for signing files

2006-06-06 Thread Stefan Bodewig
On Tue, 6 Jun 2006, Kev Jackson <[EMAIL PROTECTED]> wrote: > On 6 Jun 2006, at 01:50, Stefan Bodewig wrote: >> Another thing is that it would be good to have signatures on your >> key. > > Well I'm currently in Vietnam, so I guess that no I'm not near > enough to anyone True. No ASF members eit

Re: append functionality for copy task

2006-06-06 Thread jay hawk
Antoine - Thanks for the prompt reply. The concat task works fine. I neglected to mention that I was also doing token replacement, but it was easily done with the builtin filterreader . Nice stuff. You da man. Thanks! Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: Hello Jay, could

Re: how to access a MacroDef?

2006-06-06 Thread Dominique Devienne
I tried something like ComponentHelper componenthelper = ComponentHelper.getComponentHelper(project()); MacroDef def = (MacroDef) componenthelper.getTaskDefinitions().get(mymacroname); just in order to understand that Hastable getTaskDefinitions() contains a String => Class relation. So where

how to access a MacroDef?

2006-06-06 Thread Wolfgang Häfelinger
Hi, a simple question - how can I retrieve a macro definition using ComponentHelper? I tried something like ComponentHelper componenthelper = ComponentHelper.getComponentHelper(project()); MacroDef def = (MacroDef) componenthelper.getTaskDefinitions().get(mymacroname); just in order to und

DO NOT REPLY [Bug 39407] - Change task to accept the XSLT stylesheet as a resource

2006-06-06 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: append functionality for copy task

2006-06-06 Thread Antoine Levy-Lambert
Hello Jay, could you rather see whether what you need cannot be implemented in terms of filterchains/filters. They are documented in the section concepts and types of ant. The concat task is also a sort of copy with append, normally it can be used to copy several files into one file. What thi

append functionality for copy task

2006-06-06 Thread jay hawk
I was wondering if the ant development team has considered append semantics for the copy task. I had a need to be able to write files compiled from multiple fragments. I made some changes to 1.6.5 to try this, and the changes were simple and minor. I added an attribute "append" to the copy t

Re: how to call macros dynamically?

2006-06-06 Thread Wolfgang Häfelinger
>> For example, the above could be replaced by a single empty-target >> depending on the 4 possible package-* targets, each with an >> appropriate 'if' attribute. Or with a (limited use of >> is usually not that expensive). Sure you agree that "run-macro" is by far more elegant than working with

Re: how to call macros dynamically?

2006-06-06 Thread Dominique Devienne
.. Having a "run-macro" around I could shorten things to simply write Indeed, that's what I had in mind by hidden conditional. That's one way to do it, but probably not one of the Ant ways. For example, the above could be replaced by a single empty-target depending on

Re: how to call macros dynamically?

2006-06-06 Thread Wolfgang Häfelinger
> Is your motivation being able to have conditionals in disguise, i.e. > be able to write I believe that my deeper motivation is to be able to do "scripting" without falling back to Javascript, Python et cetera. I'm not using them because they are not part of a standard Ant installation. Here's

Re: xml-fop-maintenance stopped working May 26

2006-06-06 Thread Antoine Levy-Lambert
Hello Jeremias, this could be due to a change in ant in the XSLTTask which I did on May 25th. I am going to investigate. Regards, Antoine > Original-Nachricht > Datum: Mon, 29 May 2006 12:04:13 +0200 > Von: Jeremias Maerki <[EMAIL PROTECTED]> > An: general@gump.apache.org > Be

DO NOT REPLY [Bug 39697] - FixCRLF core task should support targetEncoding

2006-06-06 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 39648] - NPE in Resources.toString

2006-06-06 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 call macros dynamically?

2006-06-06 Thread Dominique Devienne
Is your motivation being able to have conditionals in disguise, i.e. be able to write ? Otherwise I can't see the use for this. Just curious ;-) Thanks, --DD On 6/6/06, Wolfgang Häfelinger <[EMAIL PROTECTED]> wrote: Hi, I wonder how to implement a task (in Java) allowing me to execute a ma

AW: how to call macros dynamically?

2006-06-06 Thread Jan.Materne
Only a "hint" ;-) must store a reference somewhere (I think in Project). Have a look at the source where the reference is stored and how to access that storage. I think you should also know the type which is registered for doing the typecast when accessing the reference. adder/setter of that ty

how to call macros dynamically?

2006-06-06 Thread Wolfgang Häfelinger
Hi, I wonder how to implement a task (in Java) allowing me to execute a macro. I tried to understand how it works looking into Ant's source code, but I'm bit lost. Would be kind if someone could give me a "roadmap" how to do it .. What I'm looking for is something like .. Assume I have a macro

FTP task

2006-06-06 Thread Antoine Levy-Lambert
Hi, while adding support for logging in with account (funny thing) I saw that : 3 testcases fail (out of 39) inside org.apache.tools.ant.taskdefs.optional.net.FTPTest : testParentDiffersInCaseScanningSensitive testTimezonePut testTimezoneGet not sure what this is. Also, I ran checkstyle and sa

AW: [EMAIL PROTECTED]: Project antunit-test (in module ant-antlibs) failed

2006-06-06 Thread Jan.Materne
ant-testutil.jar is only build via target "test-jar", so usually you havent created that. It's also not part of the distro (yet?). Jan >-Ursprüngliche Nachricht- >Von: Steve Loughran [mailto:[EMAIL PROTECTED] >Gesendet: Dienstag, 6. Juni 2006 11:57 >An: Ant Developers List >Betreff: Re:

DO NOT REPLY [Bug 39720] - FTP Account cannot be specified in ant FTP task

2006-06-06 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

svn commit: r412075 - in /ant/core/trunk: CONTRIBUTORS WHATSNEW contributors.xml docs/manual/OptionalTasks/ftp.html src/main/org/apache/tools/ant/taskdefs/optional/net/FTP.java

2006-06-06 Thread antoine
Author: antoine Date: Tue Jun 6 03:52:47 2006 New Revision: 412075 URL: http://svn.apache.org/viewvc?rev=412075&view=rev Log: FTP Account could not be specified in ant FTP task. Bugzilla report 39720. Modified: ant/core/trunk/CONTRIBUTORS ant/core/trunk/WHATSNEW ant/core/trunk/contri

antunit trivia

2006-06-06 Thread Steve Loughran
Do you know "antunit" is actually a mineral? http://www.mindat.org/min-8468.html Its a synoym for jarosite, which, according to wikipedia, is something found on mars http://en.wikipedia.org/wiki/Jarosite "Jarosite is hexagonal and brittle," -Steve --

re: antunit

2006-06-06 Thread Steve Loughran
Stefan Bodewig wrote: On Mon, 05 Jun 2006, Steve Loughran <[EMAIL PROTECTED]> wrote: what is the release status of Antunit? Is is formally released? No. I intend to propose release plans for AntUnit and the .NET Antlib as soon as Ant 1.7 is on the way. ok. I've just started making use of

Re: pgp key for signing files

2006-06-06 Thread Kev Jackson
Well I'm currently in Vietnam, so I guess that no I'm not near enough to anyone (most here seem to be European folks, with 1 or 2 USians) Makes for round the clock support. We've had a good australian participation in the past, although Conor is the only person from there currently acti

Re: [EMAIL PROTECTED]: Project antunit-test (in module ant-antlibs) failed

2006-06-06 Thread Steve Loughran
Gump Integration Build wrote: 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 antunit-test has an issue affecting its communit

Re: pgp key for signing files

2006-06-06 Thread Steve Loughran
Kev Jackson wrote: On 6 Jun 2006, at 01:50, Stefan Bodewig wrote: On Mon, 05 Jun 2006, Antoine Levy-Lambert <[EMAIL PROTECTED]> wrote: How to publish your key to a key server I do not remember. I think I uploaded my public key to a key server, but do not remember off hand how it is called.

Re: svn commit: r411884 - in /ant/core/trunk: build.xml src/etc/ant-bin.wxs src/etc/ant-msi.wxs

2006-06-06 Thread Steve Loughran
Stefan Bodewig wrote: On Mon, 05 Jun 2006, <[EMAIL PROTECTED]> wrote: Add a target to create an MSI installer for Ant I used Ant itself as my testcase for the WiX task and it worked nicely, so I thought I could as well commit the target. No GUI but a nice installer which installs Ant and a s

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

2006-06-06 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 antunit-test has an issue affecting its community integration. This issue affects

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

2006-06-06 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

DO NOT REPLY [Bug 39720] - FTP Account cannot be specified in ant FTP task

2006-06-06 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 39688] - ReplaceTokens should allow properties files

2006-06-06 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

svn commit: r412040 - in /ant/core/trunk: ./ docs/manual/CoreTypes/ src/etc/testcases/filters/ src/etc/testcases/filters/input/ src/main/org/apache/tools/ant/filters/ src/testcases/org/apache/tools/an

2006-06-06 Thread antoine
Author: antoine Date: Tue Jun 6 01:23:01 2006 New Revision: 412040 URL: http://svn.apache.org/viewvc?rev=412040&view=rev Log: ReplaceTokens should allow properties files. Bugzilla 39688 Added: ant/core/trunk/src/etc/testcases/filters/input/sample.properties Modified: ant/core/trunk/CONTR

DO NOT REPLY [Bug 39688] - ReplaceTokens should allow properties files

2006-06-06 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 39688] - ReplaceTokens should allow properties files

2006-06-06 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