[jira] Commented: (VELOCITY-534) Support varargs in method calls

2007-09-17 Thread Will Glass-Husain (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-534?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12527956 ] Will Glass-Husain commented on VELOCITY-534: I like it. Useful extension, easy to understand, works

RE: EvaluateContext : does not take account of inner.localContext

2007-09-17 Thread Massip, Etienne
You're right, I messed up with VTL reference guide. Saw the JIRA too, will provide help if I got time (project to be released yesturday). Thank you, Etienne Massip -Message d'origine- De : Nathan Bubna [mailto:[EMAIL PROTECTED] Envoyé : samedi 15 septembre 2007 17:39 À : Velocity

[jira] Updated: (VELOCITY-565) EvaluateContext does not take account of inner.localContext

2007-09-17 Thread Etienne Massip (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-565?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Etienne Massip updated VELOCITY-565: Attachment: EvaluateContext.java Fix I used. EvaluateContext does not take account of

maybe bug

2007-09-17 Thread Andrey Kudryavtsev
Hello, developers! I like Velocity very much, we use it for email templates. Thank you for the great tool! But I have a little problem. Maybe it's a bug, maybe I'm stupid thing. I have a structure: LinkedHashMapString, ListDashboardTaskGroup otherTaskLists I print it: $otherTaskLists And see:

Re: maybe bug

2007-09-17 Thread Nathan Bubna
When given a map, #foreach iterates over the values, not the entries. To iterate over the entries, do: #foreach( $taskList in $otherTaskLists.entrySet() ) $taskList.key = $taskList.value #end On 9/17/07, Andrey Kudryavtsev [EMAIL PROTECTED] wrote: Hello, developers! I like Velocity very much,

[jira] Commented: (VELOCITY-565) EvaluateContext does not take account of inner.localContext

2007-09-17 Thread Will Glass-Husain (JIRA)
[ https://issues.apache.org/jira/browse/VELOCITY-565?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528180 ] Will Glass-Husain commented on VELOCITY-565: Etienne-- Awesome! A bug report and a patch!