Re: JUnit and summaries?

2009-04-16 Thread Francis Galiegue
Le dimanche 12 avril 2009, Martin Gainty a écrit : > > testsgen with junit will create the individual testcases > javac will compile the testcases for you > junitreport will use xslt to transform the xml > to put into html format.. > Well, I have come up with a quick solution... Generate an XM

RE: Replaceregexp in ANT

2009-04-16 Thread Martin Gainty
Does Ant replaceregexp support Perl, regular or extended regular expressions? Vielen Danke, Martin __ Verzicht und Vertraulichkeitanmerkung / Note de déni et de confidentialité Diese Nachricht ist vertraulich. Sollten Sie nicht der vorgesehene Empfae

ivy:resolve ant task and JAVA_HOME environment variable.

2009-04-16 Thread Вячеслав Артюхов
Good day, gentlemans. I have a problem with ant task. I execute my build.xml from command line and behaviour of resolve task depends on value of JAVA_HOME environment variable. If JAVA_HOME points to java1.4 than ivy downloads revisions in cache. If JAVA_HOME points to java1.5 no download is pr

Re: Help regular expression for appending to the content of a tag

2009-04-16 Thread Brian Agnew
You need to specify your source (where you're reading from) and the destination (where you're writing to) in the section. Then you don't need the file attribute in the instruction. I suspect that'll do it. Not sure about the text() in your 'path' either. I think you can lose that. On 16/4/0

Re: Help regular expression for appending to the content of a tag

2009-04-16 Thread Cool The Breezer
Hi Brian, I was too fast in concluding about classpath in my last mail. Anyway, I am trying to use insert task for appending my text in target xml file. However this does not seem to work as expected. Just wanted to verify, whether implementation was correct'

Re: Help regular expression for appending to the content of a tag

2009-04-16 Thread Cool The Breezer
Yes, I have looked into it and trying too. Not sure why I am getting taskdef class com.oopsconsultancy.xmltask.ant.XmlTask cannot be found error. I have added xmltask.jar in ANT_HOME/lib directory and also added to system CLASSPATH too. But still getting the error. - RB --- On Thu, 4/16/09, Br

Re: Help regular expression for appending to the content of a tag

2009-04-16 Thread Brian Agnew
If you're doing XML manipulation, is more appropriate. http://www.oopsconsultancy.com/software/xmltask Brian Cool The Breezer wrote: Hi, I am looking for help to append some text to the existing content of a tag. E.g. The existing content of the tag And I want to append some more

RE: Help regular expression for appending to the content of a tag

2009-04-16 Thread Cool The Breezer
No as I was thinking it could be achieved by regex manipulation. - RB --- On Thu, 4/16/09, Felix Dorner wrote: > From: Felix Dorner > Subject: RE: Help regular expression for appending to the content of a tag > To: "Ant Users List" > Date: Thursday, April 16, 2009, 5:05 AM > Hey, > > > And

RE: Help regular expression for appending to the content of a tag

2009-04-16 Thread Felix Dorner
Hey, > And I want to append some more text like reloadable="true" docBase="\YYYRoot"/>, so the content of > tag would be > > > > Did you consider to use a strylesheet transformation? Felix - To unsubscribe, e-mail: user-

Help regular expression for appending to the content of a tag

2009-04-16 Thread Cool The Breezer
Hi, I am looking for help to append some text to the existing content of a tag. E.g. The existing content of the tag And I want to append some more text like , so the content of tag would be I am currrently looking into replaceregexp filter but it is used for replace the tes