- 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 JSTL support. So you
can do

<j:jelly xmlns:j="jelly:core">

     <j:set var="repeat_count" value="5"/>
     <j:set var="select_name" value="selectedLocale"/>

     repeat count=${repeat_count}
     select_name=${select_name}

</j:jelly>

James
-------
http://radio.weblogs.com/0112098/
but if I do that, I suddenly get all the whitespace as well (why??). What I want is to output just one line and a carriage return. Still unclear how that would go.


Christian


--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to