jelly work with a list

2003-07-01 Thread Nicolas . CHALUMEAU
Hi I define a property : my.list.directories=${dir.one}, ${dir.two} And I try to iterate in this list so I do : j:forEach var=directory items=${my.list.directories} !-- do something-- /j:forEach But I do only one iteration and the var equals : ${dir.one}, ${dir.two} with the values of

AW: jelly work with a list

2003-07-01 Thread Rademacher Tobias
Hi Nicolas, I'm not a perfect jelly hacker but try this. util:tokenize var=directories delim=, ${my.list.directories} /util:tokenize j:forEach var=directory items=directories ... /j:forEach Hopt this helps! Toby Hi I define a property : my.list.directories=${dir.one},