Velocity Engine

Docs

Developers

Community

Translations (outdated)

Velocity News Feed

Changes Report

Release History

Version Date Description
1.7 2010-11-20
1.7-beta1 2010-04-10
1.6.4 2010-05-10
1.6.3 2009-12-16
1.6.2 In Subversion
1.6.1 2008-12-15
1.6 2008-12-01
1.6-beta2 2008-10-26
1.6-beta1 2008-09-22
1.5 2007-01-28
1.5-beta2 2006-11-24
1.5-beta1 2006-09-13

Release 1.7 - 2010-11-20

Type Changes Bye
Fixed quotes escaping so that doubling single quotes only works when enclosing quotes are single quotes (and same behaviour for double quotes) . Fixes VELOCITY-785. Thanks to Jarkko Viinamäki. cbrisson
Add access to template and directive debugging info via $<scope>.info. . nbubna
LogManager now catches UnsupportedOperationExceptions during LogChute init. . Fixes VELOCITY-766. nbubna
Ensure that DataSourceResourceLoader closes PreparedStatements. . Fixes VELOCITY-760. Thanks to Jarkko Viinamäki. nbubna
Mark optional dependencies as such in OSGi bundle manifest. . Fixes VELOCITY-753. Thanks to Matt Ryall. nbubna

Release 1.7-beta1 - 2010-04-10

