svn commit: r1208528 - /struts/struts2/branches/STRUTS_3_X/
Author: mcucchiara Date: Wed Nov 30 17:17:18 2011 New Revision: 1208528 URL: http://svn.apache.org/viewvc?rev=1208528&view=rev Log: Add new branch Added: struts/struts2/branches/STRUTS_3_X/ (props changed) - copied from r1208526, struts/struts2/trunk/ Propchange: struts/struts2/branches/STRUTS_3_X/ -- reviewboard:url = https://reviews.apache.org Propchange: struts/struts2/branches/STRUTS_3_X/ -- --- svn:ignore (added) +++ svn:ignore Wed Nov 30 17:17:18 2011 @@ -0,0 +1,8 @@ +.classpath +.project +.settings +*.ipr +*.iml +*.iws +target +.idea Propchange: struts/struts2/branches/STRUTS_3_X/ -- --- svn:mergeinfo (added) +++ svn:mergeinfo Wed Nov 30 17:17:18 2011 @@ -0,0 +1,2 @@ +/struts/struts2/branches/STRUTS_2_2_1_1:1037870-1053416 +/struts/struts2/tags/STRUTS_2_2_1:965062-1037869
svn commit: r1208734 [2/2] - in /struts/struts2/branches/STRUTS_3_X: apps/mailreader/src/main/java/mailreader2/ apps/showcase/src/main/java/org/apache/struts2/showcase/ajax/ apps/showcase/src/main/jav
Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/main/java/org/apache/struts2/xwork2/validator/AnnotationValidationConfigurationBuilder.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/main/java/org/apache/struts2/xwork2/validator/AnnotationValidationConfigurationBuilder.java?rev=1208734&r1=1208733&r2=1208734&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/main/java/org/apache/struts2/xwork2/validator/AnnotationValidationConfigurationBuilder.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/main/java/org/apache/struts2/xwork2/validator/AnnotationValidationConfigurationBuilder.java Wed Nov 30 19:49:40 2011 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2.validator; +package org.apache.struts2.xwork2.validator; -import com.opensymphony.xwork2.validator.annotations.*; +import org.apache.struts2.xwork2.validator.annotations.*; import java.lang.annotation.Annotation; import java.lang.reflect.Method; Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/ActionSupportTest.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/ActionSupportTest.java?rev=1208734&r1=1208733&r2=1208734&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/ActionSupportTest.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/ActionSupportTest.java Wed Nov 30 19:49:40 2011 @@ -13,9 +13,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2; +package org.apache.struts2.xwork2; -import com.opensymphony.xwork2.util.ValueStack; +import org.apache.struts2.xwork2.util.ValueStack; import java.util.ArrayList; import java.util.HashMap; Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/AnnotatedTestBean.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/AnnotatedTestBean.java?rev=1208734&r1=1208733&r2=1208734&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/AnnotatedTestBean.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/AnnotatedTestBean.java Wed Nov 30 19:49:40 2011 @@ -13,11 +13,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2; +package org.apache.struts2.xwork2; -import com.opensymphony.xwork2.validator.annotations.IntRangeFieldValidator; -import com.opensymphony.xwork2.validator.annotations.RequiredStringValidator; -import com.opensymphony.xwork2.validator.annotations.Validations; +import org.apache.struts2.xwork2.validator.annotations.IntRangeFieldValidator; +import org.apache.struts2.xwork2.validator.annotations.RequiredStringValidator; +import org.apache.struts2.xwork2.validator.annotations.Validations; import java.util.Date; Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/conversion/impl/AnnotationXWorkConverterTest.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/conversion/impl/AnnotationXWorkConverterTest.java?rev=1208734&r1=1208733&r2=1208734&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/conversion/impl/AnnotationXWorkConverterTest.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/conversion/impl/AnnotationXWorkConverterTest.java Wed Nov 30 19:49:40 2011 @@ -13,14 +13,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2.conversion.impl; +package org.apache.struts2.xwork2.conversion.impl; -import com.opensymphony.xwork2.*; -import com.opensymphony.xwork2.test.AnnotationUser; -import com.opensymphony.xwork2.test.ModelDrivenAnnotationAction2; -import com.opensymphony.xwork2.util.Bar; -import com.opensymphony.xwork2.util.ValueStack; -import com.opensymphony.xwork2.util.reflection.ReflectionContextState; +import org.apache.struts2.xwork2.*; +import org.apache.struts2.xwork2.test.AnnotationUser; +import org.apache.struts2.xwork2.tes
[CONF] Confluence Changes in the last 24 hours
This is a daily summary of all recent changes in Confluence. - Updated Spaces: - Apache Camel (https://cwiki.apache.org/confluence/display/CAMEL) Pages - Camel Configuration Utilities edited by dvaleri (08:02 PM) https://cwiki.apache.org/confluence/display/CAMEL/Camel+Configuration+Utilities FTP2 edited by dvaleri (07:58 PM) https://cwiki.apache.org/confluence/display/CAMEL/FTP2 Cometd edited by dvaleri (07:58 PM) https://cwiki.apache.org/confluence/display/CAMEL/Cometd Apache DeltaSpike (https://cwiki.apache.org/confluence/display/DeltaSpike) Pages - Index created by gpetracek (05:38 PM) https://cwiki.apache.org/confluence/display/DeltaSpike/Index Apache Flume (https://cwiki.apache.org/confluence/display/FLUME) Pages - Flume Plugins edited by danirayan (01:36 PM) https://cwiki.apache.org/confluence/display/FLUME/Flume+Plugins Apache Jackrabbit (https://cwiki.apache.org/confluence/display/JCR) Pages - Jackrabbit Team edited by jukka (03:23 PM) https://cwiki.apache.org/confluence/display/JCR/Jackrabbit+Team Apache Kafka (https://cwiki.apache.org/confluence/display/KAFKA) Pages - Writing a Driver for Kafka created by d...@datadoghq.com (07:45 AM) https://cwiki.apache.org/confluence/display/KAFKA/Writing+a+Driver+for+Kafka OFBiz End-User Documentation (https://cwiki.apache.org/confluence/display/OFBENDUSER) Comments https://cwiki.apache.org/confluence/display/OFBENDUSER/How+to+delete+tuples+added+to+test+a+setup (1) Apache OpenOffice.org Community (https://cwiki.apache.org/confluence/display/OOOUSERS) Pages - (Draft) Public Statement on Email Forwarding created by robweir (04:00 PM) https://cwiki.apache.org/confluence/display/OOOUSERS/%28Draft%29+Public+Statement+on+Email+Forwarding OpenOffice.org Migration Status edited by robweir (08:54 AM) https://cwiki.apache.org/confluence/display/OOOUSERS/OpenOffice.org+Migration+Status Apache Wicket (https://cwiki.apache.org/confluence/display/WICKET) Pages - Form control labels edited by dangermouse (05:56 AM) https://cwiki.apache.org/confluence/display/WICKET/Form+control+labels Apache Struts 2 Documentation (https://cwiki.apache.org/confluence/display/WW) Pages - Struts3Planning edited by lukaszlenart (01:48 PM) https://cwiki.apache.org/confluence/display/WW/Struts3Planning Comments https://cwiki.apache.org/confluence/display/WW/Struts3Planning (2) https://cwiki.apache.org/confluence/display/WW/RestfulActionMapper (1) - Users - david_j_pear...@uk.ibm.com https://cwiki.apache.org/confluence/display/~david_j_pear...@uk.ibm.com lightguard.jp https://cwiki.apache.org/confluence/display/~lightguard.jp Change your notification preferences: https://cwiki.apache.org/confluence/users/viewnotifications.action
svn commit: r1208981 [24/24] - in /struts/struts2/branches/STRUTS_3_X: apps/blank/src/main/java/example/ apps/blank/src/test/java/example/ apps/jboss-blank/src/main/java/example/ apps/jboss-blank/src/
Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RegexFieldValidatorTest.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RegexFieldValidatorTest.java?rev=1208981&r1=1208980&r2=1208981&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RegexFieldValidatorTest.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RegexFieldValidatorTest.java Thu Dec 1 07:18:07 2011 @@ -13,12 +13,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2.validator; +package org.apache.struts2.xwork2.validator; -import com.opensymphony.xwork2.ActionContext; -import com.opensymphony.xwork2.XWorkTestCase; -import com.opensymphony.xwork2.util.ValueStack; -import com.opensymphony.xwork2.validator.validators.RegexFieldValidator; +import org.apache.struts2.xwork2.ActionContext; +import org.apache.struts2.xwork2.XWorkTestCase; +import org.apache.struts2.xwork2.util.ValueStack; +import org.apache.struts2.xwork2.validator.validators.RegexFieldValidator; import java.util.List; Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RepopulateConversionErrorFieldValidatorSupportTest.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RepopulateConversionErrorFieldValidatorSupportTest.java?rev=1208981&r1=1208980&r2=1208981&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RepopulateConversionErrorFieldValidatorSupportTest.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/RepopulateConversionErrorFieldValidatorSupportTest.java Thu Dec 1 07:18:07 2011 @@ -13,14 +13,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2.validator; +package org.apache.struts2.xwork2.validator; -import com.opensymphony.xwork2.ActionContext; -import com.opensymphony.xwork2.ActionSupport; -import com.opensymphony.xwork2.XWorkTestCase; -import com.opensymphony.xwork2.mock.MockActionInvocation; -import com.opensymphony.xwork2.util.ValueStack; -import com.opensymphony.xwork2.validator.validators.RepopulateConversionErrorFieldValidatorSupport; +import org.apache.struts2.xwork2.ActionContext; +import org.apache.struts2.xwork2.ActionSupport; +import org.apache.struts2.xwork2.XWorkTestCase; +import org.apache.struts2.xwork2.mock.MockActionInvocation; +import org.apache.struts2.xwork2.util.ValueStack; +import org.apache.struts2.xwork2.validator.validators.RepopulateConversionErrorFieldValidatorSupport; import java.util.Map; Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/ShortRangeValidatorTest.java URL: http://svn.apache.org/viewvc/struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/ShortRangeValidatorTest.java?rev=1208981&r1=1208980&r2=1208981&view=diff == --- struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/ShortRangeValidatorTest.java (original) +++ struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/ShortRangeValidatorTest.java Thu Dec 1 07:18:07 2011 @@ -13,14 +13,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package com.opensymphony.xwork2.validator; +package org.apache.struts2.xwork2.validator; -import com.opensymphony.xwork2.ActionContext; -import com.opensymphony.xwork2.ActionProxy; -import com.opensymphony.xwork2.ValidationAware; -import com.opensymphony.xwork2.XWorkTestCase; -import com.opensymphony.xwork2.config.providers.MockConfigurationProvider; -import com.opensymphony.xwork2.config.providers.XmlConfigurationProvider; +import org.apache.struts2.xwork2.ActionContext; +import org.apache.struts2.xwork2.ActionProxy; +import org.apache.struts2.xwork2.ValidationAware; +import org.apache.struts2.xwork2.XWorkTestCase; +import org.apache.struts2.xwork2.config.providers.MockConfigurationProvider; +import org.apache.struts2.xwork2.config.providers.XmlConfigurationProvider; import java.util.HashMap; import java.util.List; Modified: struts/struts2/branches/STRUTS_3_X/xwork-core/src/test/java/org/apache/struts2/xwork2/validator/Simp