RE: Jelly question

2007-06-22 Thread Jose Correia
Thanks for the prompt reply Lukas, I had just came to that conclusion myself (after finding an example) and it worked nicely. Regards Jose -Original Message- From: Lukas Theussl [mailto:[EMAIL PROTECTED] Sent: 22 June 2007 01:43 PM To: Maven Users List Subject: Re: Jelly question A

Re: Jelly question

2007-06-22 Thread Lukas Theussl
A dot in jelly indicates a method call, you can't access an element name like that (best thing is usually to avoid using . and - in variable names). Try: HTH, -Lukas Jose Correia wrote: Hi all I'm trying to use jelly inside a maven reactor. When I iterate through a project.xml I have the

Re: jelly question

2004-12-03 Thread jmutonho
Thanx Bret ...will try it and test it. Jeff Registered Linux user number 366042 This e-mail is intended exclusively for the addressee. If you are not the addressee you must not read, copy, use or disclose the e-mail nor the content; please notify us immediately (by clicking "Reply") an

Re: jelly question

2004-12-03 Thread Brett Porter
checks for empty or not specified (null) checks for specified, but empty. (the context.getVariable bit is to work around the fact that jelly can't handle . in the property name in Maven 1.0. You can leave that out if there are no .'s) On Fri, 3 Dec 2004 13:11:01 +0200, [EMAIL PROTECTED] <[EMA

RE: Jelly question

2003-07-09 Thread Vincent Massol
f we right a common plugin for xml processing? ant, > jelly... ??? > Any user guidiance for plugin writters? > > Thx > Toby > > > -Ursprüngliche Nachricht- > > Von: Vincent Massol [mailto:[EMAIL PROTECTED] > > Gesendet am: Mittwoch, 9. Juli 2003 14:43 >

RE: Jelly question

2003-07-09 Thread Vincent Massol
ilto:[EMAIL PROTECTED] > Sent: 09 July 2003 13:42 > To: Maven Users List > Subject: Re: Jelly question > > Well, with jelly, you can easily modify a stream of SAX events. > > But you can definitely parse a document, store it in a variable, modify > it (accessing it using X

Re: Jelly question

2003-07-09 Thread Paul Libbrecht
Well, with jelly, you can easily modify a stream of SAX events. But you can definitely parse a document, store it in a variable, modify it (accessing it using XPath for example) then re-output it... Down here is such a snippet, it parses a bunch of files together and re-outputs it in one file..

RE: Jelly question

2003-07-09 Thread Vincent Massol
Not directly with Jelly, but you can use the excellent Ant xmltask from http://www.oopsconsultancy.com/software/xmltask.html -Vincent > -Original Message- > From: Emmanuel boudrant [mailto:[EMAIL PROTECTED] > Sent: 09 July 2003 10:37 > To: 'Maven Users List' > Subject: Jelly question > >