> > Any feedback would be much appreciated.  The documentation and binaries
> > may be found at
> > 
> >     http://veracity.shadowplay.net:8080/veracity/veracity
> 
> Sounds interesting.
> 
> If you provide consistent whitespace handling and allow #set to be assigned 
> null values, I'll consider switching :)
> 
> http://wiki.apache.org/jakarta-velocity/VelocityWhitespaceGobbling
> 
> [I finally had to do a google search to find the Wiki.  Shouldn't the link 
> to the wiki be on the Velocity web page?  Like under Docs or Community?]
> 
> -Mike

I took some pains to make the whitespace handling consistent with
current Velocity handling. This includes eating newlines that
immediately following #end directives and expressions. I considered
adding a property to optionally enable 'raw' end-of-line processing.
What else would you consider 'consistent'?  

Veracity does allow null to be assigned in #set and #local directives,
although there isn't necessarily a handy null available to assign.  I am
considering defining a few constants by default such as

        $NULL = null;
        $TRUE = new Boolean(true);
        $FALSE = new Boolean(false);

Would that satisfy your needs?


-- 
 - michael dykman
 - [EMAIL PROTECTED]


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

Reply via email to