Jelly question

2007-06-22 Thread Jose Correia
Hi all I'm trying to use jelly inside a maven reactor. When I iterate through a project.xml I have the following component: dependency groupIdtools/groupId artifactIdartifact/artifactId versionSNAPSHOT/version properties classloaderroot/classloader

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

[jelly] question

2003-01-22 Thread Christian Sell
Hi, can someone tell me why in the following script, j:jelly xmlns:j=jelly:core j:set var=repeat-count value=5/ j:set var=select_name value=selectedLocale/ j:out value=repeat-count=${repeat-count}/ j:out value=select_name=${select_name}/ /j:jelly the output is 0 for the first

Re: [jelly] question

2003-01-22 Thread James Strachan
Hi, can someone tell me why in the following script, j:jelly xmlns:j=jelly:core j:set var=repeat-count value=5/ j:set var=select_name value=selectedLocale/ j:out value=repeat-count=${repeat-count}/ j:out value=select_name=${select_name}/ /j:jelly the output is 0

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 j:out, its only there for

Re: [jelly] question

2003-01-22 Thread James Strachan
... foo xmlns=dummy ahello/a bhello/b /foo James --- http://radio.weblogs.com/0112098/ - Original Message - From: Christian Sell [EMAIL PROTECTED] To: Jakarta Commons Users List [EMAIL PROTECTED] Sent: Wednesday, January 22, 2003 5:43 PM Subject: Re: [jelly] question James Strachan

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 it,