You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by hl...@apache.org on 2007/09/17 05:17:51 UTC

svn commit: r576245 - /tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/validation.apt

Author: hlship
Date: Sun Sep 16 20:17:51 2007
New Revision: 576245

URL: http://svn.apache.org/viewvc?rev=576245&view=rev
Log:
TAPESTRY-1746: Input validation documentation includes an invalid template that results in a parser error

Modified:
    tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/validation.apt

Modified: tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/validation.apt
URL: http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/validation.apt?rev=576245&r1=576244&r2=576245&view=diff
==============================================================================
--- tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/validation.apt (original)
+++ tapestry/tapestry5/trunk/tapestry-core/src/site/apt/guide/validation.apt Sun Sep 16 20:17:51 2007
@@ -158,7 +158,7 @@
     <body>
         <h1>Please Login</h1>
 
-        <t:form>
+        <form t:id="form">
 
             <t:errors/>
 
@@ -169,7 +169,7 @@
             <input t:type="PasswordField" t:id="password" t:validate="required,minlength=3" size="30"/>
             <br/>
             <input type="submit" value="Login"/>
-        </t:form>
+        </form>
     </body>
 </html>
 +---+