You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by cb...@apache.org on 2016/07/18 15:27:21 UTC

svn commit: r1753242 - in /velocity/site/production/engine/devel: changes.html dependencies.html developer-guide.html upgrading.html

Author: cbrisson
Date: Mon Jul 18 15:27:21 2016
New Revision: 1753242

URL: http://svn.apache.org/viewvc?rev=1753242&view=rev
Log:
[site] some doc updates (on prod)

Modified:
    velocity/site/production/engine/devel/changes.html
    velocity/site/production/engine/devel/dependencies.html
    velocity/site/production/engine/devel/developer-guide.html
    velocity/site/production/engine/devel/upgrading.html

Modified: velocity/site/production/engine/devel/changes.html
URL: http://svn.apache.org/viewvc/velocity/site/production/engine/devel/changes.html?rev=1753242&r1=1753241&r2=1753242&view=diff
==============================================================================
--- velocity/site/production/engine/devel/changes.html (original)
+++ velocity/site/production/engine/devel/changes.html Mon Jul 18 15:27:21 2016
@@ -316,8 +316,43 @@ h2:hover > .headerlink, h3:hover > .head
         <td>
           <img src="images/add.png"/>
         </td>
+        <td> MethodExceptionEventHandler now provide template location infos . Fixes <a href="https://issues.apache.org/jira/browse/VELOCITY-746">VELOCITY-746</a>. </td>
+        <td>cbrisson</td>
+      </tr>
+      <tr>
+        <td>
+          <img src="images/fix.png"/>
+        </td>
+        <td> Attach macros to their defining template. Also fixes VELOCITY-776. Thanks to Simon Kitching for the multithreading testcase. . Fixes <a href="https://issues.apache.org/jira/browse/VELOCITY-797">VELOCITY-797</a>. Thanks to Jarkko Viinamäki.</td>
+        <td>cbrisson</td>
+      </tr>
+      <tr>
+        <td>
+          <img src="images/fix.png"/>
+        </td>
+        <td> have #foreach honnor the Closeable interface on the iterator . Fixes <a href="https://issues.apache.org/jira/browse/VELOCITY-820">VELOCITY-820</a>. Thanks to Robert Fuller.</td>
+        <td>cbrisson</td>
+      </tr>
+      <tr>
+        <td>
+          <img src="images/fix.png"/>
+        </td>
+        <td> Don't leave 'initializing' to true if a problem occurs during initialization. . Fixes <a href="https://issues.apache.org/jira/browse/VELOCITY-804">VELOCITY-804</a>. Thanks to Felipe Maschio.</td>
+        <td>cbrisson</td>
+      </tr>
+      <tr>
+        <td>
+          <img src="images/add.png"/>
+        </td>
+        <td> Remove dependency upon commons-collections-3 (except at compile-time for deprecated methods and classes which are needed for backward compatibility), use our own ExtProperties object. . Fixes <a href="https://issues.apache.org/jira/browse/VELOCITY-790">VELOCITY-790</a>. </td>
+        <td>cbrisson</td>
+      </tr>
+      <tr>
+        <td>
+          <img src="images/add.png"/>
+        </td>
         <td> Add a first implementation for the JSR 223 standard scripting interface. . Fixes <a href="https://issues.apache.org/jira/browse/VELOCITY-735">VELOCITY-735</a>. Thanks to Dishara Wijewardana.</td>
-        <td>cbrusson</td>
+        <td>cbrisson</td>
       </tr>
       <tr>
         <td>

Modified: velocity/site/production/engine/devel/dependencies.html
URL: http://svn.apache.org/viewvc/velocity/site/production/engine/devel/dependencies.html?rev=1753242&r1=1753241&r2=1753242&view=diff
==============================================================================
--- velocity/site/production/engine/devel/dependencies.html (original)
+++ velocity/site/production/engine/devel/dependencies.html Mon Jul 18 15:27:21 2016
@@ -253,7 +253,7 @@ Velocity has a number of external jar de
 <td>Yes</td>
 <td>No</td>
 <td>No</td>
-<td></td>
+<td>Dependancy upon commons-collections-3.x is needed only by some deprecated classes and methods, so as to maintain backward compatibility, and will be dropped in a future version.</td>
 </tr>
 <tr>
 <td>commons-lang</td>
@@ -293,7 +293,7 @@ Velocity has a number of external jar de
 <td>No</td>
 <td>Yes</td>
 <td>No</td>
-<td></td>
+<td>Your application will need <em>one</em> SLF4J binding, see below</td>
 </tr>
 <tr>
 <td>servlet-api</td>

Modified: velocity/site/production/engine/devel/developer-guide.html
URL: http://svn.apache.org/viewvc/velocity/site/production/engine/devel/developer-guide.html?rev=1753242&r1=1753241&r2=1753242&view=diff
==============================================================================
--- velocity/site/production/engine/devel/developer-guide.html (original)
+++ velocity/site/production/engine/devel/developer-guide.html Mon Jul 18 15:27:21 2016
@@ -1007,7 +1007,7 @@ eventhandler.escape.sql.match = /sql.*/
 </blockquote>
 <p><code>resource.manager.cache.class</code></p>
 <blockquote>
-<p>Declares the class to be used for resource caching.  The current default is <code>org.apache.velocity.runtime.resource.ResourceCacheImpl</code>. When <code>resource.manager.defaultcache.size</code> is set to 0, then the default implementation is the standard java <code>ConcurrentHashMap</code>. Otherwise, a non-zero cache size  uses an LRU Map.  The default cache size is 89.  Note that the ConcurrentHashMap may be better at thread concurrency.</p>
+<p>Declares the class to be used for resource caching.  The current default is <code>org.apache.velocity.runtime.resource.ResourceCacheImpl</code>. When <code>resource.manager.defaultcache.size</code> is set to 0, then the default implementation is the standard Java <code>ConcurrentHashMap</code>. Otherwise, a non-zero cache size  uses an LRU Map.  The default cache size is 89.  Note that the ConcurrentHashMap may be better at thread concurrency.</p>
 </blockquote>
 <p><code>resource.manager.defaultcache.size</code></p>
 <blockquote>

Modified: velocity/site/production/engine/devel/upgrading.html
URL: http://svn.apache.org/viewvc/velocity/site/production/engine/devel/upgrading.html?rev=1753242&r1=1753241&r2=1753242&view=diff
==============================================================================
--- velocity/site/production/engine/devel/upgrading.html (original)
+++ velocity/site/production/engine/devel/upgrading.html Mon Jul 18 15:27:21 2016
@@ -242,6 +242,7 @@ h2:hover > .headerlink, h3:hover > .head
 </li>
 <li>The default encoding ('ISO-8859-1' in 1.x) is now read from the standard <code>file.encoding</code> Java system property.</li>
 <li>The <code>output.encoding</code> configuration property has been removed.</li>
+<li>the MethodException event handler now receives an additional argument providing template name and location infos.</li>
 </ul>
 <p>VTL Syntax changes:</p>
 <ul>