Added: velocity/site/cms/trunk/content/engine/2.1/upgrading.mdtext
URL: 
http://svn.apache.org/viewvc/velocity/site/cms/trunk/content/engine/2.1/upgrading.mdtext?rev=1854714&view=auto
==============================================================================
--- velocity/site/cms/trunk/content/engine/2.1/upgrading.mdtext (added)
+++ velocity/site/cms/trunk/content/engine/2.1/upgrading.mdtext Sun Mar  3 
13:56:00 2019
@@ -0,0 +1,108 @@
+Title: Apache Velocity Engine - Upgrading
+
+## Upgrading - Contents
+
+[TOC]
+
+## Upgrading from earlier versions
+
+Release with the same major number (1.x, 2.x) are intended to be drop-in 
replacements. However, in most cases the versions of dependency jars must be 
adjusted because newer versions of Velocity might require updates.
+
+## Upgrading from Velocity 1.7.x to Velocity 2.x
+
+<div class="note">
+Please note that the maven repository path has changed:
+<ul>
+  <li>former path: <code>org/apache/velocity/velocity/1.7.<i>x</i></code></li>
+  <li>new path: 
<code>org/apache/velocity/velocity-engine-core/2.<i>x</i></code></li>
+</ul>
+</div>
+
+For busy people: To maximize backward compatibility with Velocity 1.x, be sure 
to include the following lines in your Velocity configuration:
+
+    :::properties
+    # No automatic conversion of methods arguments
+    runtime.conversion.handler = none
+    
+    # Use backward compatible space gobbling
+    space.gobbling = bc
+    
+    # Have #if($foo) only returns false if $foo is false or null
+    directive.if.emptycheck = false
+    
+    # Allow '-' in identifiers
+    parser.allows.dash.identifiers = true
+    
+    # When displaying null arguments literals, use provided arguments literals
+    velocimacro.preserve.arguments.literals = true
+
+and check the [Dependency changes](#dependencies-changes) below.
+
+Read below for futher details.
+
+### Behavior / API changes:
+
++ velocity is now using the SLF4J logging facade. Hence, all methods accepting 
or returning a logger now use the org.slf4j.Logger object. Velocity uses a 
logger name of `org.apache.velocity` (configurable with the `runtime.log.name` 
configuration entry), and [several other childen 
loggers](developer-guide.html#logging).
++ the internal Context API now enforces String keys everywhere, this may break 
custom Context implementations at compile-time.
++ invalid reference events are now more sparsely sent; they're not sent if 
*any* of the following conditions is met (the 1.x behavior did send invalid 
reference events in all those cases):
+    + the reference is a quiet reference
+    + the reference could be successfully evaluated but resulted in a null 
value
+    + the reference is tested for validity inside an #if / #elseif statement
++ all events do now receive the current Velocity Context as a first argument. 
The signatures of the `MethodExceptionEventHandler`, 
`ReferenceInsertionEventHandler` and `IncludeEventHandler` events have changed, 
and the `ContextAware` interface has been suppressed, as long as the 
`NullSetEventHandler` event which is obsolete.
++ The `ResourceLoader` class API has replaced InputStream getters by Reader 
getters: `InputStream ResourceLoader.getResourceStream(String name)` has been 
replaced by a `Reader ResourceLoader.getResourceReader(String name, String 
encoding)`.
++ the default encoding ('ISO-8859-1' in 1.x) is now UTF-8.
++ the MethodException event handler now receives an additional argument 
providing template name and location infos.
++ Initialization methods in Velocity and VelocityEngine taking an 
ExtendedProperties have been removed (but `setProperties(Properties)` methods 
are still here). All occurences of the 
org.apache.commons.collections.ExtendedProperties class in the runtime internal 
initialization API have been replaced by org.apache.velocity.util.ExtProperties.
++ the macros are now using a 'call by sharing' convention (which means that 
all arguments are evaluated once at start, and that the macro receives a copy 
of the reference to each argument).
++ the `UberspectLoggable` interface has been removed.
++ the `directive.if.tostring.nullcheck` configuration property has been 
superseded by the `directive.if.emptycheck` property, which defaults to true. 
It means that all empty objects (strings and collections) as long as zero 
numbers, do evaluate to false (see the complete [boolean context 
evaluation](configuration.html#if-directive) rules.). You may want to set 
`directive.if.emptycheck` to false to maximize backward compatibility with 1.x.
++ inside a macro, the rendering of null arguments uses the local reference 
literal - to revert to the 1.7 behavior, you can set the boolean property 
`velocimacro.preserve.arguments.literals` to true (since 2.1). The macros will 
then use the provided argument literals in such cases.
+
+### VTL Changes:
+
++ the hypen ( `-` ) cannot be used in variable names anymore, but this 
behavior can be restored for backward compatibility (since 2.1) by setting the 
new `parser.allows.dash.in.identifiers` boolean property to true
++ method arguments can be arithmetic expressions
++ method arguments are now converted as needed between all main basic Java 
standard types (booleans, numbers and strings). If you want to revert to the 
1.x behavior, set the property `runtime.conversion.handler = none`.
++ space gobbling (to control the indentation of generated code) is now 
configurable via the `space.gobbing` configuration key, which can take the 
following values: `none`, `bc` (aka. backward compatible), `lines` and 
`structured`. See the related documentation section for details. To maximize 
backward compatibility with 1.x, set it to `bc`.
++ the #foreach predefined references `$velocityCount` and `$velocityHasNext` 
have been removed. Use `$foreach.count` (1-based), `$foreach.index` (0-based) 
and `foreach.hasNext()`.
++ since 2.1, it's now possible to provide default values for references, using 
the syntax `${name|'John Doe'}`. The right part can be any valid VTL expression.
++ since 2.1, the `#foreach()` directive accepts an `#else` block which is 
evaluated when the loop is empty: `#foreach(...) ... #else ... #end`.
+
+### Dependency changes:
+
++ Velocity now requires a JDK version of 1.7 or higher.
++ commons-collections and commons-logging aren't needed any more at runtime.
++ there's a new runtime dependency, slf4j-api 1.7.25.
++ you'll need an [SLF4J binding](dependencies.html).
++ commons-lang has to be upgraded to 3.5.
+
+## Upgrading from Velocity 1.6.x to Velocity 1.7.x
+
+There are no changes in the dependencies since Velocity 1.6
+
++ Deprecated $velocityCount; please use $foreach.count or $foreach.index
++ Deprecated $velocityHasNext; please use $foreach.hasNext, $foreach.first or 
$foreach.last
++ Deprecated velocimacro.context.localscope setting; please get/set local 
#macro references as members of the provided $macro scope control instead. 
(e.g. #set( $macro.foo = 'bar' ) and $macro.foo )
++ Deprecated directive.evaluate.context.class setting; please get/set local 
#evaluate references as members of the provided $evaluate scope control 
instead. (e.g. #set( $evaluate.foo = 'bar' ) and $evaluate.foo )
++ Deprecated #literal directive; please use #[[this syntax]]# instead.
++ Changed #stop to end template rendering rather than template parsing.
++ Removed obsolete Veltag (use VelocityViewTag in VelocityTools project)
++ Removed obsolete WebMacro conversion code.
+
+## Upgrading from Velocity 1.5.x to Velocity 1.6.x
+
++ [Commons Collections](http://commons.apache.org/collections/) has been 
upgraded to version 3.2.1.
++ [Commons Lang](http://commons.apache.org/lang/) has been upgraded to version 
2.4.
++ [Commons Logging](http://commons.apache.org/logging/) is required for 
compiling and using CommonsLogLogChute.
+
+## Upgrading from Velocity 1.4 or earlier
+
++ [JDOM](http://www.jdom.org) has been upgraded to version 1.0.
++ [Commons Collections](http://jakarta.apache.org/commons/collections/) has 
been upgraded to version 3.1.
++ [Commons Lang](http://jakarta.apache.org/commons/lang/) 2.1 has been 
added.</li>
+
+Optional:
++ [Apache Ant](http://ant.apache.org) 1.6 or better is required for rebuilding.
++ [JavaCC](http://javacc.dev.java.net) 3.2 is recommended to compile the 
parser files.
++ [HSQLDB](http://www.hsqldb.org) 1.7.1 is required for running unit tests.
+

Added: velocity/site/cms/trunk/content/engine/2.1/user-guide.mdtext
URL: 
http://svn.apache.org/viewvc/velocity/site/cms/trunk/content/engine/2.1/user-guide.mdtext?rev=1854714&view=auto
==============================================================================
--- velocity/site/cms/trunk/content/engine/2.1/user-guide.mdtext (added)
+++ velocity/site/cms/trunk/content/engine/2.1/user-guide.mdtext Sun Mar  3 
13:56:00 2019
@@ -0,0 +1,1281 @@
+Title: Apache Velocity Engine - User Guide
+
+## User Guide - Contents
+
+[TOC]
+
+## About this Guide
+
+The Velocity User Guide is intended to help page designers and content 
providers get acquainted with Velocity and the syntax of its simple yet 
powerful scripting language, the Velocity Template Language (VTL). Many of the 
examples in this guide deal with using Velocity to embed dynamic content in web 
sites, but all VTL examples are equally applicable to other pages and templates.
+
+Thanks for choosing Velocity!
+
+## What is Velocity?
+
+Velocity is a Java-based template engine. It permits web page designers to 
reference methods defined in Java code. Web designers can work in parallel with 
Java programmers to develop web sites according to the Model-View-Controller 
(MVC) model, meaning that web page designers can focus solely on creating a 
well-designed site, and programmers can focus solely on writing top-notch code. 
Velocity separates Java code from the web pages, making the web site more 
maintainable over the long run and providing a viable alternative to [Java 
Server Pages](http://java.sun.com/products/jsp/) (JSPs) or 
[PHP](http://www.php.net/).
+
+Velocity can be used to generate web pages, SQL, PostScript and other output 
from templates. It can be used either as a standalone utility for generating 
source code and reports, or as an integrated component of other systems. When 
complete, Velocity will provide template services for the 
[Turbine](http://java.apache.org/turbine/) web application framework. 
Velocity+Turbine will provide a template service that will allow web 
applications to be developed according to a true MVC model.
+
+## What can Velocity do for me?
+
+### The Mud Store Example
+
+Suppose you are a page designer for an online store that specializes in 
selling mud. Let's call it "The Online Mud Store". Business is thriving. 
Customers place orders for various types and quantities of mud. They login to 
your site using their username and password, which allows them to view their 
orders and buy more mud. Right now, Terracotta Mud is on sale, which is very 
popular. A minority of your customers regularly buys Bright Red Mud, which is 
also on sale, though not as popular and usually relegated to the margin of your 
web page. Information about each customer is tracked in your database, so one 
day the question arises, Why not use Velocity to target special deals on mud to 
the customers who are most interested in those types of mud?
+
+Velocity makes it easy to customize web pages to your online visitors. As a 
web site designer at The Mud Room, you want to make the web page that the 
customer will see after logging into your site.
+
+You meet with software engineers at your company, and everyone has agreed that 
*$customer* will hold information pertaining to the customer currently logged 
in, that *$mudsOnSpecial* will be all the types mud on sale at present. The 
*$flogger* object contains methods that help with promotion. For the task at 
hand, let's concern ourselves only with these three references. Remember, you 
don't need to worry about how the software engineers extract the necessary 
information from the database, you just need to know that it works. This lets 
you get on with your job, and lets the software engineers get on with theirs.
+
+You could embed the following VTL statement in the web page:
+
+    :::html+velocity
+    <html>
+      <body>
+        Hello $customer.Name!
+        <table>
+        #foreach( $mud in $mudsOnSpecial )
+          #if ( $customer.hasPurchased($mud) )
+            <tr>
+              <td>
+                $flogger.getPromo( $mud )
+              </td>
+            </tr>
+          #end
+        #end
+        </table>
+      </body>
+    </html>
+
+The exact details of the *foreach* statement will be described in greater 
depth shortly; what's important is the impact this short script can have on 
your web site. When a customer with a penchant for Bright Red Mud logs in, and 
Bright Red Mud is on sale, that is what this customer will see, prominently 
displayed. If another customer with a long history of Terracotta Mud purchases 
logs in, the notice of a Terracotta Mud sale will be front and center. The 
flexibility of Velocity is enormous and limited only by your creativity.
+
+Documented in the VTL Reference are the many other Velocity elements, which 
collectively give you the power and flexibility you need to make your web site 
a web *presence*. As you get more familiar with these elements, you will begin 
to unleash the power of Velocity.
+
+## Velocity Template Language (VTL): An Introduction
+
+The Velocity Template Language (VTL) is meant to provide the easiest, 
simplest, and cleanest way to incorporate dynamic content in a web page. Even a 
web page developer with little or no programming experience should soon be 
capable of using VTL to incorporate dynamic content in a web site.
+
+VTL uses *references* to embed dynamic content in a web site, and a variable 
is one type of reference. Variables are one type of reference that can refer to 
something defined in the Java code, or it can get its value from a VTL 
*statement* in the web page itself. Here is an example of a VTL statement that 
could be embedded in an HTML document:
+
+    :::velocity
+    #set( $a = "Velocity" )
+
+This VTL statement, like all VTL statements, begins with the *#* character and 
contains a directive: *set*. When an online visitor requests your web page, the 
Velocity Templating Engine will search through your web page to find all *#* 
characters, then determine which mark the beginning of VTL statements, and 
which of the *#* characters that have nothing to do with VTL.
+
+The *#* character is followed by a directive, *set*. The *set* directive uses 
an expression (enclosed in brackets) -- an equation that assigns a *value* to a 
*variable*. The variable is listed on the left hand side and its value on the 
right hand side; the two are separated by an *=* character.
+
+In the example above, the variable is *$a* and the value is *Velocity*. This 
variable, like all references, begins with the *$* character. String values are 
always enclosed in quotes, either single or double quotes.  Single quotes will 
ensure that the quoted value will be assigned to the reference as is.  Double 
quotes allow you to use velocity references and directives to interpolate, such 
as "Hello $name", where the *$name* will be replaced by the current value 
before that string literal is assigned to the left hand side of the *=*
+ 
+ 
+The following rule of thumb may be useful to better understand how Velocity 
works: **References begin with *$* and are used to get something. Directives 
begin with *#* and are used to do something.**
+
+In the example above, *#set* is used to assign a value to a variable. The 
variable, *$a*, can then be used in the template to output "Velocity".
+
+## Hello Velocity World!
+
+Once a value has been assigned to a variable, you can reference the variable 
anywhere in your HTML document. In the following example, a value is assigned 
to *$foo* and later referenced.
+
+    :::html+velocity
+    <html>
+      <body>
+      #set( $foo = "Velocity" )
+      Hello $foo World!
+      </body>
+    </html>
+
+The result is a web page that prints "Hello Velocity World!".
+
+To make statements containing VTL directives more readable, we encourage you 
to start each VTL statement on a new line, although you are not required to do 
so. The *set* directive will be revisited in greater detail later on.
+
+## Comments
+
+
+Comments allows descriptive text to be included that is not placed into the 
output of the template engine. Comments are a useful way of reminding yourself 
and explaining to others what your VTL statements are doing, or any other 
purpose you find useful. Below is an example of a comment in VTL.
+
+    :::velocity
+    ## This is a single line comment.
+
+A single line comment begins with *##* and finishes at the end of the line. If 
you're going to write a few lines of commentary, there's no need to have 
numerous single line comments. Multi-line comments, which begin with *#\** and 
end with *\*#*, are available to handle this scenario.
+
+
+    :::velocity
+    This is text that is outside the multi-line comment.
+    Online visitors can see it.
+    
+    #*
+      Thus begins a multi-line comment. Online visitors won't
+      see this text because the Velocity Templating Engine will
+      ignore it.
+    *#
+    
+    Here is text outside the multi-line comment; it is visible.
+
+Here are a few examples to clarify how single line and multi-line comments 
work:
+
+    :::velocity
+    This text is visible. ## This text is not.
+    This text is visible.
+    This text is visible. #* This text, as part of a multi-line
+    comment, is not visible. This text is not visible; it is also
+    part of the multi-line comment. This text still not
+    visible. *# This text is outside the comment, so it is visible.
+    ## This text is not visible.
+
+There is a third type of comment, the VTL comment block, which may be used to 
store any sort of extra information you want to track in the template (e.g. 
javadoc-style author and versioning information):
+
+    :::velocity
+    #**
+      This is a VTL comment block and
+      may be used to store such information
+      as the document author and versioning
+      information:
+        @author John Doe
+        @version 5
+    *#
+
+## References
+
+There are three types of references in the VTL: variables, properties and 
methods. As a designer using the VTL, you and your engineers must come to an 
agreement on the specific names of references so you can use them correctly in 
your templates.
+
+### Variables
+
+The shorthand notation of a variable consists of a leading "$" character 
followed by a VTL *Identifier*. A VTL Identifier must start with an alphabetic 
character (a .. z or A .. Z). The rest of the characters are limited to the 
following types of characters:
+
++ alphabetic (a .. z, A .. Z)
++ numeric (0 .. 9)
++ underscore ("_")
+
+Here are some examples of valid variable references in the VTL:
+
+    :::velocity
+    $foo
+    $mudSlinger
+    $mud-slinger
+    $mud_slinger
+    $mudSlinger1
+
+When VTL references a variable, such as *$foo*, the variable can get its value 
from either a *set* directive in the template, or from the Java code. For 
example, if the Java variable *$foo* has the value *bar* at the time the 
template is requested, *bar* replaces all instances of *$foo* on the web page. 
Alternatively, if I include the statement
+
+    :::velocity
+    #set( $foo = "bar" )
+
+The output will be the same for all instances of *$foo* that follow this 
directive.
+
+### Properties
+
+The second flavor of VTL references are properties, and properties have a 
distinctive format. The shorthand notation consists of a leading *$* character 
followed a VTL Identifier, followed by a dot character (".") and another VTL 
Identifier. These are examples of valid property references in the VTL:
+
+    :::velocity
+    $customer.Address
+    $purchase.Total
+
+Take the first example, *$customer.Address*. It can have two meanings. It can 
mean, Look in the hashtable identified as *customer* and return the value 
associated with the key *Address*. But *$customer.Address* can also be 
referring to a method (references that refer to methods will be discussed in 
the next section); *$customer.Address* could be an abbreviated way of writing 
*$customer.getAddress()*. When your page is requested, Velocity will determine 
which of these two possibilities makes sense, and then return the appropriate 
value.
+
+### Methods
+
+A method is defined in the Java code and is capable of doing something useful, 
like running a calculation or arriving at a decision. Methods are references 
that consist of a leading "$" character followed a VTL Identifier, followed by 
a VTL *Method Body*. A VTL Method Body consists of a VTL Identifier followed by 
an left parenthesis character ("("), followed by an optional parameter list, 
followed by right parenthesis character (")"). These are examples of valid 
method references in the VTL:
+
+    :::velocity
+    $customer.getAddress()
+    $purchase.getTotal()
+    $page.setTitle( "My Home Page" )
+    $person.setAttributes( ["Strange", "Weird", "Excited"] )
+
+The first two examples -- *$customer.getAddress()* and *$purchase.getTotal()* 
-- may look similar to those used in the Properties section above, 
*$customer.Address* and *$purchase.Total*. If you guessed that these examples 
must be related some in some fashion, you are correct!
+
+VTL Properties can be used as a shorthand notation for VTL Methods. The 
Property *$customer.Address* has the exact same effect as using the Method 
*$customer.getAddress()*. It is generally preferable to use a Property when 
available. The main difference between Properties and Methods is that you can 
specify a parameter list to a Method.
+
+The shorthand notation can be used for the following Methods
+
+    :::velocity
+    $sun.getPlanets()
+    $annelid.getDirt()
+    $album.getPhoto()
+
+We might expect these methods to return the names of planets belonging to the 
sun, feed our earthworm, or get a photograph from an album. Only the long 
notation works for the following Methods.
+
+    :::velocity
+    $sun.getPlanet( ["Earth", "Mars", "Neptune"] )
+    ## Can't pass a parameter list with $sun.Planets
+    
+    $sisyphus.pushRock()
+    ## Velocity assumes I mean $sisyphus.getRock()
+    
+    $book.setTitle( "Homage to Catalonia" )
+    ## Can't pass a parameter
+
+All array references are treated as if they are fixed-length lists. This means 
that you can call java.util.List methods and properties on array references.  
So, if you have a reference to an array (let's say this one is a String[] with 
three values), you can do:
+
+    :::velocity
+    $myarray.isEmpty() or $myarray.empty
+    $myarray.size()
+    $myarray.get(2)
+    $myarray.set(1, 'test')
+
+Velocity also supports vararg methods. A method like `azpublic void 
setPlanets(String... planets)` or even just `public void setPlanets(String[] 
planets)` can now accept any number of arguments when called in a template.
+
+    :::velocity
+    $sun.setPlanets('Earth', 'Mars', 'Neptune')
+    $sun.setPlanets('Mercury')
+    $sun.setPlanets()
+    ## Will just pass in an empty, zero-length array
+
+As of Velocity 2.0, method calls now provides implicit conversions between all 
Java basic builtin types: numbers, booleans and strings.
+
+### Property Lookup Rules
+
+As was mentioned earlier, properties often refer to methods of the parent 
object. Velocity is quite clever when figuring out which method corresponds to 
a requested property. It tries out different alternatives based on several 
established naming conventions. The exact lookup sequence depends on whether or 
not the property name starts with an upper-case letter. For lower-case names, 
such as *$customer.address*, the sequence is
+
+1. getaddress()
+2. getAddress()
+3. get("address")
+4. isAddress()
+
+For upper-case property names like *$customer.Address*, it is slightly 
different:
+
+1. getAddress()
+2. getaddress()
+3. get("Address")
+4. isAddress()
+
+### Rendering
+
+The final value resulting from each and every reference (whether variable, 
property, or method) is converted to a String object when it is rendered into 
the final output. If there is an object that represents *$foo* (such as an 
Integer object), then Velocity will call its `.toString()` method to resolve 
the object into a String.
+
+### Index Notation
+
+Using the notation of the form `$foo[0]` can be used to access a given index 
of an object.  This form is synonymous with calling the get(Object) method on a 
given object i.e, `$foo.get(0)`, and provides essentially a syntactic shorthand 
for such operations. Since this simply calls the get method all of the 
following are valid uses:
+
+    :::velocity
+    $foo[0]       ## $foo takes in an Integer look up
+    $foo[$i]      ## Using another reference as the index   
+    $foo["bar"]   ## Passing a string where $foo may be a Map
+
+The bracketed syntax also works with Java arrays since Velocity wraps arrays 
in an access object that provides a `get(Integer)` method which returns the 
specified element.
+
+The bracketed syntax is valid anywhere `.get` is valid, for example:
+
+    :::velocity
+    $foo.bar[1].junk
+    $foo.callMethod()[1]
+    $foo["apple"][4]
+    
+A reference can also be set using index notation, for example:
+
+    :::velocity
+    #set($foo[0] = 1)
+    #set($foo.bar[1] = 3)
+    #set($map["apple"] = "orange")
+
+The specified element is set with the given value. Velocity tries first the 
'set' method on the element, then 'put' to make the assignment.
+
+## Formal Reference Notation
+
+Shorthand notation for references was used for the examples listed above, but 
there is also a formal notation for references, which is demonstrated below:
+
+    :::velocity
+    ${mudSlinger}
+    ${customer.Address}
+    ${purchase.getTotal()}
+
+In almost all cases you will use the shorthand notation for references, but in 
some cases the formal notation is required for correct processing.
+
+Suppose you were constructing a sentence on the fly where *$vice* was to be 
used as the base word in the noun of a sentence. The goal is to allow someone 
to choose the base word and produce one of the two following results: "Jack is 
a pyromaniac." or "Jack is a kleptomaniac.". Using the shorthand notation would 
be inadequate for this task. Consider the following example:
+
+    :::velocity
+    Jack is a $vicemaniac.
+
+There is ambiguity here, and Velocity assumes that *$vicemaniac*, not *$vice*, 
is the Identifier that you mean to use. Finding no value for *$vicemaniac*, it 
will return *$vicemaniac*. Using formal notation can resolve this problem.
+
+    :::velocity
+    Jack is a ${vice}maniac.
+
+Now Velocity knows that *$vice*, not *$vicemaniac*, is the reference. Formal 
notation is often useful when references are directly adjacent to text in a 
template.
+
+## Alternate values
+
+Formal reference notations can also be used to provide an *alternate value* 
whenever the boolean evaluation of a reference is false.
+
+    :::velocity
+    My name is ${name|'John Doe'}
+
+If $name is null, empty, false or zero (see [Conditionals](#conditionals)), 
then the altername string `'John Doe'` will be displayed.
+
+## Quiet Reference Notation
+
+When Velocity encounters an undefined reference, its normal behavior is to 
output the image of the reference. For example, suppose the following reference 
appears as part of a VTL template.
+
+    :::html+velocity
+    <input type="text" name="email" value="$email"/>
+
+When the form initially loads, the variable reference *$email* has no value, 
but you prefer a blank text field to one with a value of "$email". Using the 
quiet reference notation circumvents Velocity's normal behavior; instead of 
using *$email* in the VTL you would use *$!email*. So the above example would 
look like the following:
+
+    :::html+velocity
+    <input type="text" name="email" value="$!email"/>
+
+Now when the form is initially loaded and *$email* still has no value, an 
empty string will be output instead of "$email".
+
+Formal and quiet reference notation can be used together, as demonstrated 
below.
+
+    :::html+velocity
+    <input type="text" name="email" value="$!{email}"/>
+
+## Strict Reference Mode
+
+Velocity 1.6 introduces the concept of strict reference mode which is 
activated by setting the velocity configuration property 
'runtime.references.strict' to true.  The general intent of this setting is to 
make Velocity behave more strictly in cases that are undefined or ambiguous, 
similar to a programming language, which may be more appropriate for some uses 
of Velocity. In such undefined or ambiguous cases Velocity will throw an 
exception.  The following discussion outlines the cases in which strict 
behavior is different from traditional behavior.
+
+With this setting references are required to be either placed explicitly into 
the context or defined with a #set directive or Velocity will throw an 
exception.  References that are in the context with a value of null will not 
produce an exception. Additionally, if an attempt is made to call a method or a 
property on an object within a reference that does not define the specified 
method or property then Velocity will throw an exception.  This is also true if 
there is an attempt to call a method or property on a null value.
+
+In the following examples $bar is defined but $foo is not, and all these 
statements will throw an exception:
+
+    :::velocity
+    $foo                         ## Exception
+    #set($bar = $foo)            ## Exception
+    #if($foo == $bar)#end        ## Exception
+    #foreach($item in $foo)#end  ## Exception
+
+Also, The following statements show examples in which Velocity will throw an 
exception when attempting to call methods or properties that do not exist. In 
these examples $bar contains an object that defines a property 'foo' which 
returns a string, and 'retnull' which returns null.
+
+    :::velocity
+    $bar.bogus          ## $bar does not provide property bogus, Exception
+    $bar.foo.bogus      ## $bar.foo does not provide property bogus, Exception
+    $bar.retnull.bogus  ## cannot call a property on null, Exception</pre>
+
+In general strict reference behavior is true for all situations in which 
references are used except for a special case within the #if directive.  If a 
reference is used within a #if or #elseif directive without any methods or 
properties, and if it is not being compared to another value, then undefined 
references are allowed.  This behavior provides an easy way to test if a 
reference is defined before using it in a template.  In the following example 
where $foo is not defined the statements will not throw an exception.
+
+    :::velocity
+    #if ($foo)#end                  ## False
+    #if ( ! $foo)#end               ## True
+    #if ($foo && $foo.bar)#end      ## False and $foo.bar will not be evaluated
+    #if ($foo && $foo == "bar")#end ## False and $foo == "bar" wil not be 
evaluated
+    #if ($foo1 || $foo2)#end        ## False $foo1 and $foo2 are not defined
+    
+Strict mode requires that comparisons of >, <, >= or <= within an #if 
directive makes sense. Also, the argument to #foreach must be iterable (this 
behavior can be modified with the property directive.foreach.skip.invalid). 
Finally, undefined macro references will also throw an exception in strict mode.
+
+References that Velocity attempts to render but evaluate to null will cause an 
Exception.  To simply render nothing in this case the reference can be preceded 
by '$!' instead of '$', similar to non strict mode.  Keep in mind this is 
different from the reference not existing in the context which will always 
throw an exception when attempting to render it in strict mode.  For example, 
below $foo has a value of null in the context
+
+    :::velocity
+    this is $foo    ## throws an exception because $foo is null
+    this is $!foo   ## renders to "this is " without an exception
+    this is $!bogus ## bogus is not in the context so throws an exception
+    
+## Case Substitution
+
+Now that you are familiar with references, you can begin to apply them 
effectively in your templates. Velocity references take advantage of some Java 
principles that template designers will find easy to use. For example:
+
+    :::velocity
+    $foo
+
+    $foo.getBar()
+    ## is the same as
+    $foo.Bar
+
+    $data.setUser("jon")
+    ## is the same as
+    #set( $data.User = "jon" )
+
+    $data.getRequest().getServerName()
+    ## is the same as
+    $data.Request.ServerName
+    ## is the same as
+    ${data.Request.ServerName}
+
+These examples illustrate alternative uses for the same references. Velocity 
takes advantage of Java's introspection and bean features to resolve the 
reference names to both objects in the Context as well as the objects methods. 
It is possible to embed and evaluate references almost anywhere in your 
template.
+
+Velocity, which is modelled on the Bean specifications defined by Sun 
Microsystems, is case sensitive; however, its developers have strove to catch 
and correct user errors wherever possible. When the method *getFoo()* is 
referred to in a template by `$bar.foo`, Velocity will first try `$getfoo`. If 
this fails, it will then try `$getFoo`. Similarly, when a template refers to 
`$bar.Foo`, Velocity will try *$getFoo()* first and then try *getfoo()*.
+
+Note: *References to instance variables in a template are not resolved.* Only 
references to the attribute equivalents of JavaBean getter/setter methods are 
resolved (i.e. `$foo.Name` does resolve to the class Foo's `getName()` instance 
method, but not to a public `Name` instance variable of Foo).
+
+## Directives
+
+References allow template designers to generate dynamic content for web sites, 
while *directives* -- easy to use script elements that can be used to 
creatively manipulate the output of Java code -- permit web designers to truly 
take charge of the appearance and content of the web site.
+
+Directives always begin with a `#`.  Like references, the name of the 
directive may be bracketed by a `{` and a `}` symbol.  This is useful with 
directives that are immediately followed by text.  For example the following 
will display `true enough#elseno way!`, which probably isn't the expected 
behavior.
+
+    :::velocity
+    #if($a==1)true enough#elseno way!#end
+
+In such a case, use the brackets to separate `#else` from the rest of the line.
+
+    :::velocity
+    #if($a==1)true enough#{else}no way!#end
+
+### Set
+
+The *#set* directive is used for setting the value of a reference. A value can 
be assigned to either a variable reference or a property reference, and this 
occurs in brackets, as demonstrated:
+
+    :::velocity
+    #set( $primate = "monkey" )
+    #set( $customer.Behavior = $primate )
+
+The left hand side (LHS) of the assignment must be a variable reference or a 
property reference. The right hand side (RHS) can be one of the following types:
+
++ Variable reference
++ String literal
++ Property reference
++ Method reference
++ Number literal
++ ArrayList
++ Map
+
+These examples demonstrate each of the aforementioned types:
+
+    :::velocity
+    #set( $monkey = $bill ) ## variable reference
+    #set( $monkey.Friend = "monica" ) ## string literal
+    #set( $monkey.Blame = $whitehouse.Leak ) ## property reference
+    #set( $monkey.Plan = $spindoctor.weave($web) ) ## method reference
+    #set( $monkey.Number = 123 ) ##number literal
+    #set( $monkey.Say = ["Not", $my, "fault"] ) ## ArrayList
+    #set( $monkey.Map = {"banana" : "good", "roast beef" : "bad"}) ## Map
+
+NOTE: For the ArrayList example the elements defined with the [..] operator 
are accessible using the methods defined in the ArrayList class. So, for 
example, you could access the first element above using $monkey.Say.get(0).
+
+Similarly, for the Map example, the elements defined within the { }  operator 
are accessible using the methods defined in the Map class. So, for example, you 
could access the first element above using $monkey.Map.get("banana") to return 
a String 'good', or even $monkey.Map.banana to return the same value.
+
+The RHS can also be a simple arithmetic expression:
+
+    :::velocity
+    #set( $value = $foo + 1 )
+    #set( $value = $bar - 1 )
+    #set( $value = $foo * $bar )
+    #set( $value = $foo / $bar )
+
+If the RHS is a property or method reference that evaluates to *null*, then 
the LHS will be set to null.
+
+Unlike some of the other Velocity directives, the *#set* directive does not 
have an *#end* statement.
+
+#### Literals
+
+When using the *#set* directive, string literals that are enclosed in double 
quote characters will be parsed and rendered, as shown:
+
+    :::velocity
+    #set( $directoryRoot = "www" )
+    #set( $templateName = "index.vm" )
+    #set( $template = "$directoryRoot/$templateName" )
+    $template
+
+The output will be
+
+    www/index.vm
+
+However, when the string literal is enclosed in single quote characters, it 
will not be parsed:
+
+    :::velocity
+    #set( $foo = "bar" )
+    $foo
+    #set( $blargh = '$foo' )
+    $blargh
+
+This renders as:
+
+    bar
+    $foo
+
+By default, this feature of using single quotes to render unparsed text is 
available in Velocity. This default can be changed by editing 
`velocity.properties` such that `stringliterals.interpolate=false`.
+
+Alternately, the *#[[*don't parse me!*]]#* syntax allows the template designer 
to easily use large chunks of uninterpreted and unparsed content in VTL code.  
This can be especially useful in place of <a 
href="#EscapingVTLDirectives">escaping</a> multiple directives or escaping 
sections which have content that would otherwise be invalid (and thus 
unparseable) VTL.
+
+    :::velocity
+    #[[
+    #foreach ($woogie in $boogie)
+      nothing will happen to $woogie
+    #end
+    ]]#
+
+Renders as:
+
+    #foreach ($woogie in $boogie)
+      nothing will happen to $woogie
+    #end
+
+### Conditionals
+
+#### If / ElseIf / Else
+
+The *#if* directive in Velocity allows for text to be included when the web 
page is generated, on the conditional that the if statement is true. For 
example:
+
+    :::velocity
+    #if( $foo )
+      <strong>Velocity!</strong>
+    #end
+
+The variable *$foo* is evaluated to determine whether it is true, which will 
happen under one of those circumstances:
+
++ *$foo* is a boolean (true/false) which has a true value
++ *$foo* is a string or a collection which is not null **and** not empty
++ *$foo* is a number which is not equal to zero
++ *$foo* is an object (other than a string, a number or a collection) which is 
not null
+
+(please note that this is the default behavior, but Velocity can be configured 
to [skip all checks beyond boolean and nullity 
ones](configuration.html#if-directive)).
+
+To test if a reference has a special values, you can use:
+
++ `#if ($ref == $null)` to specifically test for the null value (provided you 
didn't put anything in `$null`)
++ `#if ($ref == false)` to specifically test for the false value
++ `#if ($ref == '')` to specifically test for the empty string
++ `#if ($ref == 0)` to specifically test for zero
++ `#if ($ref.size() == 0)` to specifically test for an empty collection
+
+Remember that the Velocity context only contains Objects, so when we say 
'boolean', it will be represented as a Boolean (the class).  This is true even 
for methods that return `boolean` - the introspection infrastructure will 
return a `Boolean` of the same logical value.
+
+The content between the *#if* and the *#end* statements become the output if 
the evaluation is true. In this case, if *$foo* is true, the output will be: 
"Velocity!". Conversely, if *$foo* has a null value, or if it is a boolean 
false, the statement evaluates as false, and there is no output.
+
+An *#elseif* or *#else* element can be used with an *#if* element. Note that 
the Velocity Templating Engine will stop at the first expression that is found 
to be true. In the following example, suppose that *$foo* has a value of 15 and 
*$bar* has a value of 6.
+
+    :::velocity
+    #if( $foo < 10 )
+        **Go North**
+    #elseif( $foo == 10 )
+        **Go East**
+    #elseif( $bar == 6 )
+        **Go South**
+    #else
+        **Go West**
+    #end
+
+In this example, *$foo* is greater than 10, so the first two comparisons fail. 
 Next *$bar* is compared to 6, which is true, so the output is **Go South**.
+
+#### Relational and Logical Operators
+
+Velocity uses the equivalent operator to determine the relationships between 
variables. Here is a simple example to illustrate how the equivalent operator 
is used.
+
+    :::velocity
+    #set ($foo = "deoxyribonucleic acid")
+    #set ($bar = "ribonucleic acid")
+   
+    #if ($foo == $bar)
+      In this case it's clear they aren't equivalent. So...
+    #else
+      They are not equivalent and this will be the output.
+    #end
+
+Note that the semantics of *==* are slightly different than Java where *==* 
can only be used to test object equality.  In Velocity the equivalent operator 
can be used to directly compare numbers, strings, or objects.  When the objects 
are of different classes, the string representations are obtained by calling 
`toString()` for each object and then compared.
+
+Velocity has logical AND, OR and NOT operators as well. Below are examples 
demonstrating the use of the logical AND, OR and NOT operators.
+
+    :::velocity
+    ## logical AND
+
+    #if( $foo && $bar )
+      ** This AND that**
+    #end
+
+The *#if()* directive will only evaluate to true if both *$foo* and *$bar* are 
true. If *$foo* is false, the expression will evaluate to false; *$bar* will 
not be evaluated. If *$foo* is true, the Velocity Templating Engine will then 
check the value of *$bar*; if *$bar* is true, then the entire expression is 
true and **This AND that** becomes the output. If *$bar* is false, then there 
will be no output as the entire expression is false.
+
+Logical OR operators work the same way, except only one of the references need 
evaluate to true in order for the entire expression to be considered true. 
Consider the following example.
+
+    :::velocity
+    ## logical OR
+    
+    #if( $foo || $bar )
+        **This OR That**
+    #end
+
+If *$foo* is true, the Velocity Templating Engine has no need to look at 
*$bar*; whether *$bar* is true or false, the expression will be true, and 
**This OR That** will be output. If *$foo* is false, however, *$bar* must be 
checked. In this case, if *$bar* is also false, the expression evaluates to 
false and there is no output. On the other hand, if *$bar* is true, then the 
entire expression is true, and the output is **This OR That**
+
+With logical NOT operators, there is only one argument :
+
+    :::velocity
+    ##logical NOT
+    
+    #if( !$foo )
+      **NOT that**
+    #end
+
+Here, the if *$foo* is true, then *!$foo* evaluates to false, and there is no 
output.  If *$foo* is false, then *!$foo* evaluates to true and **NOT that** 
will be output.  Be careful not to confuse this with the *quiet reference 
$!foo* which is something altogether different.
+
+There are text versions of all logical operators, including *eq*, *ne*, *and*, 
*or*, *not*, *gt*, *ge*, *lt*, and *le*.
+
+One more useful note.  When you wish to include text immediately following a 
*#else* directive you will need to use curly brackets immediately surrounding 
the directive to differentiate it from the following text. (Any directive can 
be delimited by curly brackets, although this is most useful for *#else*).
+
+    :::velocity
+    #if( $foo == $bar)it's true!#{else}it's not!#end
+
+### Loops
+
+#### Foreach Loop
+
+The *#foreach* element allows for looping. For example:
+
+    :::html+velocity
+    <ul>
+    #foreach( $product in $allProducts )
+        <li>$product</li>
+    #end
+    </ul>
+
+This *#foreach* loop causes the *$allProducts* list (the object) to be looped 
over for all of the products (targets) in the list. Each time through the loop, 
the value from *$allProducts* is placed into the *$product* variable.
+
+The contents of the *$allProducts* variable is a Vector, a Hashtable or an 
Array. The value assigned to the *$product* variable is a Java Object and can 
be referenced from a variable as such. For example, if *$product* was really a 
Product class in Java, its name could be retrieved by referencing the 
*$product.Name* method (ie: *$Product.getName()*).
+
+Lets say that *$allProducts* is a Hashtable. If you wanted to retrieve the key 
values for the Hashtable as well as the objects within the Hashtable, you can 
use code like this:
+
+    :::html+velocity
+    <ul>
+    #foreach( $key in $allProducts.keySet() )
+        <li>Key: $key -> Value: $allProducts.get($key)</li>
+    #end
+    </ul>
+
+Velocity provides an easy way to get the loop counter so that you can do 
something like the following:
+
+    :::html+velocity
+    <table>
+    #foreach( $customer in $customerList )
+        <tr><td>$foreach.count</td><td>$customer.Name</td></tr>
+    #end
+    </table>
+
+Velocity also provides an easy way to tell if you are on the first or last 
iteration of a loop, and also lets you define what happens whenever the loop is 
empty:
+
+    :::velocity
+    #foreach( $customer in $customerList )
+        #if( $foreach.first ) There are customer: #end
+        $customer.Name #if( $foreach.hasNext ),#end
+    #else
+        Nobody around
+    #end
+
+If you want a zero-based index of the #foreach loop, you can just use 
$foreach.index instead of $foreach.count.  Likewise, $foreach.first and 
$foreach.last are provided to compliment $foreach.hasNext. If you want to 
access these properties for an outer #foreach loop, you can reference them 
directly through the $foreach.parent or $foreach.topmost properties (e.g. 
$foreach.parent.index or $foreach.topmost.hasNext).
+
+It's possible to set a maximum allowed number of times that a loop may be 
executed. By default there is no max (indicated by a value of 0 or less), but 
this can be set to an arbitrary number in the `velocity.properties` file.  This 
is useful as a fail-safe.
+
+    :::properties
+    # The maximum allowed number of loops.
+    directive.foreach.maxloops = -1
+
+If you want to stop looping in a foreach from within your template, you can 
now use the #break directive to stop looping at any time:
+
+    :::velocity
+    ## list first 5 customers only
+    #foreach( $customer in $customerList )
+        #if( $foreach.count > 5 )
+            #break
+        #end
+        $customer.Name
+    #end
+
+### Include
+
+The *#include* script element allows the template designer to import a local 
file, which is then inserted into the location where the *#include* directive 
is defined. The contents of the file are not rendered through the template 
engine. For security reasons, the file to be included may only be under 
TEMPLATE_ROOT.
+
+    :::velocity
+    #include( "one.txt" )
+
+The file to which the *#include* directive refers is enclosed in quotes. If 
more than one file will be included, they should be separated by commas.
+
+    :::velocity
+    #include( "one.gif","two.txt","three.htm" )
+
+The file being included need not be referenced by name; in fact, it is often 
preferable to use a variable instead of a filename. This could be useful for 
targeting output according to criteria determined when the page request is 
submitted. Here is an example showing both a filename and a variable.
+
+    #include( "greetings.txt", $seasonalstock )
+
+### Parse
+
+The *#parse* script element allows the template designer to import a local 
file that contains VTL. Velocity will parse the VTL and render the template 
specified.
+
+    :::velocity
+    #parse( "me.vm" )
+
+Like the *#include* directive, *#parse* can take a variable rather than a 
template. Any templates to which *#parse* refers must be included under 
TEMPLATE_ROOT. Unlike the *#include* directive, *#parse* will only take a 
single argument.
+
+VTL templates can have *#parse* statements referring to templates that in turn 
have *#parse* statements. By default set to 10, the *directive.parse.max.depth* 
line of the `velocity.properties` allows users to customize maximum number of 
*#parse* referrals that can occur from a single template. (Note: If the 
*directive.parse.max.depth* property is absent from the `velocity.properties` 
file, Velocity will set this default to 10.) Recursion is permitted, for 
example, if the template `dofoo.vm` contains the following lines:
+
+    :::velocity
+    Count down.
+    #set( $count = 8 )
+    #parse( "parsefoo.vm" )
+    All done with dofoo.vm!
+
+It would reference the template `parsefoo.vm`, which might contain the 
following VTL:
+
+    :::velocity
+    $count
+    #set( $count = $count - 1 )
+    #if( $count > 0 )
+        #parse( "parsefoo.vm" )
+    #else
+        All done with parsefoo.vm!
+    #end
+
+After "Count down." is displayed, Velocity passes through `parsefoo.vm`, 
counting down from 8. When the count reaches 0, it will display the "All done 
with parsefoo.vm!" message. At this point, Velocity will return to `dofoo.vm` 
and output the "All done with dofoo.vm!" message.
+
+### Break
+
+The *#break* directive stops any further rendering of the current execution 
scope.  An "execution scope" is essentially any directive with content (i.e. 
#foreach, #parse, #evaluate, #define, #macro, or #@somebodymacro) or any "root" 
scope (i.e. template.merge(...), Velocity.evaluate(...) or 
velocityEngine.evaluate(...)). Unlike #stop, #break will only stop the 
innermost, immediate scope, not all of them.
+
+If you wish to break out of a specific execution scope that is not necessarily 
the most immediate one, then you can pass the scope control reference (i.e. 
$foreach, $template, $evaluate, $define, $macro, or $somebodymacro) as an 
argument to #break. (e.g. #break($macro)). This will stop rendering of all 
scopes up to the specified one.  When within nested scopes of the same type, 
remember that you can always access the parent(s) via $<scope>.parent or 
$<scope>.topmost and pass those to #break instead (e.g. #break($foreach.parent) 
or #break($macro.topmost)).
+
+### Stop
+
+The *#stop* directive stops any further rendering and execution of the 
template.  This is true even when the directive is nested within another 
template accessed through #parse or located in a velocity macro. The resulting 
merged output will contain all the content up to the point the #stop directive 
was encountered.  This is handy as an early exit from a template. For debugging 
purposes, you may provide a message argument (e.g. #stop('$foo was not in 
context') ) that will be written to the logs (DEBUG level, of course) upon 
completion of the stop command.
+
+### Evaluate
+
+The *#evaluate* directive can be used to dynamically evaluate VTL.  This 
allows the template to evaluate a string that is created at render time.  Such 
a string might be used to internationalize the template or to include parts of 
a template from a database.
+
+The example below will display `abc`.
+
+    :::velocity
+    #set($source1 = "abc")
+    #set($select = "1")
+    #set($dynamicsource = "$source$select")
+    ## $dynamicsource is now the string '$source1'
+    #evaluate($dynamicsource)
+
+
+### Define
+
+The *#define* directive lets one assign a block of VTL to a reference.
+
+The example below will display `Hello World!`.
+
+    :::velocity
+    #define( $block )Hello $who#end
+    #set( $who = 'World!' )
+    $block
+
+### Velocimacros
+
+The *#macro* script element allows template designers to define a repeated 
segment of a VTL template. Velocimacros are very useful in a wide range of 
scenarios both simple and complex. This Velocimacro, created for the sole 
purpose of saving keystrokes and minimizing typographic errors, provides an 
introduction to the concept of Velocimacros.
+
+    :::html+velocity
+    #macro( d )
+    <tr><td></td></tr>
+    #end
+
+The Velocimacro being defined in this example is *d*, and it can be called in 
a manner analogous to any other VTL directive:
+
+    :::velocity
+    #d()
+
+When this template is called, Velocity would replace *#d()* with a row 
containing a single, empty data cell.  If we want to put something in that 
cell, we can alter the macro to allow for a body:
+
+    :::html+velocity
+    #macro( d )
+    <tr><td>$!bodyContent</td></tr>
+    #end
+
+Now, if we call the macro just a bit differently, using #@ before the name and 
providing a body and #end to the call, then Velocity will render the body when 
it gets to the $!bodyContent:
+
+    :::velocity
+    #@d()Hello!#end
+
+You can still call the macro as you did before, and since we used the silent 
reference notation for the body reference ($!bodyContent instead of 
$bodyContent), it will still render a row with a single, empty data cell.
+
+A Velocimacro can also take any number of arguments -- even zero arguments, as 
demonstrated in the first example, is an option -- but when the Velocimacro is 
invoked, it must be called with the same number of arguments with which it was 
defined. Many Velocimacros are more involved than the one defined above. Here 
is a Velocimacro that takes two arguments, a color and an array.
+
+    :::html+velocity
+    #macro( tablerows $color $somelist )
+    #foreach( $something in $somelist )
+        <tr><td bgcolor=$color>$something</td></tr>
+    #end
+    #end
+
+The Velocimacro being defined in this example, *tablerows*, takes two 
arguments. The first argument takes the place of *$color*, and the second 
argument takes the place of *$somelist*.
+
+Anything that can be put into a VTL template can go into the body of a 
Velocimacro. The *tablerows* Velocimacro is a *foreach* statement. There are 
two *#end* statements in the definition of the *#tablerows* Velocimacro; the 
first belongs to the *#foreach*, the second ends the Velocimacro definition.
+
+    :::html+velocity
+    #set( $greatlakes = ["Superior","Michigan","Huron","Erie","Ontario"] )
+    #set( $color = "blue" )
+    <table>
+        #tablerows( $color $greatlakes )
+    </table>
+
+Notice that *$greatlakes* takes the place of *$somelist*. When the 
*#tablerows* Velocimacro is called in this situation, the following output is 
generated:
+
+    :::html
+    <table>
+        <tr><td bgcolor="blue">Superior</td></tr>
+        <tr><td bgcolor="blue">Michigan</td></tr>
+        <tr><td bgcolor="blue">Huron</td></tr>
+        <tr><td bgcolor="blue">Erie</td></tr>
+        <tr><td bgcolor="blue">Ontario</td></tr>
+    </table>
+
+Velocimacros can be defined *inline* in a Velocity template, meaning that it 
is unavailable to other Velocity templates on the same web site. Defining a 
Velocimacro such that it can be shared by all templates has obvious advantages: 
it reduces the need to redefine the Velocimacro on numerous templates, saving 
work and reducing the chance of error, and ensures that a single change to a 
macro available to more than one template.
+
+Were the *#tablerows($color $list)* Velocimacro defined in a Velocimacros 
template library, this macro could be used on any of the regular templates. It 
could be used many times and for many different purposes. In the template 
`mushroom.vm` devoted to all things fungi, the *#tablerows* Velocimacro could 
be invoked to list the parts of a typical mushroom:
+
+    :::html+velocity
+    #set( $parts = ["volva","stipe","annulus","gills","pileus"] )
+    #set( $cellbgcol = "#CC00FF" )
+    <table>
+    #tablerows( $cellbgcol $parts )
+    </table>
+
+When fulfilling a request for `mushroom.vm`, Velocity would find the 
*#tablerows* Velocimacro in the template library (defined in the 
`velocity.properties` file) and generate the following output:
+
+    :::html+
+    <table>
+        <tr><td bgcolor="#CC00FF">volva</td></tr>
+        <tr><td bgcolor="#CC00FF">stipe</td></tr>
+        <tr><td bgcolor="#CC00FF">annulus</td></tr>
+        <tr><td bgcolor="#CC00FF">gills</td></tr>
+        <tr><td bgcolor="#CC00FF">pileus</td></tr>
+    </table>
+
+#### Velocimacro Arguments
+
+Velocimacros can take as arguments any of the following VTL elements :
+
++ Reference : anything that starts with '$'
++ String literal : something like "$foo" or 'hello'
++ Number literal : 1, 2 etc
++ IntegerRange : [ 1..2] or [$foo .. $bar]
++ ObjectArray : [ "a", "b", "c"]
++ boolean value true
++ boolean value false
+
+When passing references as arguments to Velocimacros, please note that 
references are passed 'by name'. This means that their value is 'generated' at 
each use inside the Velocimacro.  This feature allows you to pass references 
with method calls and have the method called at each use.  For example, when 
calling the following Velocimacro as shown
+
+    :::velocity
+    #macro( callme $a )
+        $a $a $a
+    #end
+
+    #callme( $foo.bar() )
+
+results in the method bar() of the reference $foo being called 3 times.
+
+At first glance, this feature appears surprising, but when you take into 
consideration the original motivation behind Velocimacros -- to eliminate 
cut'n'paste duplication of commonly used VTL -- it makes sense.  It allows you 
to do things like pass stateful objects, such as an object that generates 
colors in a repeating sequence for coloring table rows, into the Velocimacro.
+
+If you need to circumvent this feature, you can always just get the value from 
the method as a new reference and pass that :
+
+    :::velocity
+    #set( $myval = $foo.bar() )
+    #callme( $myval )
+
+
+#### Velocimacro Properties
+
+Several lines in the `velocity.properties` file allow for flexible 
implementation of Velocimacros.  Note that these are also documented in the <a 
href="developer-guide.html">Developer Guide</a>.
+
+`velocimacro.library` - A comma-separated list of all Velocimacro template 
libraries. By default, Velocity looks for a single library: 
*VM_global_library.vm*. The configured template path is used to find the 
Velocimacro libraries.
+
+`velocimacro.permissions.allow.inline` - This property, which has possible 
values of true or false, determines whether Velocimacros can be defined in 
regular templates. The default, true, allows template designers to define 
Velocimacros in the templates themselves.
+
+`velocimacro.permissions.allow.inline.to.replace.global` - With possible 
values of true or false, this property allows the user to specify if a  
Velocimacro defined inline in a template can replace a globally defined 
template, one that was loaded on startup via the `velocimacro.library` 
property. The default, `false`, prevents Velocimacros defined inline in a 
template from replacing those defined in the template libraries loaded at 
startup.
+
+`velocimacro.permissions.allow.inline.local.scope` - This property, with 
possible values of true or false, defaulting to false, controls if Velocimacros 
defined inline are 'visible' only to the defining template.  In other words, 
with this property set to true, a template can define inline VMs that are 
usable only by the defining template.  You can use this for fancy VM tricks - 
if a global VM calls another global VM, with inline scope, a template can 
define a private implementation of the second VM that will be called by the 
first VM when invoked by that template.  All other templates are unaffected.
+
+`velocimacro.library.autoreload` - This property controls Velocimacro library 
autoloading. The default value is `false`.  When set to `true` the source 
Velocimacro library for an invoked Velocimacro will be checked for changes, and 
reloaded if necessary.  This allows you to change and test Velocimacro 
libraries without having to restart your application or servlet container, just 
like you can with regular templates. This mode only works when caching is 
<i>off</i> in the resource loaders (e.g. `file.resource.loader.cache = false` 
). This feature is intended for development, not for production.
+
+Please note than when two templates each define a macro with the same name, 
you either need `velocimacro.permissions.allow.inline.local.scope` or 
`velocimacro.permissions.allow.inline.to.replace.global` to be set to true for 
each template to use its own macro version.
+
+## Getting Literal
+
+VTL uses special characters, such as *$* and *#*, to do its work, so some 
added care should be taken where using these characters in your templates. This 
section deals with escaping these characters.
+
+### Currency
+
+There is no problem writing "I bought a 4 lb. sack of potatoes at the farmer's 
market for only $2.50!" As mentioned, a VTL identifier always begins with an 
upper- or lowercase letter, so $2.50 would not be mistaken for a reference.
+
+### Escaping Valid VTL References
+
+Cases may arise where you do not want to have a reference rendered by 
Velocity. *Escaping* special characters is the best way to output VTL's special 
characters in these situations, and this can be done using the backslash ( *\* 
) character <i>when those special characters are part of a valid VTL 
reference</i>.
+
+    :::velocity
+    #set( $email = "foo" )
+    $email
+
+If Velocity encounters  a reference in your VTL template to *$email*, it will 
search the Context for a corresponding value. Here the output will be *foo*, 
because *$email* is defined. If *$email* is not defined, the output will be 
*$email*.
+
+Suppose that *$email* is defined (for example, if it has the value *foo*), and 
that you want to output *$email*. There are a few ways of doing this, but the 
simplest is to use the escape character. Here is a demonstration:
+
+    :::velocity
+    ## The following line defines $email in this template:
+    #set( $email = "foo" )
+    $email
+    \$email
+
+renders as
+
+    foo
+    $email
+
+If, for some reason, you need a backslash before either line above, you can do 
the following:
+
+    :::velocity
+    ## The following line defines $email in this template:
+    #set( $email = "foo" )
+    \\$email
+    \\\$email
+
+which renders as
+
+    \foo
+    \$email
+
+Note that the *\* character bind to the *$* from the left. The bind-from-left 
rule causes *\\\$email* to render as *\$email*. Compare these examples to those 
in which *$email* is not defined.
+
+    :::velocity
+    $email
+    \$email
+    \\$email
+    \\\$email
+
+renders as
+
+    $email
+    \$email
+    \\$email
+    \\\$email
+
+Notice Velocity handles references that are defined differently from those 
that have not been defined. Here is a set directive that gives *$foo* the value 
*gibbous*.
+
+    :::velocity
+    #set( $foo = "gibbous" )
+    $moon = $foo
+
+The output will be: *$moon = gibbous* -- where *$moon* is output as a literal 
because it is undefined and *gibbous* is output in place of *$foo*.
+
+### Escaping Invalid VTL References
+
+Sometimes Velocity has trouble parsing your template when it encounters an 
"invalid reference" that you never intended to be a reference at all. 
*Escaping* special characters is, again, the best way to handle these 
situations, but in these situations, the backslash will likely fail you.  
Instead of simply trying to escape the problematic `$` or `#`, you should 
probably just replace this:
+
+    :::velocity
+    ${my:invalid:non:reference}
+
+with something like this
+
+    :::velocity
+    #set( $D = '$' )
+    ${D}{my:invalid:non:reference}
+
+You can, of course, put your `$` or `#` string directly into the context from 
your java code (e.g. `context.put("D","$");`) to avoid the extra #set() 
directive in your template(s).  Or, if you are using 
[VelocityTools](/tools/devel), you can just use the EscapeTool like this:
+
+    :::velocity
+    ${esc.d}{my:invalid:non:reference}
+
+Escaping of both valid and invalid VTL directives is handled in much the same 
manner; this is described in more detail in the Directives section.
+
+### Escaping VTL Directives
+
+VTL directives can be escaped with the backslash character ("\") in a manner 
similar to valid VTL references.
+
+    :::velocity
+    ## #include( "a.txt" ) renders as <contents of a.txt>
+    #include( "a.txt" )
+    
+    ## \#include( "a.txt" ) renders as #include( "a.txt" )
+    \#include( "a.txt" )
+    
+    ## \\#include ( "a.txt" ) renders as \<contents of a.txt>
+    \\#include ( "a.txt" )
+
+Extra care should be taken when escaping VTL directives that contain multiple 
script elements in a single directive (such as in an if-else-end statements). 
Here is a typical VTL if-statement:
+
+    :::velocity
+    #if( $jazz )
+        Vyacheslav Ganelin
+    #end
+
+If *$jazz* is true, the output is
+
+    Vyacheslav Ganelin
+
+If *$jazz* is false, there is no output. Escaping script elements alters the 
output. Consider the following case:
+
+    :::velocity
+    \#if( $jazz )
+        Vyacheslav Ganelin
+    \#end
+
+This causes the directives to be escaped, but the rendering of *$jazz* 
proceeds as normal.  So, if *$jazz* is true, the output is
+
+    #if( true )
+         Vyacheslav Ganelin
+     #end
+
+Suppose backslashes precede script elements that are legitimately escaped:
+
+    :::velocity
+    \\#if( $jazz )
+       Vyacheslav Ganelin
+    \\#end
+
+In this case, if *$jazz* is true, the output is
+
+    \ Vyacheslav Ganelin
+    \
+
+To understand this, note that the `#if( arg ) ` when ended by a newline 
(return) will omit the newline from the output. Therefore, the body of the 
`#if()` block follows the first '\', rendered from the '\\' preceding the 
`#if()`. The last \ is on a different line than the text because there is a 
newline after 'Ganelin', so the final \\, preceding the `#end` is part of the 
body of the block.
+
+If *$jazz* is false, the output is
+
+    \
+
+Note that things start to break if script elements are not properly escaped.
+
+    :::velocity
+    \\\#if( $jazz )
+        Vyacheslave Ganelin
+    \\#end
+
+Here the *#if* is escaped, but there is an *#end* remaining; having too many 
endings will cause a parsing error.
+
+## VTL: Formatting Issues
+
+Although VTL in this user guide is often displayed with newlines and 
whitespaces, the VTL shown below
+
+    :::velocity
+    #set( $imperial = ["Munetaka","Koreyasu","Hisakira","Morikune"] )
+    #foreach( $shogun in $imperial )
+        $shogun
+    #end
+
+is equally valid as the following snippet that Geir Magnusson Jr. posted to 
the Velocity user mailing list to illustrate a completely unrelated point:
+
+    :::velocity
+    Send me #set($foo=["$10 and ","a pie"])#foreach($a in $foo)$a#end please.
+
+Velocity's default behaviour is to gobble up excess whitespace. The preceding 
directive can be written as:
+
+    :::velocity
+    Send me
+    #set( $foo = ["$10 and ","a pie"] )
+    #foreach( $a in $foo )
+    $a
+    #end
+    please.
+
+or as
+
+    :::velocity
+    Send me
+    #set($foo       = ["$10 and ","a pie"])
+                     #foreach           ($a in $foo )$a
+             #end please.
+
+In each case the output will be the same. Please note that it's possible to 
configure Velocity with other space gobbling behaviors.
+
+## Other Features and Miscellany
+
+### Math
+
+Velocity has a handful of built-in mathematical functions that can be used in 
templates with the *set* directive. The following equations are examples of 
addition, subtraction, multiplication and division, respectively:
+
+    :::velocity
+    #set( $foo = $bar + 3 )
+    #set( $foo = $bar - 4 )
+    #set( $foo = $bar * 6 )
+    #set( $foo = $bar / 2 )
+
+When a division operation is performed between two integers, the result will 
be an integer, as the fractional portion is discarded. Any remainder can be 
obtained by using the modulus (*%*) operator.
+
+    :::velocity
+    #set( $foo = $bar % 5 )
+
+### Range Operator
+
+The range operator can be used in conjunction with *#set* and *#foreach* 
statements. Useful for its ability to produce an object array containing 
integers, the range operator has the following construction:
+
+    :::velocity
+    [n..m]
+
+Both *n* and *m* must either be or produce integers. Whether *m* is greater 
than or less than *n* will not matter; in this case the range will simply count 
down. Examples showing the use of the range operator as provided below:
+
+    :::velocity
+    First example:
+    #foreach( $foo in [1..5] )
+    $foo
+    #end
+    
+    Second example:
+    #foreach( $bar in [2..-2] )
+    $bar
+    #end
+    
+    Third example:
+    #set( $arr = [0..1] )
+    #foreach( $i in $arr )
+    $i
+    #end
+    
+    Fourth example:
+    [1..3]
+
+Produces the following output:
+
+    First example:
+    1 2 3 4 5
+    
+    Second example:
+    2 1 0 -1 -2
+    
+    Third example:
+    0 1
+    
+    Fourth example:
+    [1..3]
+
+Note that the range operator only produces the array when used in conjunction 
with *#set* and *#foreach* directives, as demonstrated in the fourth example.
+
+Web page designers concerned with making tables a standard size, but where 
some will not have enough data to fill the table, will find the range operator 
particularly useful.
+
+### Advanced Issues: Escaping and !
+
+When a reference is silenced with the *!* character and the *!* character 
preceded by an *\* escape character, the reference is handled in a special way. 
Note the differences between regular escaping, and the special case where *\* 
precedes *!* follows it:
+
+    :::velocity
+    #set( $foo = "bar" )
+    $\!foo
+    $\!{foo}
+    $\\!foo
+    $\\\!foo
+
+This renders as:
+
+    $!foo
+    $!{foo}
+    $\!foo
+    $\\!foo
+
+Contrast this with regular escaping, where *\* precedes *$*:
+
+    :::velocity
+    \$foo
+    \$!foo
+    \$!{foo}
+    \\$!{foo}
+
+This renders as:
+
+    $foo
+    $!foo
+    $!{foo}
+    \bar
+
+
+### Velocimacro Miscellany
+
+This section is a mini-FAQ on topics relating to Velocimacros.  This section 
will change over time, so it's worth checking for new information from time to 
time.
+
+Note : Throughout this section, 'Velocimacro' will commonly be abbreviated as 
'VM'.
+
+#### Can I use a directive or another VM as an argument to a VM?
+
+Example : `#center( #bold("hello") )`
+
+No.  A directive isn't a valid argument to a directive, and for most practical 
purposes, a VM is a directive.
+
+*However...*, there are things you can do. One easy solution is to take 
advantage of the fact that 'doublequote' (") renders its contents. So you could 
do something like
+
+    :::velocity
+    #set($stuff = "#bold('hello')" )
+    #center( $stuff )
+
+You can save a step...
+
+    :::velocity
+    #center( "#bold( 'hello' )" )
+
+Please note that in the latter example the arg is evaluated <i>inside</i> the 
VM, not at the calling level.  In other words, the argument to the VM is passed 
in in its entirety and evaluated within the VM it was passed into. This allows 
you to do things like :
+
+    :::velocity
+    #macro( inner $foo )
+      inner : $foo
+    #end
+    
+    #macro( outer $foo )
+       #set($bar = "outerlala")
+       outer : $foo
+    #end
+    
+    #set($bar = 'calltimelala')
+    #outer( "#inner($bar)" )
+
+Where the output is
+
+    Outer : inner : outerlala
+
+because the evaluation of the "#inner($bar)" happens inside #outer(), so the 
$bar value set inside #outer() is the one that's used.
+
+This is an intentional and jealously guarded feature - args are passed 'by 
name' into VMs, so you can hand VMs things like stateful references such as
+
+    :::html+velocity
+    #macro( foo $color )
+      <tr bgcolor="$color"><td>Hi</td></tr>
+      <tr bgcolor="$color"><td>There</td></tr>
+    #end
+    
+    #foo( $bar.rowColor() )
+
+And have rowColor() called repeatedly, rather than just once.  To avoid that, 
invoke the method outside of the VM, and pass the value into the VM.
+
+    :::velocity
+    #set($color = $bar.rowColor())
+    #foo( $color )
+
+#### Can I register Velocimacros via #parse() ?
+
+**Yes! This became possible in Velocity 1.6.**
+
+If you are using an earlier version, your Velocimacros must be defined before 
they are first used in a template.  This means that your #macro() declarations 
should come before using the Velocimacros.
+
+This is important to remember if you try to #parse() a template containing 
inline #macro() directives.  Because the #parse() happens at runtime, and the 
parser decides if a VM-looking element in the template is a VM at parsetime, 
#parse()-ing a set of VM declarations won't work as expected. To get around 
this, simply use the `velocimacro.library` facility to have Velocity load your 
VMs at startup.
+
+
+#### What is Velocimacro Autoreloading?
+
+There is a property, meant to be used in <i>development</i>, not production :
+
+    `velocimacro.library.autoreload`
+
+which defaults to false.  When set to true *along with*
+
+
+    `<type>.resource.loader.cache = false`
+
+(where <type> is the name of the resource loader that you are using, such as 
'file') then the Velocity engine will automatically reload changes to your 
Velocimacro library files when you make them, so you do not have to dump the 
servlet engine (or application) or do other tricks to have your Velocimacros 
reloaded.
+
+Here is what a simple set of configuration properties would look like.
+
+    file.resource.loader.path = templates
+    file.resource.loader.cache = false
+    velocimacro.library.autoreload = true
+
+Don't keep this on in production.
+
+### String Concatenation
+
+A common question that developers ask is *How do I do String concatenation?  
Is there any analogue to the '+' operator in Java?*.
+
+To do concatenation of references in VTL, you just have to 'put them 
together'.  The context of where you want to put them together does matter, so 
we will illustrate with some examples.
+
+In the regular 'schmoo' of a template (when you are mixing it in with regular 
content) :
+
+    :::velocity
+    #set( $size = "Big" )
+    #set( $name = "Ben" )
+
+    The clock is $size$name.
+
+and the output will render as 'The clock is BigBen'. For more interesting 
cases, such as when you want to concatenate strings to pass to a method, or to 
set a new reference, just do
+
+    :::velocity
+    #set( $size = "Big" )
+    #set( $name = "Ben" )
+
+    #set($clock = "$size$name" )
+
+    The clock is $clock.
+
+Which will result in the same output. As a final example, when you want to mix 
in 'static' strings with your references, you may need to use 'formal 
references' :
+
+    :::velocity
+    #set( $size = "Big" )
+    #set( $name = "Ben" )
+
+    #set($clock = "${size}Tall$name" )
+
+    The clock is $clock.
+
+Now the output is 'The clock is BigTallBen'. The formal notation is needed so 
the parser knows you mean to use the reference '$size' versus '$sizeTall' which 
it would if the '{}' weren't there.
+
+## Feedback
+
+If you encounter any mistakes in this manual or have other feedback related to 
the Velocity User Guide, please email the [Velocity developers 
list](mailto:[email protected]). Thanks!


Reply via email to