Revision: 308
Author: tfenne
Date: 2006-05-10 16:18:52 -0700 (Wed, 10 May 2006)
ViewCVS: http://svn.sourceforge.net/stripes/?rev=308&view=rev
Log Message:
-----------
Fix for STS-193: acceptcharset attribute on form tag cannot be set.
Modified Paths:
--------------
trunk/stripes/src/net/sourceforge/stripes/tag/FormTag.java
Modified: trunk/stripes/src/net/sourceforge/stripes/tag/FormTag.java
===================================================================
--- trunk/stripes/src/net/sourceforge/stripes/tag/FormTag.java 2006-05-10
22:51:03 UTC (rev 307)
+++ trunk/stripes/src/net/sourceforge/stripes/tag/FormTag.java 2006-05-10
23:18:52 UTC (rev 308)
@@ -36,7 +36,7 @@
/**
* <p>Form tag for use with the Stripes framework. Supports all of the HTML
attributes applicable
- * to the form tag, with one exception: due to Java method naming restrictions
accept-charset is
+ * to the form tag, with one exception: due to JSP attribute naming
restrictions accept-charset is
* specified as acceptcharset (but will be rendered correctly in the output
HTML).</p>
*
* @author Tim Fennell
@@ -116,8 +116,8 @@
public void setAccept(String accept) { set("accept", accept); }
public String getAccept() { return get("accept"); }
- public void setAcceptCharset(String acceptCharset) {
set("accept-charset", acceptCharset); }
- public String getAcceptCharset() { return get("accept-charset"); }
+ public void setAcceptcharset(String acceptCharset) {
set("accept-charset", acceptCharset); }
+ public String getAcceptcharset() { return get("accept-charset"); }
public void setEnctype(String enctype) { set("enctype", enctype); }
public String getEnctype() { return get("enctype"); };
This was sent by the SourceForge.net collaborative development platform, the
world's largest Open Source development site.
-------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Stripes-development mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/stripes-development