Return-Path: Delivered-To: apmail-velocity-commits-archive@locus.apache.org Received: (qmail 54088 invoked from network); 10 Dec 2007 19:32:00 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 10 Dec 2007 19:32:00 -0000 Received: (qmail 63406 invoked by uid 500); 10 Dec 2007 19:31:49 -0000 Delivered-To: apmail-velocity-commits-archive@velocity.apache.org Received: (qmail 63377 invoked by uid 500); 10 Dec 2007 19:31:49 -0000 Mailing-List: contact commits-help@velocity.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@velocity.apache.org Delivered-To: mailing list commits@velocity.apache.org Received: (qmail 63368 invoked by uid 99); 10 Dec 2007 19:31:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Dec 2007 11:31:49 -0800 X-ASF-Spam-Status: No, hits=-100.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 10 Dec 2007 19:31:36 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 804171A9832; Mon, 10 Dec 2007 11:31:39 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r603008 - in /velocity/tools/trunk/xdocs: generic.index.xml standalone.xml struts.userguide.xml view.index.xml Date: Mon, 10 Dec 2007 19:31:38 -0000 To: commits@velocity.apache.org From: nbubna@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20071210193139.804171A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: nbubna Date: Mon Dec 10 11:31:37 2007 New Revision: 603008 URL: http://svn.apache.org/viewvc?rev=603008&view=rev Log: fix links Modified: velocity/tools/trunk/xdocs/generic.index.xml velocity/tools/trunk/xdocs/standalone.xml velocity/tools/trunk/xdocs/struts.userguide.xml velocity/tools/trunk/xdocs/view.index.xml Modified: velocity/tools/trunk/xdocs/generic.index.xml URL: http://svn.apache.org/viewvc/velocity/tools/trunk/xdocs/generic.index.xml?rev=603008&r1=603007&r2=603008&view=diff ============================================================================== --- velocity/tools/trunk/xdocs/generic.index.xml (original) +++ velocity/tools/trunk/xdocs/generic.index.xml Mon Dec 10 11:31:37 2007 @@ -65,8 +65,8 @@
ValueParser
A tool to retrieve and parse String values pulled from a map. This provides - the basis for the ParameterParser in - VelocityView.
+ the basis for the ParameterParser in + VelocityView.
ListTool
A tool to help when working with arrays or Lists. This tool transparently handles both the same way.
Modified: velocity/tools/trunk/xdocs/standalone.xml URL: http://svn.apache.org/viewvc/velocity/tools/trunk/xdocs/standalone.xml?rev=603008&r1=603007&r2=603008&view=diff ============================================================================== --- velocity/tools/trunk/xdocs/standalone.xml (original) +++ velocity/tools/trunk/xdocs/standalone.xml Mon Dec 10 11:31:37 2007 @@ -59,8 +59,8 @@

Of course, if you are going to be working in a servlet environment and don't - want to create and configure tools yourself, then you should use a - VelocityView instance. + want to create and configure tools yourself, then you should use a + VelocityView instance.

Modified: velocity/tools/trunk/xdocs/struts.userguide.xml URL: http://svn.apache.org/viewvc/velocity/tools/trunk/xdocs/struts.userguide.xml?rev=603008&r1=603007&r2=603008&view=diff ============================================================================== --- velocity/tools/trunk/xdocs/struts.userguide.xml (original) +++ velocity/tools/trunk/xdocs/struts.userguide.xml Mon Dec 10 11:31:37 2007 @@ -145,7 +145,7 @@ to render the web application views in Struts applications.

Setup is almost identical to the standard - VelocityViewServlet installation, + VelocityViewServlet installation, please review that for more details. The extended VelocityLayoutServlet, or any custom extension, can also be used with Struts. (That particular servlet adds the ability to reuse shared html layout across multiple pages.)

Modified: velocity/tools/trunk/xdocs/view.index.xml URL: http://svn.apache.org/viewvc/velocity/tools/trunk/xdocs/view.index.xml?rev=603008&r1=603007&r2=603008&view=diff ============================================================================== --- velocity/tools/trunk/xdocs/view.index.xml (original) +++ velocity/tools/trunk/xdocs/view.index.xml Mon Dec 10 11:31:37 2007 @@ -33,7 +33,7 @@ using Velocity templates in the view layer. The project is designed with the Pull-MVC Model in mind and works well in conjunction with web application frameworks that act - as the controller (e.g. Struts), but can be used + as the controller (e.g. Struts), but can be used quite effectively on its own for those creating simpler applications.

Key features:

@@ -59,7 +59,7 @@

A typical application use-case is to provide the view rendering layer for a servlet-based web application framework. The - VelocityStruts subproject + VelocityStruts subproject uses the approach to bring Velocity templates to the Struts application framework.

@@ -192,7 +192,7 @@
  • application scoped tools will be instantiated only once and then reused for each request. Due to this, it is strongly encouraged that your application scoped tools be completely threadsafe. The MathTool - in the GenericTools section is a good example of tool meant to be application + in the GenericTools section is a good example of tool meant to be application scoped. If an application scoped tool implements ViewTool, then the javax.servlet.ServletContext for the webapp will be passed to its init(Object) method after it is instantiated.