[CONF] Confluence Changes in the last 24 hours
This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Aries (http://cwiki.apache.org/confluence/display/ARIES) Pages - AriesTrader edited by jbohn (11:16 PM) http://cwiki.apache.org/confluence/display/ARIES/AriesTrader Blog Sample edited by zoe (04:56 PM) http://cwiki.apache.org/confluence/display/ARIES/Blog+Sample Apache Camel (http://cwiki.apache.org/confluence/display/CAMEL) Pages - User Guide edited by rubytuesdaydono (06:26 PM) http://cwiki.apache.org/confluence/display/CAMEL/User+Guide Camel 2.3.0 Release edited by davsclaus (04:11 PM) http://cwiki.apache.org/confluence/display/CAMEL/Camel+2.3.0+Release Load Balancer edited by davsclaus (12:17 PM) http://cwiki.apache.org/confluence/display/CAMEL/Load+Balancer Apache Geronimo Project Management (http://cwiki.apache.org/confluence/display/GMOxPMGT) Pages - Geronimo 2.1.5 Release Status edited by rwonly (01:51 AM) http://cwiki.apache.org/confluence/display/GMOxPMGT/Geronimo+2.1.5+Release+Status OFBiz (Open For Business) Project Open Wiki (http://cwiki.apache.org/confluence/display/OFBIZ) Pages - Export service using REST edited by snowch (09:49 PM) http://cwiki.apache.org/confluence/display/OFBIZ/Export+service+using+REST OpenJPA (http://cwiki.apache.org/confluence/display/openjpa) Pages - Enhancement with Maven edited by drwoods (04:49 PM) http://cwiki.apache.org/confluence/display/openjpa/Enhancement+with+Maven Apache Qpid (http://cwiki.apache.org/confluence/display/qpid) Pages - AMQP Distributed Transaction Classes (C++) edited by g...@redhat.com (10:09 AM) http://cwiki.apache.org/confluence/pages/viewpage.action?pageId=14812230 Apache River (http://cwiki.apache.org/confluence/display/RIVER) Pages - Vote for Apache River 2.1.2 Incubation Release created by pfirmst (09:55 AM) http://cwiki.apache.org/confluence/display/RIVER/2010/03/10/Vote+for+Apache+River+2.1.2+Incubation+Release Comments http://cwiki.apache.org/confluence/display/RIVER/Index (1) Apache Struts 2 Plugin Registry (http://cwiki.apache.org/confluence/display/S2PLUGINS) Pages - Struts2-EJB3-Plugin created by agrael (06:23 AM) http://cwiki.apache.org/confluence/display/S2PLUGINS/Struts2-EJB3-Plugin Apache Sling Website (http://cwiki.apache.org/confluence/display/SLINGxSITE) Pages - Manipulating Content - The SlingPostServlet (servlets.post) edited by vramdal (11:22 AM) http://cwiki.apache.org/confluence/display/SLINGxSITE/Manipulating+Content+-+The+SlingPostServlet+%28servlets.post%29 Apache Tuscany Docs 2.x (http://cwiki.apache.org/confluence/display/TUSCANYxDOCx2x) Pages - Running OASIS Spec Tests in a OSGi environment edited by lrese...@apache.org (07:58 PM) http://cwiki.apache.org/confluence/display/TUSCANYxDOCx2x/Running+OASIS+Spec+Tests+in+a+OSGi+environment Apache MINA Vysper (http://cwiki.apache.org/confluence/display/VYSPER) Pages - Sources created by paliwalash...@gmail.com (02:53 PM) http://cwiki.apache.org/confluence/display/VYSPER/Sources License created by paliwalash...@gmail.com (02:53 PM) http://cwiki.apache.org/confluence/display/VYSPER/License Mailing List created by paliwalash...@gmail.com (02:52 PM) http://cwiki.apache.org/confluence/display/VYSPER/Mailing+List Team created by paliwalash...@gmail.com (02:51 PM) http://cwiki.apache.org/confluence/display/VYSPER/Team Developer Guide created by paliwalash...@gmail.com (02:51 PM) http://cwiki.apache.org/confluence/display/VYSPER/Developer+Guide Issue Tracking created by paliwalash...@gmail.com (02:50 PM) http://cwiki.apache.org/confluence/display/VYSPER/Issue+Tracking Downloads created by paliwalash...@gmail.com (02:49 PM) http://cwiki.apache.org/confluence/display/VYSPER/Downloads Apache Wookie (http://cwiki.apache.org/confluence/display/WOOKIE) Pages - Embedding Wookie Widgets in other Applications edited by scottbw (10:48 PM) http://cwiki.apache.org/confluence/display/WOOKIE/Embedding+Wookie+Widgets+in+other+Applications Downloading and Installing Wookie edited by r
svn commit: r921702 - /struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ValidatorSupport.java
Author: lukaszlenart Date: Thu Mar 11 06:32:05 2010 New Revision: 921702 URL: http://svn.apache.org/viewvc?rev=921702&view=rev Log: Solved XW-737 - do not set defaultMessage with null or with empty message Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ValidatorSupport.java Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ValidatorSupport.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ValidatorSupport.java?rev=921702&r1=921701&r2=921702&view=diff == --- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ValidatorSupport.java (original) +++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ValidatorSupport.java Thu Mar 11 06:32:05 2010 @@ -19,13 +19,16 @@ import com.opensymphony.xwork2.util.Text import com.opensymphony.xwork2.util.ValueStack; import com.opensymphony.xwork2.util.logging.Logger; import com.opensymphony.xwork2.util.logging.LoggerFactory; -import com.opensymphony.xwork2.validator.*; +import com.opensymphony.xwork2.validator.DelegatingValidatorContext; +import com.opensymphony.xwork2.validator.ShortCircuitableValidator; +import com.opensymphony.xwork2.validator.ValidationException; +import com.opensymphony.xwork2.validator.Validator; +import com.opensymphony.xwork2.validator.ValidatorContext; +import org.apache.commons.lang.StringUtils; import java.util.ArrayList; import java.util.List; -import org.apache.commons.lang.StringUtils; - /** * Abstract implementation of the Validator interface suitable for subclassing. @@ -52,7 +55,9 @@ public abstract class ValidatorSupport i } public void setDefaultMessage(String message) { -this.defaultMessage = message; +if (StringUtils.isNotEmpty(message)) { +this.defaultMessage = message; +} } public String getDefaultMessage() {
[OSS Bamboo] Struts 2 SVN - Main Build (Java 6) build 1033 has FAILED (0 tests failed). Change made by lukaszlenart
--- STRUTS-MAINJ6-1033 failed. --- Code has been updated by lukaszlenart. No failed tests found, a possible compilation error. http://opensource.bamboo.atlassian.com/browse/STRUTS-MAINJ6-1033/ -- Code Changes -- lukaszlenart (921702): >Solved XW-737 - do not set defaultMessage with null or with empty message -- Error Summary -- [INFO] [ERROR] BUILD ERROR [INFO] [INFO] Failed to resolve artifact. No versions are present in the repository for the artifact with a range [1.7,) commons-digester:commons-digester:jar:null from the specified remote repositories: apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository), central (https://m2proxy.atlassian.com/repository/public) Path to dependency: 1) org.apache.struts:struts2-jasperreports-plugin:jar:2.2.0-SNAPSHOT 2) jasperreports:jasperreports:jar:3.1.2 [INFO] [INFO] For more information, run Maven with the -e switch -- This message is automatically generated by Atlassian Bamboo
[OSS Bamboo] Struts 2 SVN - Main Build build 1269 has FAILED (0 tests failed). Change made by lukaszlenart
--- STRUTS-MAIN-1269 failed. --- Code has been updated by lukaszlenart. No failed tests found, a possible compilation error. http://opensource.bamboo.atlassian.com/browse/STRUTS-MAIN-1269/ -- Code Changes -- lukaszlenart (921702): >Solved XW-737 - do not set defaultMessage with null or with empty message -- Error Summary -- [INFO] [ERROR] BUILD ERROR [INFO] [INFO] Failed to resolve artifact. No versions are present in the repository for the artifact with a range [1.7,) commons-digester:commons-digester:jar:null from the specified remote repositories: apache.snapshots (http://people.apache.org/repo/m2-snapshot-repository), central (https://m2proxy.atlassian.com/repository/public) Path to dependency: 1) org.apache.struts:struts2-jasperreports-plugin:jar:2.2.0-SNAPSHOT 2) jasperreports:jasperreports:jar:3.1.2 [INFO] [INFO] For more information, run Maven with the -e switch -- This message is automatically generated by Atlassian Bamboo