Author: hermanns
Date: Mon May 1 08:27:01 2006
New Revision: 398622
URL: http://svn.apache.org/viewcvs?rev=398622&view=rev
Log:
Form Tag needs accept-charset attribute
o added new attribute to Form, FormTag and form.ftl
o updated taglib.tld
o fixed dest dir property for ant xdoclet-taglib target
Issue Number: WW-1303
Modified:
incubator/webwork2/action/src/main/resources/template/ajax/form.ftl
Modified: incubator/webwork2/action/src/main/resources/template/ajax/form.ftl
URL:
http://svn.apache.org/viewcvs/incubator/webwork2/action/src/main/resources/template/ajax/form.ftl?rev=398622&r1=398621&r2=398622&view=diff
==============================================================================
--- incubator/webwork2/action/src/main/resources/template/ajax/form.ftl
(original)
+++ incubator/webwork2/action/src/main/resources/template/ajax/form.ftl Mon May
1 08:27:01 2006
@@ -30,6 +30,9 @@
<#if parameters.cssClass?exists>
class="${parameters.cssClass?html}"<#rt/>
</#if>
+<#if parameters.acceptcharset?exists>
+ accept-charset="${parameters.acceptcharset?html}"<#rt/>
+</#if>
<#if parameters.cssStyle?exists>
style="${parameters.cssStyle?html}"<#rt/>
</#if>