Google search bar

June 27, 2007

Velocity


Velocity Template Language (VTL)

Statements begin with '#'
ex. #set( $a = "Velocity" )

References (varables, properties, and methods) begin with '$'
Formal notation ${}
Quiet notation $! or $!{}

Literal string delimited by single-quote
ex. 'I know strings'
Interpolated string delimited by double-quote
ex. "I love $a" => I love Velocity

## This is a single line comment

#* This is
a
multiline
comment *#

#**
This is a documentation comment
@author Me
@version 5
*#

escaping characters
$$ => $
This snipet
#set($foo='dude')
Hi $foo
Hi \$foo
Hi \\$foo
Hi \\\$foo
produces
Hi dude
Hi $foo
Hi \dude
Hi \$foo

If a reference is undefined,
Hi $foo
would produce
Hi $foo
because $foo is undefined
while
Hi $!foo
produces
"Hi "
without the ".

June 19, 2007

Internet Explorer on Linux

http://www.tatanka.com.br

This site offers an option for easily installing several versions of IE for LINUX.