Re: compress html templates when read from disk

2007-03-25 Thread Malcolm Edgar
Interesting idea, I would love to see some performance metrics. regards Malcolm Edgar On 3/24/07, yoursoft [EMAIL PROTECTED] wrote: Ok, a new version is available. This is an extended WebappLoader class, with in memory compression. I would like to make a general class, that can use any

new directive - #evaluate

2007-03-25 Thread Will Glass-Husain
Hi, I had a little time today, so I coded a new directive #evaluate() that dynamically evaluates VTL. (see VELOCITY-509). #set($vtl = 'learn the alphabet $test1') #set($test1 = abc) #evaluate($vtl) #set($test1 = xyz) #evaluate($vtl) will display (removing blank lines). learn the alphabet