Re: How to capture HTTP response with the status 500?

2017-01-17 Thread Klaus Malorny
the HTTP response. Hope that helps. Regards, Klaus - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: Aw: XSL transformation with Ant: sorting a list

2016-03-07 Thread Klaus Malorny
tasks may introduce another XSL/T implementation, which is then used by default. Klaus - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: Ideas for future directions for Ant

2012-02-21 Thread Klaus Malorny
. But I guess you have more sophisticated approaches on your drawing board. Klaus [1] http://mail-archives.apache.org/mod_mbox/ant-user/200712.mbox/%3C47678E66.6020204%40knipp.de%3E - To unsubscribe, e-mail: user-unsubscr

Re: Update property value in file and retaining format.

2012-01-19 Thread Klaus Malorny
nd even more: http://www.regular-expressions.info Look at "Anchors" and "Grouping & Backreferences". Regards, Klaus - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: propertyregex Extraction of last element in the PATH??

2012-01-02 Thread Klaus Malorny
. I don't know the task type, but a simple dollar sign at the end of the regular expression should select the last component, i.e. regexp="([^/]+)$" Klaus - To unsubscribe, e-mail: user-unsubscr...@ant

Re: AW: Ant & patching XML files

2009-03-13 Thread Klaus Malorny
On 05/03/09 10:04, jan.mate...@rzf.fin-nrw.de wrote: see http://marc.info/?l=ant-user&m=123255143025824&w=2 Jan Hi, as this is the one I mentioned in my e-mail, this means there is no alternative? Regards, Klaus

Ant & patching XML files

2009-03-05 Thread Klaus Malorny
iles. Thanks in advance. Regards, Klaus [1] http://ant.apache.org/external.html#XmlTask [2] http://www.oopsconsultancy.com/software/xmltask/ - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands,

Re: How to trace visually ANT script processing?

2009-01-08 Thread Klaus Malorny
, but you can step through the build script, view variables and so on. Klaus - To unsubscribe, e-mail: user-unsubscr...@ant.apache.org For additional commands, e-mail: user-h...@ant.apache.org

Re: well-defined ant/xslt problem: (how) can I do this?

2008-02-07 Thread Klaus Malorny
rce collections (i.e. and so on), which gives you more freedom to select the individual input files. Also, with the help of the subelement, you can map the input path to an output path, using a variety of operations. Regards, Klaus

Re: AW: Unicode for Control-C

2008-01-29 Thread Klaus Malorny
and it worked for me. Klaus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: AW: AW: extended parallelism

2007-12-20 Thread Klaus Malorny
el parallelism: declaring multiple targets as parallel (with whatever syntax) is simply an allowance. Klaus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: AW: extended parallelism

2007-12-19 Thread Klaus Malorny
d taskb3 would not run concurrently, as otherwise the total number of running threads would exceed. I hope that this makes my point clearer. Klaus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: extended parallelism

2007-12-19 Thread Klaus Malorny
with certain dependencies that shall be executed in parallel. But I know nearly no details about ant's implementation and don't want to take my users' hat off my head at the moment. Klaus - To unsubscribe,

Re: extended parallelism

2007-12-19 Thread Klaus Malorny
ch a task would simply have to queue up the requests and prompt them to the user one after another. Klaus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: extended parallelism

2007-12-18 Thread Klaus Malorny
n in one piece. While a GUI could handle this more or less easily, console output is a bit tricky, though. The target which is the first to create some output would "own" the console, all others have to buffer theirs until this target has been completed. Klaus

Re: AW: AW: extended parallelism

2007-12-18 Thread Klaus Malorny
datory condition. This would mean that your approach of parallelizing targets would be valid, but I wouldn't bet that nobody would get problems with their existing build files. Klaus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: AW: extended parallelism

2007-12-18 Thread Klaus Malorny
f the other targets. ^ In this manual, most initialization targets have the name "init". [...] [1] http://ant.apache.org/manual/using.html#targets Klaus - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

extended parallelism

2007-12-18 Thread Klaus Malorny
, c must be executed after b, but both may be executed in parallel to a, while d must be executed only after completion of a, b and c. Of course, more constraints may occur in the dependent targets, e.g. if c depends on a, they can't be executed in parallel. Just an idea, feel free

Libraries for optional tasks defined from within build.xml

2007-12-15 Thread Klaus Malorny
Hi, sorry if this is a newbie question, but I did not find an answer in docs, faqs, google etc. I'm using Ant 1.7, and I would like to use the

RE: Repeating a task x times

