aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorClaude Brisson <cbrisson@apache.org>2016-09-06 16:24:47 +0000
committerClaude Brisson <cbrisson@apache.org>2016-09-06 16:24:47 +0000
commit13192cf1cfea0e6f04377a81db7826a08f037e40 (patch)
treead7eae0c31d1c59b83396cc9679df537088c12f7 /src
parent701d956e8a20853106c5bc284df70f0e441b0e43 (diff)
downloadapache-velocity-engine-13192cf1cfea0e6f04377a81db7826a08f037e40.tar.gz
update changelog for space gobbling
git-svn-id: https://svn.apache.org/repos/asf/velocity/engine/trunk@1759455 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r--src/changes/changes.xml18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 0c1e6ff0..9defc502 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -28,17 +28,29 @@
<release version="2.0" date="In Subversion">
<action type="add" dev="cbrisson">
+ Add a configurable space gobbling feature, to control indentation in the generated code.
+ <br/>
+ Possible values for the 'space.gobbling' configuration key:
+ <ul>
+ <li><code>none</code> : no space gobbling at all</li>
+ <li><code>bc</code> : Velocity 1.x backward compatible space gobbling</li>
+ <li><code>lines</code> (the default) : gobbles whitespaces and endline from lines containing a single VTL directive</li>
+ <li><code>structured</code> : like 'lines', but also fixes indentation in children text blocks</li>
+ </ul>
+ </action>
+
+ <action type="add" dev="cbrisson">
added a new pluggable ConversionHandler class which, by default, converts method arguments as needed between main basic Java data types (boolean, numbers and strings)
</action>
-
+
<action type="add" dev="cbrisson">
added a runtime.string.interning option to trigger Java String interning on or off
</action>
-
+
<action type="add" dev="cbrisson" issue="VELOCITY-841" due-to="Jarkko Viinamäki">
applied Jarkko memory-saving patch which frees tokens while parsing
</action>
-
+
<action type="fix" dev="cbrisson" issue="VELOCITY-843">
support $array.empty, as for $list.empty
</action>