[CONF] Confluence Changes in the last 24 hours
Apache ActiveMQ CPP Pages Page: ActiveMQ-CPP 3.7.1 Release edited by Timothy Bish[06:57 PM] (view changes) Apache Camel Pages Blog post: We welcome two new committers and a new PMC member created by Christian Mueller[08:46 PM] Page: Camel 2.12.0 Release edited by Jonathan Anstey[07:14 PM] (view changes) Page: Yammer edited by Jonathan Anstey[07:11 PM] (view changes) Page: Netty edited by Claus Ibsen[04:07 PM] (view changes) Page: Try Catch Finally edited by Claus Ibsen[03:32 PM] (view changes) Page: Articles edited by Claus Ibsen[07:21 AM] (view changes) Page: Component List edited by Jonathan Anstey[03:10 AM] (view changes) Apache Open Climate Workbench Pages Page: UI Demo created by MIchael Joyce[08:17 PM] Apache Cloudstack Pages Page: set vmware cluster max.limit basedon HV version edited by prashant kumar mishra[12:36 PM] (view changes) Page: VMwareDVS Integration with Cloudstack Test Execution Results edited by Sailaja Mada[11:45 AM] (view changes) Page: configurable settingto use linked clones or full clones on VMware edited by prashant kumar mishra[09:31 AM] (view changes) Apache Chemistry Comments Page: OpenCMIS how-to-build has a new comment [ Anonymous] Community Development Pages Page: Proposal for Apache BloodHound - Anoop Nayak created by Anoop Nayak[02:29 PM] Page: Proposal For Tuscany - Akhil Anil created by Akhil Anil[05:31 AM] Apache Connectors Framework Comments Page: Books has a new comment [ Anonymous] Page: REST API proposal has a new comment [ Anonymous] Page: Debugging Connections has a new comment
svn commit: r1502429 - /struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Form.java
Author: lukaszlenart Date: Fri Jul 12 05:45:46 2013 New Revision: 1502429 URL: http://svn.apache.org/r1502429 Log: WW-4139 Reverts client side validation to old behaviour Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Form.java Modified: struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Form.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Form.java?rev=1502429&r1=1502428&r2=1502429&view=diff == --- struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Form.java (original) +++ struts/struts2/trunk/core/src/main/java/org/apache/struts2/components/Form.java Fri Jul 12 05:45:46 2013 @@ -276,9 +276,8 @@ public class Form extends ClosingUIBean String formActionValue = findString(action); ActionMapping mapping = actionMapper.getMappingFromActionName(formActionValue); String actionName = mapping.getName(); -String methodName = mapping.getMethod(); -List actionValidators = actionValidatorManager.getValidators(actionClass, actionName, methodName); +List actionValidators = actionValidatorManager.getValidators(actionClass, actionName); List validators = new ArrayList(); findFieldValidators(name, actionClass, actionName, actionValidators, validators, "");