RE: Jelly question

2007-06-22 Thread Jose Correia
Never mind, needed to use .getProperty(...) :) -Original Message- From: Jose Correia [mailto:[EMAIL PROTECTED] Sent: 22 June 2007 12:59 PM To: commons-user@jakarta.apache.org Subject: Jelly question Hi all I'm trying to use jelly inside a maven reactor. When I iterate through a projec

Re: [jelly] question

2003-01-22 Thread Christian Sell
James Strachan wrote: From: "Christian Sell" <[EMAIL PROTECTED]> erm.. what do you want me to do with that? The test case does not seem to work properly, as it does not flag an error, yet the behavior I have demonstrated does not make sense at all. We should be able to add your test case to

Re: [jelly] question

2003-01-22 Thread dion
Icky jexl bug where a variable name containing hyphens is considered arithmetic. -- dIon Gillard, Multitask Consulting Blog: http://www.freeroller.net/page/dion/Weblog Work: http://www.multitask.com.au Christian Sell <[EMAIL PROTECTED]> wrote on 23/01/2003 03:38:45 AM: > Hi, > > can

Re: [jelly] question

2003-01-22 Thread James Strachan
From: "Christian Sell" <[EMAIL PROTECTED]> > erm.. what do you want me to do with that? The test case does not seem > to work properly, as it does not flag an error, yet the behavior I have > demonstrated does not make sense at all. We should be able to add your test case to it, to prove there's

Re: [jelly] question

2003-01-22 Thread Christian Sell
James Strachan wrote: From: "James Strachan" <[EMAIL PROTECTED]> This does look kinda spooky - am not sure of the answer. It looks like expressions are throwing the whitespace handling out of whack. There were a whole bunch of JUnit (or JellyUnit tests for this kind of thing but I can't

Re: [jelly] question

2003-01-22 Thread James Strachan
From: "James Strachan" <[EMAIL PROTECTED]> > This does look kinda spooky - am not sure of the answer. It looks like > expressions are throwing the whitespace handling out of whack. There were a > whole bunch of JUnit (or JellyUnit tests for this kind of thing but I can't > seem to find them right n

Re: [jelly] question

2003-01-22 Thread James Strachan
> To: "Jakarta Commons Users List" <[EMAIL PROTECTED]> Sent: Wednesday, January 22, 2003 5:43 PM Subject: Re: [jelly] question > James Strachan wrote: > > From: "Christian Sell" <[EMAIL PROTECTED]> > > > >>>- is interpreted by the ex

Re: [jelly] question

2003-01-22 Thread Christian Sell
James Strachan wrote: From: "Christian Sell" <[EMAIL PROTECTED]> - is interpreted by the expression language as numerical subtraction. e.g. ${foo- 12} does that mean that variable names have to follow naming rules similar to Java? (If so, the set tag should enforce them like the Java compile

Re: [jelly] question

2003-01-22 Thread James Strachan
From: "Christian Sell" <[EMAIL PROTECTED]> > > - is interpreted by the expression language as numerical subtraction. > > > > e.g. > > > > ${foo- 12} > > does that mean that variable names have to follow naming rules similar > to Java? (If so, the set tag should enforce them like the Java compiler >

Re: [jelly] question

2003-01-22 Thread Christian Sell
- is interpreted by the expression language as numerical subtraction. e.g. ${foo- 12} does that mean that variable names have to follow naming rules similar to Java? (If so, the set tag should enforce them like the Java compiler does) BTW you don't need to use , its only there for JSTL supp

Re: [jelly] question

2003-01-22 Thread James Strachan
> Hi, > > can someone tell me why in the following script, > > > > > > > > > > > > the output is "0" for the first variable, and "selectedLocale" for the > second? In particular, why does the expression ${repeat-count} yield a > result of Integer(0)? - is interpreted by t