2006-08-16 Thread Allwicher, Klaus
ull; } public void remove() { } } Kind regards Klaus Allwicher > -Original Message- > From: Daniel Smith [mailto:[EMAIL PROTECTED] > Sent: 15 August, 2006 20:27 > To: Ant Users List > Subject: Repeating a task x times > > I'm interested in writing a sc

Copy question

2006-08-15 Thread Allwicher, Klaus
Hello, I have a stylistic question to the copy task and the mappers. I have the following situation: I have four directories, one reference/source directory, one reference/compiled directory, one current/source directory and a current/compiled directory: +- reference | +- source | +- compiled

RE: Ordered fileset

2006-05-12 Thread Allwicher, Klaus
: Klaus > -Original Message- > From: Scot P. Floess [mailto:[EMAIL PROTECTED] > Sent: 12 May, 2006 12:45 > To: Ant Users List > Subje

RE: Ordered fileset

2006-05-12 Thread Allwicher, Klaus
Hi Scot, thanks, I had read over the additional 'count' attribute, sorry :-( With this everything works fine. @Matt: Thanks also for the suggestion, but we want only to used "offically" released versions ... Klaus > -Original Message- > From: Scot P. Floes

Ordered fileset

2006-05-11 Thread Allwicher, Klaus
to achieve this with standard ANT tasks/types ? Or do I have to write a new/extended fileset by my own ? Currently the ANT target looks something like Thanks for you help :-) Klaus

Calling an from my own applocation

2006-03-13 Thread Klaus
Thank you Klaus

RE: replace < with < in property ??

2006-02-02 Thread Allwicher, Klaus
'<bla>foobar</bla>' [echo] Output: 'foobar' Maybe you can combine it in one statement ... Klaus > -Original Message- > From: Rebhan, Gilbert [mailto:[EMAIL PROTECTED] > Sent: 02 February, 2006 16:01 > To: user@ant.apache.org > Subject: rep

RE: Regexp to property

2006-01-27 Thread Allwicher, Klaus
Why not use 'PropertyRegex' from ant-contrib ?!? > -Original Message- > From: Frank Henry [mailto:[EMAIL PROTECTED] > Sent: 27 January, 2006 11:06 > To: user@ant.apache.org > Subject: Regexp to property > > For a little tool I am working on I need to get information > from a file, via

RE: command execution

2006-01-18 Thread Allwicher, Klaus
ecute a class from a jar file, so the task would be more appropriate. Klaus > -Original Message- > From: Guruprasad R [mailto:[EMAIL PROTECTED] > Sent: 18 January, 2006 13:41 > To: Ant Users List > Subject: command execution > > I am using ant on my Windows 20

RE: How to get each file's name in a fileset?

2005-12-12 Thread Allwicher, Klaus
Use task from ANT contrib: SHOULD work (not tested, maybe you have to change the delimiter to a comma for the construction of the ports-property) Klaus > -Original Message- > From: Ding Shukai [mailto:[EMAIL PROTECTED] > Sent: 12 December, 2005 10:14 > To: An

RE: Recovering the return code from the called build.xml into the calling build.xml

2005-11-25 Thread Allwicher, Klaus
Maybe, I don't understand the problem right, but why don't you assign the return code to another property ?? E.g. > -Original Message- > From: Bhatia Saurabh (CHA) [

RE: Remove spaces in time string

2005-10-26 Thread Allwicher, Klaus
Formatpattern without spaces ?!? > -Original Message- > From: Mikael Petterson (KI/EAB) > [mailto:[EMAIL PROTECTED] > Sent: 26 October, 2005 14:38 > To: Ant Users List > Subject: Remove spaces in time string > > Hi, > > Is is possible to remove the spaces in the string ( see > gen

Logging questions

2005-10-06 Thread Allwicher, Klaus
t.taskdefs.ExecTask=false log4j.additivity.org.apache.tools.ant.taskdefs.Echo=false log4j.additivity.org.apache.tools.ant.taskdefs.Java=false Again the questions: What happens and why ? Kind regards Klaus Klaus Allwicher ScanSoft Aachen GmbH Kackertstrasse 10 D-52072 Aachen Tel. +49 (0)241 8871 348 Fax. +49 (0)241 8871 140

"Infinite Logging" when logging with log4j listener

2005-03-17 Thread Allwicher, Klaus
in a property. Finally I also used two different property files for the Log4J configuration (one for ANT, one for the java program), where I differently configured the rootLogger. But nothing eliminates the error. Any ideas why this error occurs and how I can resolve it ? Regards Klaus Allw

JUnitreport and xalan upgrade issues

2005-01-07 Thread Klaus Thorup
machines to no avilable - the Xalan upgrade does not seem to get registered. I am on the verge of madness - can anyone help??? Klaus Thorup Build Engineer e-m: [EMAIL PROTECTED] The Sporting Exchange Ltd / Betfair.com Yahoo! messenger - klaus_thorup www.betfair.com