Type Changes Bye
Add support for OSGi-ready manifests in build/release tasks. . Fixes VELOCITY-694. nbubna
When comparing parameter types during method mapping, make Object always less specific than other types. . Fixes VELOCITY-753. nbubna
Avoid NPEs in case of bad #foreach config. . Fixes VELOCITY-759. Thanks to Rachid. nbubna
Use LinkedHashMap to maintain order of VTL-created maps. . Fixes VELOCITY-755. nbubna
Treat \ as non-special in string literals, except when specifying unicode sequences. . Fixes VELOCITY-555. Thanks to Jarkko Viinamäki. nbubna
Allow escaping of quotes (single or double) within string literals by doubling them ("" or ''). . Fixes VELOCITY-555. Thanks to Jarkko Viinamäki. nbubna
Give #parse better log/exception messages and give IncludeEventHandler a chance to handle null #parse args. . Fixes VELOCITY-758. Thanks to Jarkko Viinamäki. nbubna
Fix $.x parsing failures (particularly helpful for jQuery users). . Fixes VELOCITY-754,VELOCITY-729. Thanks to Jarkko Viinamäki. nbubna
Log Velocimacro additions at debug level, as in pre-1.6 versions. . Fixes VELOCITY-744. nbubna
Add removeDirective(name) and loadDirective(classname) methods to allow runtime changes to the directive set. . Fixes VELOCITY-742. Thanks to Jarkko Viinamäki. nbubna
Throw an informative VelocityException when #define is given no parameter (instead of an ArrayIndexOutOfBoundsException). . Fixes VELOCITY-727. Thanks to Jarkko Viinamäki. nbubna
Throw an informative VelocityException when #parse is given no args (instead of an NPE). . Fixes VELOCITY-728. Thanks to Jarkko Viinamäki. nbubna
Add directive.if.tostring.nullcheck config switch to allow improved performance for those who do not need to check whether $foo.toString() returns null when doing #if( $foo ). . Fixes VELOCITY-731. Thanks to Jorgen Rydenius. nbubna
Changed #stop to a directive implementation (get it out of the parser) and allow it to accept a message as an argument to be written to the logs for debugging purposes. . Fixes VELOCITY-704. nbubna
Change the scoping behavior of Velocity, keeping it optional (everything global scoped by default) but now providing an explicit namespace in content-containing directives (like macros, #foreach, #parse, etc.) in which references that should stay local may be kept. This is accompanied by numerous related changes, including: <ul> <li>A Scope reference can now be automatically made available within each content directive: <ul> <li>$template in Template.merge and #parse content</li> <li>$macro in #macro</li> <li>$foreach in #foreach</li> <li>$evaluate in #evaluate or Velocity.evaluate(...) content</li> <li>$define in #define</li> <li>$&lt;amacro&gt; in #@&lt;amacro&gt; (where &lt;amacro&gt; is the name of a macro being called with a body)</li> </ul> </li> <li>For performance and compatibility these are all off by default, *except* for $foreach. The others may be enabled by setting a velocity property like: <br/><code>macro.provide.scope.control = true</code></li> <li>When scopes of the same type are nested make the parent Scope available through the child (e.g. $foreach.parent or $foreach.topmost).</li> <li>When a Scope reference overrides an existing reference that is not a Scope, make it available through the Scope (e.g. $foreach.replaced).</li> <li>Made #break work in any of the above scopes to exit the most immediate one, unless a different scope is provided as an argument (e.g. #break($macro) or #break($foreach.topmost)).</li> <li>Deprecated $velocityCount; please use $foreach.count or $foreach.index.</li> <li>Deprecated $velocityHasNext; please use $foreach.hasNext, $foreach.first or $foreach.last</li> <li>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 ).</li> <li>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 ).</li> </ul> All of the deprecated features will be removed in Velocity 2.0. . Fixes VELOCITY-704. nbubna
Calling #set on a macro argument (for which a #set-able reference was passed) will no longer propagate the new value to the original reference, but merely set the value of the macro argument reference. This was an obscure, infrequently used feature and was decided to be more problematic and unpredictable than useful. . Fixes VELOCITY-681. nbubna
In strict mode attempts to render references that evaluate to null will throw an exception. In the user wishes to suppress the exception and render nothing then the reference can be proceeded with '$!' as in $!foo. . Fixes VELOCITY-688. byron
The non default VelocityEngine construtors now do not initialize the runtime system so that properties may be set after construction. Also fixes an Initialization race condition. . Fixes VELOCITY-673. byron
Make velocimacro.arguments.strict=true work with block macros. . Fixes VELOCITY-685. Thanks to Jarkko Viinamäki. nbubna
Added a property for changing escape behavior such that putting a forward slash before a reference or macro always escapes the reference or macro and absorbs the forward slash regardless if the reference or macro is defined. . Fixes VELOCITY-623. byron
Fix StringIndexOutOfBoundsException caused by #[[##x]]# (line comment on same line as end of textblock). . Fixes VELOCITY-676. Thanks to Jarkko Viinamäki. nbubna
Fix NPE caused by #@foo (w/o #end) in template. . Fixes VELOCITY-675. Thanks to Jarkko Viinamäki. nbubna
Minor performance tweaks based on Findbugs findings . Fixes VELOCITY-668. Thanks to Jarkko Viinamäki. byron
Pre 1.6 behavior of specifying #macro without parenthesis would throw a VelocityException has been restored. . Fixes VELOCITY-667. byron
Add support for calling velocimacros with body content by prefixing the macro name with @. (e.g. #macro( foo )Here is $bodyContent#end #@foo()any valid VTL here#end) The $bodyContent reference may be renamed via a velocimacro.body.reference setting in your velocity.properties. . Fixes VELOCITY-666. Thanks to Jarkko Viinamaki. nbubna
Added #[[this is included in output but not parsed]]# syntax to replace and deprecate the much more limited #literal directive (which required parse-able content). . Fixes VELOCITY-661. Thanks to Jarkko Viinamaki. nbubna
Re-implement #stop so that it stops template execution and rendering. This Also addresses a performance bottleneck detected in the old implementation. #stop is a general use directive now, and not just for debugging. . Fixes VELOCITY-663. byron
Reduce performance bottleneck with the referenceInsert event handler call . Fixes VELOCITY-662. byron
Better error reporting when toString() throw an exception when testing an #if conditional. For example #if($foo) . Fixes VELOCITY-656. byron
Added bracketed index syntax, $foo[0], or #set($foo[0] = 1) . Fixes VELOCITY-406. byron
Removed java.lang.Exception from throws clause of Velocity and VelocityEngine API. Also removed IOException so that all method calls use unchecked exceptions. . Fixes VELOCITY-659. byron
Removed obsolete WebMacro conversion tool and experimental Veltag (which has been replaced by VelocityViewTag from VelocityTools). . nbubna

Release 1.6.4 - 2010-05-10

Type Changes Bye
Fix bug in #parse that threw an NPE when IncludeEventHandler returned null and inline macros are kept local. . Fixes VELOCITY-717. Thanks to Jarkko Viinamaki. nbubna
Fix double-checked locking in RuntimeInstance's optional lazy-init for Java 1.5+. Users of older JREs in multi-threaded environments MUST manually call init() on any thread-shared Velocity singleton or VelocityEngine instances to avoid race conditions. New auto-init feature is only supported on Java 1.5+. . Fixes VELOCITY-750. nbubna
Fix 100% CPU loop hang under simultaneous HashMap calls in ClassMap due to classic bug in Sun's implementation. Now uses ConcurrentHashMap when available and Hashtable otherwise. . Fixes VELOCITY-718. nbubna

Release 1.6.3 - 2009-12-16

Type Changes Bye
Add directive.if.tostring.nullcheck config switch to match past performance for those who do not need to check whether $foo.toString() returns null when doing #if( $foo ). . Fixes VELOCITY-731. Thanks to Jorgen Rydenius. nbubna

Release 1.6.2 - In Subversion

Type Changes Bye
Fix obscure caching problem in multiple resource loader situations where resources may exist in more than one loader and appear and disappear from loaders. . Fixes VELOCITY-702. nbubna
Fix old regression from 1.4 in supporting methods declared as abstract in a public class but implemented in a non-public class. . Fixes VELOCITY-701. nbubna
Fix problem with FileResourceLoader's resourceExists() when configured w/multiple paths. . Fixes VELOCITY-693. nbubna
Fix ClassMap introspection bug introduced in 1.5, where public super-interface methods implemented in protected or private classes were unreachable. . Fixes VELOCITY-689. nbubna
Fix regression in proxying of macro argument #set calls. Note that in 1.7, calling #set on a macro argument (for which a #set-able reference was passed) will not propagate the new value to the original reference, but merely set the value of the macro argument reference. . Fixes VELOCITY-681. nbubna
Fix loss of inline macros when #evaluate is used. . Fixes VELOCITY-682. nbubna
Fix name of sources jar for maven deployment. . Fixes VELOCITY-554. Thanks to Adrian Tarau. nbubna
Pre 1.6 behavior of specifying #macro without parenthesis would throw a VelocityException has been restored. . Fixes VELOCITY-667. byron
Better error reporting when toString() throw an exception when testing an #if conditional. For example #if($foo) . Fixes VELOCITY-656. byron
Fix $velocityHasNext so that it works in nested foreach blocks. . Fixes VELOCITY-658. Thanks to Jarkko Viinamäki. byron
Throw an exception in strict mode when >=, <=, < or > comparisons can't be made. . Fixes VELOCITY-645. byron
Fix $velocityHasNext so it is not always true. . Fixes VELOCITY-657. cbrisson

Release 1.6.1 - 2008-12-15

Type Changes Bye
Correct/enhance template name reporting for #include and #parse. . Fixes VELOCITY-654. Thanks to Byron Foster. nbubna
Removed redundant error message in ASTReference. . Fixes VELOCITY-653. Thanks to Byron Foster. nbubna
Fix limitation in new macro implementation that resisted #set calls to change references defined as arguments for the macro. . Fixes VELOCITY-615. Thanks to Steve O'Hara. nbubna
Fix vararg bugs when calling overloaded methods like get(String,String,Object[]) and get(String,List). (e.g. in VelocityStruts' MessageTool) . Fixes VELOCITY-651. Thanks to Stephan Schmid. nbubna

Release 1.6 - 2008-12-01

Type Changes Bye
Fix NPE when null value is passed to array/vararg method. . Fixes VELOCITY-649. Thanks to Byron Foster. nbubna
Track template name in Node, to get proper template name in the exception message when a reference in a macro causes that exception. . Fixes VELOCITY-644. Thanks to Byron Foster. nbubna
Update Finnish and Spanish User Guide sections on division operation. . Fixes VELOCITY-352. Thanks to Gonzalo Diethelm, Joni Salonen. nbubna
Fix classpath for XMLApp example. . Fixes VELOCITY-641. Thanks to Will Glass-Husain. nbubna
Fix references to Oro dependency to make it clear that it is only necessary for certain reference event handlers. . Fixes VELOCITY-617. Thanks to Adrian Tarau. nbubna
Remove old Anakia/Texen docs and examples. . Fixes VELOCITY-640. Thanks to Will Glass-Husain. nbubna
Fix bug in vararg support where an array passed to a vararg method was being wrapped in another array. . Fixes VELOCITY-642. Thanks to Ilkka Priha. nbubna
Locked down versions for reporting plugins in Maven POM. . Fixes VELOCITY-638. Thanks to Benjamin Bentmann. nbubna
Add Maven-Ant tasks for installing and deploying Maven artifacts, including previously missing source and javadoc jars (VELOCITY-554). . Fixes VELOCITY-466. Thanks to Adrian Tarau. nbubna

Release 1.6-beta2 - 2008-10-26

Type Changes Bye
Fix User Guide's Table of Contents anchor links. . Fixes VELOCITY-632. Thanks to Sebb. nbubna
Fix parser bug that prevented references from immediately preceding #set directives. . Fixes VELOCITY-631. Thanks to Byron Foster. nbubna
Revert change made for VELOCITY-285, as it broke pass-by-name nature of macro arguments. . Fixes VELOCITY-630. Thanks to Byron Foster. nbubna
Fix line numbers in string literals. . Fixes VELOCITY-629. Thanks to Byron Foster. nbubna
Fix line number for exceptions with body of #foreach directive. . Fixes VELOCITY-627. Thanks to Byron Foster. nbubna
Log full macro stack when a RuntimeException occurs in a template. . Fixes VELOCITY-626. Thanks to Byron Foster. nbubna
Format template and line/column numbers consistently in error and log messages. . Fixes VELOCITY-622. Thanks to Byron Foster. nbubna
Don't override pre-configured log levels for JdkLogChute or Log4JLogChute. . Fixes VELOCITY-624. Thanks to Byron Foster. nbubna
Add optional 'runtime.references.strict' property that has Velocity throw exceptions when it encounters undefined references or velocimacros in a template. . Fixes VELOCITY-618. Thanks to Byron Foster. nbubna
Inlude Maven Ant tasks jar in downloads and add support for downloading from Maven2 repos. . Fixes VELOCITY-554. Thanks to Adrian Tarau. nbubna
Fix problem with single backslash in interpolated (double-quoted) strings. . Fixes VELOCITY-585. Thanks to Jon Seymour. nbubna
Fix escaping of bracketed directives (e.g. \#{if}($foo)$bar\#{end}). . Fixes VELOCITY-616. Thanks to Alik. nbubna

Release 1.6-beta1 - 2008-09-22

Type Changes Bye
Uberspectors chaining . Fixes VELOCITY-588. Thanks to Vincent Massol, Sergiu Dumitriu. cbrisson
Add ability to set a connection timeout for URLResourceLoader. . Fixes VELOCITY-585. Thanks to Tim White. nbubna
Make it easier to override ResourceFactory.getResource(...) in ResourceManagerImpl. . Fixes VELOCITY-227. Thanks to Charles Morehead. nbubna
Fix BooleanPropertyExecutor to recognize "public Boolean isFoo" properties. . Fixes VELOCITY-544. Thanks to Adam Bishop, Jarkko Viinamaki. nbubna
Add a separate resourceExists(String name) method to ResourceLoader(s) to improve performance. . Fixes VELOCITY-439. Thanks to Tassos Bassoukos, Henning Schmiedehausen. nbubna
Fix missing # and $ characters within #literal() directive output. . Fixes VELOCITY-355. Thanks to Geoffrey Lowney, Dan Ertman. nbubna
Add support for static utility classes: context.put("math", Math.class) -> $math.sin(0) . Fixes VELOCITY-102. Thanks to Juozas Baliuka, Adrian Tarau, Jim Seach. nbubna
Add #define directive set an unrendered block of VTL as a reference. (e.g. #define( $foo )Hello, $bar!#end #set( $bar = 'world') $foo -> Hello, world!) . Fixes VELOCITY-174. Thanks to Andrew Tetlaw. nbubna
Add #break directive to exit #foreach loops early. . Fixes VELOCITY-612. Thanks to Jarkko Viinamaki. nbubna
Fixed major performance issues with Velocimacros. . Fixes VELOCITY-607. Thanks to Jarkko Viinamaki. nbubna
Removed many, various performance bottlenecks and concurrency issues. (Also see VELOCITY-595) . Fixes VELOCITY-606. Thanks to Jarkko Viinamaki. nbubna
New VTL syntax $velocityHasNext within #foreach loops . Fixes VELOCITY-600. Thanks to Adrian Tarau. nbubna
Multi-line comments in macros were rendering extra *# when evaluated. . Fixes VELOCITY-580. Thanks to Marnix van Bochove. wglass
Have VelocityCharStream use an exponential buffer expansion rate. . Fixes VELOCITY-570. Thanks to Ronald Klop. cbrisson
Prevent exception due to simultaneous rendering of macros. . Fixes VELOCITY-566. Thanks to Etienne Massip. wglass
New VTL syntax allows arrays to be treated like fixed length lists. . Fixes VELOCITY-533. Thanks to Christopher Schultz. nbubna
Added support for varargs in method calls. . Fixes VELOCITY-534. nbubna
Prevent NPE when template is parsed simultaneously by multiple users. (may apply only to macros). . Fixes VELOCITY-536. Thanks to Lei Gu, Dima Tkach. wglass
Users can now include libraries of macros with #parse in a template. . Fixes VELOCITY-362. Thanks to Supun Kamburugamuva. wglass
Macro libraries can now be selected programatically when merging templates. . Fixes VELOCITY-529. Thanks to Supun Kamburugamuva. wglass
Catch IllegalArgumentException when invoking method. . Fixes VELOCITY-452. Thanks to Alexey Panchenko. wglass
Fixed parse error for map definitions ending with a reference. . Fixes VELOCITY-538. wglass
Add new property velocimacro.max.depth which limits max macro calling depth. . Fixes VELOCITY-297. Thanks to Supun Kamburugamuva. wglass
Add ability to add directives programmatically . Fixes VELOCITY-547. Thanks to Adam Heath. wglass
Allow user directives to have no content. . Fixes VELOCITY-548. Thanks to Adam Heath. wglass
IncludeNotFound event handler was displaying "not found" template. . Fixes VELOCITY-551. Thanks to Michiel Toneman. wglass
Fix StringResourceLoader to make it possible to use more than one loader per VM. . Fixes VELOCITY-541. nbubna
Make unicode encoding work in velocity templates. . Fixes VELOCITY-520. Thanks to Stepan Koltsov. nbubna
Add a ServletLogChute that allows logging through the servlet API. Ported from the Velocity Tools project. . nbubna
Add a CommonsLogLogChute that allows logging through commons-logging. . nbubna
Deprecate integrated texen and anakia, factor it out into separate jars. . wglass
Added new directive #evaluate() to dynamically evaluate VTL. . Fixes VELOCITY-509. wglass

Release 1.5 - 2007-01-28

Type Changes Bye
Fix to SecureUberspector to work properly with #foreach and iterators. . Fixes VELOCITY-516. Thanks to Vincent Massol. wglass
Make FileResourceLoader unicode aware to allow skipping over BOM markers like those created by Windows Notepad. This is a workaround for a Java bug, where Java itself does not recognize the UTF-8 BOM as defined by the unicode standard. . Fixes VELOCITY-191. Thanks to Aki Nieminen. henning

Release 1.5-beta2 - 2006-11-24

Type Changes Bye
New StringResourceLoader can retrieve templates from repository of in-memory Strings. . Fixes VELOCITY-183. Thanks to Eelco Hillenius. henning
RuntimeInstance.getProperty now returns value set with RuntimeInstance.setProperty, even before initialization. . Fixes VELOCITY-493. Thanks to Claude Brisson. wglass
When macros have incorrect number of arguments, if property "velocimacro.arguments.strict" is set to true a ParseErrorException will be thrown. . Fixes VELOCITY-435. wglass
MethodInvocationException now contains line, column, template name allowing application to produce more useful error messages. . Fixes VELOCITY-414. Thanks to Matthijs Lambooy. henning
Fixed race condition in template retrieval that caused macros to fail under simultaneous load. . Fixes VELOCITY-24. henning
New event handler InvalidReferenceHandler allows application to catch invalid references. Sample implementation collects them in list and optionally throws exception. . Fixes VELOCITY-423. wglass
New, optional SecureIntrospector prohibits methods that involve manipulation of classes, classloaders or reflection objects. Use this introspector to secure Velocity against a risk of template writers using reflection to perform malicious acts. . Fixes VELOCITY-179. wglass
Removed Serializable from InternalContextBase, because one of the members is not serializable anyway so this never worked (Found by Findbugs). . Fixes VELOCITY-458. henning
Add an additional pair of Executors that are smart about Map. . Fixes VELOCITY-449. Thanks to Alexey Panchenko. henning
Method caching now uses consistent keys. . Fixes VELOCITY-453. Thanks to Alexey Panchenko. wglass
Change the meaning of localscope for macros to allow access to references from calling context. . Fixes VELOCITY-459. Thanks to Stephen Haberman. wglass
Add a test for the DataSourceResource Loader. . henning
Fix a problem in the DataSourceResource Loader, removing a potential security issue with SQL injection. . henning
Build now creates the MD5 and SHA1 checksums for archives and jars. . henning
Fix a number of issues reported by running FindBugs on the Velocity source. . henning

Release 1.5-beta1 - 2006-09-13

Type Changes Bye
Stop references from calling object.toString() twice. . Fixes VELOCITY-438. Thanks to Stephen Haberman. wglass
Pass through all runtime exceptions. Among other benefits, this allows plugins to throw a runtime exception to signify an application level problem in the calling application. . Fixes VELOCITY-429. Thanks to . wglass
When #include was followed by #parse with the same file name, a ClassCastException was thrown. . Fixes VELOCITY-98. Thanks to Michal Chmielewski. wglass
Wrapped exceptions now have Cause property set on JDK 1.4. (note that Velocity continues to run under JDK 1.3). . Fixes VELOCITY-425. Thanks to Llewellyn Falco. wglass
When Velocity is initialized, default.properties stream was not being closed. This made it difficult to undeploy webapps on Windows with Velocity unpacked. . Fixes VELOCITY-418. Thanks to Jason Weinstein. wglass
Upgraded to latest commons collection, fixing problem with non-recognition of configuration file encoding in rare circumstances. . Fixes VELOCITY-151. Thanks to Kirk Wolf. wglass
The Introspector could throw a NPE when a parameter to an overloaded method was null. . Fixes VELOCITY-370. Thanks to Reggie Riser. wglass
If toString() returned null in a silent reference then "null" was displayed. . Fixes VELOCITY-381. Thanks to Llwellyn Falco and Dan Powell. wglass
Fixed bug in which empty body for #if (e.g. #if(some expression)#end caused ParseException. . Fixes VELOCITY-359. Thanks to . wglass
Added javacc task to build.xml simplifying modification process for editing syntax files. . Fixes VELOCITY-222. Thanks to . wglass
Velocity Engine was throwing NPE when used without a call to init(). Now gives a more meaningful exception message. . Fixes VELOCITY-374. Thanks to . wglass
Fixed problem with Uberspect Info class being created incorrectly. Added template name to Info allowing better error reporting. . Fixes VELOCITY-404. Thanks to Llewellyn Falco. wglass
Numerous improvements to the documentation. Reorganized table of contents, moved community content to the Wiki, added article on using Velocity in web applications. . Fixes . Thanks to . wglass
When testing objects in VTL for equality, if both objects are a number, use number equality. If both objects are the same class, use the equals method. New behavior: If objects are different classes, compare the String representation of both objects rather than logging an error. . Fixes VELOCITY-350. Thanks to . wglass
Velocity would give error when last line of file was a ## comment. . Fixes VELOCITY-272. Thanks to . wglass
Added method to retrieve application attributes. . Fixes VELOCITY-412. Thanks to Malcolm Edgar. wglass
Velocity now searches in the current thread's context classloader before the system classloader for all templates loaded with the ClasspathResourceLoader and for all user-defined ResourceLoaders, introspectors, event handlers, etc. A typical use for this is to have Velocity in the application container classpath while keeping templates and plugins in the webapp classpath. . Fixes VELOCITY-196. Thanks to . wglass
#set now sets references to null when required. For backwards compatibility this must be enabled by setting the configuration key directive.set.null.allowed to true. . Fixes . Thanks to Thomas Veith. wglass
New optional event handler that escapes all references. Regular expressions can be used to configure which references have HTML, JavaScript, SQL, or XML escaping. . Fixes . Thanks to . wglass
New optional event handler implementation that forces #parse / #include to stay in same directory as parent template. . Fixes VELOCITY-154. Thanks to . wglass
New event handler to modify behavior of #parse / #include. . Fixes VELOCITY-260. Thanks to . wglass
FileResourceLoader now accepts absolute path when configured to accept it. . Fixes VELOCITY-144. Thanks to . wglass
String containing "##" was treated as unterminated String. . Fixes VELOCITY-126. Thanks to . wglass
Spruced up Geir's old URLResourceLoader and promoted it from the whiteboard to the main distribution. . Fixes VELTOOLS-55. Thanks to Charles Harvey. nbubna
Throw Runtime exceptions from nodes up the chain. . Fixes VELOCITY-424. Thanks to Malcom Edgar. henning
Revert the split between org.apache.velocity.runtime.parser.node.Node and org.apache.velocity.runtime.parser.Node. The parser now only uses ...parser.node.Node because this change broke custom directives. . Fixes VELOCITY-426. Thanks to Malcom Edgar. henning
Made a lot of internal logging upgrades including: Deprecated LogSystem interface and replaced it (and all its implementations) with a new LogChute interface and implementations, added getLog() to RuntimeServices (and all its friends) to improve on and replace its now deprecated logging methods, added a JdkLogChute as a 3rd default option for those using JDK 1.4+, and added a StandardOutLogChute as final resort if other LogChute inits fail. See JIRA issues VELOCITY-403, VELOCITY-166, VELOCITY-403,VELOCITY-166,VELOCITY-78, VELOCITY-157, VELOCITY-159, VELOCITY-193. . Fixes VELOCITY-403. Thanks to . nbubna
Removed all J2EE build tasks. Now automatically detects availability of javax.sql.Datasource (in JDK 1.4+) and builds DatasourceResourceLoader when allowed. . Fixes VELOCITY-401. Thanks to . henning
ant build now downloads the required dependency jars from ibiblio.org . Fixes . Thanks to . henning
Unified template name, line and column number reporting for ParserErrorException . Fixes VELOCITY-373. Thanks to Malcolm Edgar. henning
Dropped the non-functional Velocity compiler. . Fixes . Thanks to . henning
Started separating out the JavaCC generated parts of the Velocity Parser. Not yet complete to avoid user visible changes. Scheduled to be completed for 2.0 . Fixes . Thanks to . henning
Contributed a maven build for Velocity . Fixes . Thanks to . henning
Reworked the ant build to product only two jars: velocity.jar and velocity-dep.jar. . Fixes . Thanks to . henning
Removed the Configuration class and all methods that references it. This class was deprecated since Velocity 1.1 and was scheduled to be gone for Velocity 1.3 or 1.4. Now it was finally removed in 1.5. . Fixes . Thanks to . henning
Added support for decimal numbers. . Fixes VELOCITY-242. Thanks to Peter Romianowski. wglass
MethodInvocationException now consistently thrown (previously was hidden when in parameter to Velocimacro). . Fixes VELOCITY-284. Thanks to Mike Rettig. wglass
Fixed problem in which foreach loop would fail to call overloaded method. . Fixes VELOCITY-109. Thanks to . wglass
Removed ERROR level log message "Can't find 'VM_global_library.vm'". . Fixes VELOCITY-86. Thanks to . wglass
Anakia now generates consistent line endings based on platform. Requires upgrade to JDom 1.0. . Fixes VELOCITY-348. Thanks to . wglass
Anakia can now be pre-loaded with custom context values from an optional XML file. . Fixes VELOCITY-190. Thanks to Peter Ryan. wglass
Directives can now be delimited with curly braces, for example #if($condition)something#{else}otherthing#{end}. . Fixes VELOCITY-43. Thanks to . wglass
Nulls now handled appropriate within #foreach. . Fixes VELOCITY-254. Thanks to Christopher Reck. wglass
Upgraded JavaCC to version 3.2, providing JDK 1.5 compatibility. (Older version used keyword 'enum' which is reserved in JDK 1.5). . Fixes VELOCITY-324. Thanks to Shinobu Kuwai. wglass
DatasourceResourceLoader now allows injection of Datasource, allowing it to be used in Inversion of Control (IOC) frameworks. . Fixes VELOCITY-267. Thanks to Matt Raible . wglass
#stop now works properly. . Fixes VELOCITY-218. Thanks to . wglass
ClasspathResourceLoader now searches ContextClassLoader for template. . Fixes VELOCITY-196. Thanks to Charles Oliver Nutter. wglass
Removed use of Log4J's deprecated Category and Priority classes in favor of the corresponding and supported Logger and Level. To update, replace necessary references, and Category.getInstance() with Logger.getLogger(). . Fixes VELOCITY-164. Thanks to . dlr
New Map literal syntax. . Fixes VELOCITY-152. Thanks to James Taylor. wglass
Removed the long-deprecated Log4JLogSystem. Never fear, SimpleLog4JLogSystem remains. . Fixes . Thanks to . dlr
Enhanced the implementation of ResourceCacheImpl using Jakarta Commons Collections LRUMap class. The previous greedy implementation did not set an upper bound for the cache size, meaning that cached resources were never relinquished (a possible memory leak). You can continue to use that behavior by setting the resource.manager.cache.size for your cache to less than 1. . Fixes . Thanks to . dlr
Took dan's modified SimpleLog4jLogSystem, and renamed Log4JLogSystem, and put back old version of SimpleLog4JLogSystem, as deprecated. That way we can move forward with an up-to-date version that uses Logger, and for one release, be backwards compatile for the Category-using log4j crowd. . Fixes . Thanks to Daniel Rall. geirm
Deprecated org.apache.velocity.tools.VelocityFormatter class in favor of the various format classes in the Velocity Tools library. . Fixes . Thanks to . wglass
Deprecated the org.apache.velocity.servlet.VelocityServlet class in favor of org.apache.velocity.tools.view.servlet.VelocityViewServlet from the Velocity Tools library. Servlet interaction is more a core competency of the Velocity Tools package than of Velocity's core. . Fixes . Thanks to . dlr
Fix to BaseTestCase as suggested by Will Glass-Husain to handle line endings . Fixes VELOCITY-185. Thanks to wglass. geirm
Parameterized cache and mod time control in TexenTask based on patch from Henning. . Fixes . Thanks to henning.
Fix to DatasourceResourceLoader - stop using the old Runtime singleton as would leak a little memory for each instance of VelocityEngine created. Hunted down by Will Glass-Husain. . Fixes VELOCITY-150. Thanks to wglass. geirm
SimplePool now removes elements from pool on a get(). NOTE : Previously, it left the reference to the object in the pool. . Fixes VELOCITY-161. Thanks to wglass. geirm
Fixes problem with single line comment embedded in a multi-line comment. . Fixes VELOCITY-61. Thanks to wglass. geirm
Change for VELOCITY-221 and partial for VELOCITY-148, allowing newlines in directives. . Fixes VELOCITY-221. Thanks to . geirm
Change to finish request VELOCITY-148, allowing '+' as a string concat. We'll have to see how the community likes it. . Fixes VELOCITY-148. Thanks to . geirm
Didn't allow formal reference notation as first arg to foreach. . Fixes VELOCITY-239. Thanks to . geirm
To make using w/ XML easier allow alternative logical operators 'and', 'or', 'lt', 'gt', 'le', 'ge', 'eq', 'ne', 'not'. . Fixes . Thanks to . geirm
Allow newlines in strings. . Fixes . Thanks to . geirm
Tiny fix to VelocityWriter to prevent a NPE if someone passes it a null . Fixes VELOCITY-148. Thanks to . geirm
Anakia changes to accomodate finalization of JDOM API. In AnakiaJDOMFactory, AnakiaTask, and OutputWrapper . Fixes . Thanks to . geirm
Added template, line and column info to MIEs thrown by ASTMethod . Fixes . Thanks to . geirm