svn commit: r398661 - in /incubator/webwork2/webapps: shopping-cart/src/main/webapp/WEB-INF/decorators/main.jsp showcase/src/main/webapp/WEB-INF/decorators/main.jsp

2006-05-01 Thread martinc
Author: martinc
Date: Mon May  1 11:25:39 2006
New Revision: 398661

URL: http://svn.apache.org/viewcvs?rev=398661&view=rev
Log:
Fix the last of the copyright notices.

Modified:

incubator/webwork2/webapps/shopping-cart/src/main/webapp/WEB-INF/decorators/main.jsp

incubator/webwork2/webapps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp

Modified: 
incubator/webwork2/webapps/shopping-cart/src/main/webapp/WEB-INF/decorators/main.jsp
URL: 
http://svn.apache.org/viewcvs/incubator/webwork2/webapps/shopping-cart/src/main/webapp/WEB-INF/decorators/main.jsp?rev=398661&r1=398660&r2=398661&view=diff
==
--- 
incubator/webwork2/webapps/shopping-cart/src/main/webapp/WEB-INF/decorators/main.jsp
 (original)
+++ 
incubator/webwork2/webapps/shopping-cart/src/main/webapp/WEB-INF/decorators/main.jsp
 Mon May  1 11:25:39 2006
@@ -138,7 +138,7 @@
 
 
 
-© Copyright 2005 OpenSymphony
+Copyright © 2005-06 The Apache Software Foundation.
 
 
 

Modified: 
incubator/webwork2/webapps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp
URL: 
http://svn.apache.org/viewcvs/incubator/webwork2/webapps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp?rev=398661&r1=398660&r2=398661&view=diff
==
--- 
incubator/webwork2/webapps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp 
(original)
+++ 
incubator/webwork2/webapps/showcase/src/main/webapp/WEB-INF/decorators/main.jsp 
Mon May  1 11:25:39 2006
@@ -86,7 +86,7 @@
 
 
 
-© Copyright 2003- OpenSymphony
+Copyright © 2003- The Apache Software Foundation.
 
 
 




svn commit: r894085 - in /struts/xwork: ./ branches/ tags/ trunk/

2009-12-27 Thread martinc
Author: martinc
Date: Sun Dec 27 17:53:57 2009
New Revision: 894085

URL: http://svn.apache.org/viewvc?rev=894085&view=rev
Log:
Prep for importing XWork.

Added:
struts/xwork/
struts/xwork/branches/
struts/xwork/tags/
struts/xwork/trunk/



svn commit: r894087 [6/46] - in /struts/xwork/trunk: ./ assembly/ assembly/src/ assembly/src/main/ assembly/src/main/assembly/ assembly/src/main/resources/ core/ core/src/ core/src/main/ core/src/main

2009-12-27 Thread martinc
Propchange: 
struts/xwork/trunk/core/src/main/java/com/opensymphony/xwork2/config/impl/ActionConfigMatcher.java
--
svn:eol-style = native

Propchange: 
struts/xwork/trunk/core/src/main/java/com/opensymphony/xwork2/config/impl/ActionConfigMatcher.java
--
svn:keywords = Date Author Id Revision HeadURL

Added: 
struts/xwork/trunk/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java?rev=894087&view=auto
==
--- 
struts/xwork/trunk/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
 (added)
+++ 
struts/xwork/trunk/core/src/main/java/com/opensymphony/xwork2/config/impl/DefaultConfiguration.java
 Sun Dec 27 18:00:13 2009
@@ -0,0 +1,473 @@
+/*
+ * Copyright (c) 2002-2006 by OpenSymphony
+ * All rights reserved.
+ */
+package com.opensymphony.xwork2.config.impl;
+
+import com.opensymphony.xwork2.ActionContext;
+import com.opensymphony.xwork2.DefaultTextProvider;
+import com.opensymphony.xwork2.ObjectFactory;
+import com.opensymphony.xwork2.TextProvider;
+import com.opensymphony.xwork2.config.*;
+import com.opensymphony.xwork2.config.entities.*;
+import com.opensymphony.xwork2.config.providers.InterceptorBuilder;
+import com.opensymphony.xwork2.conversion.ObjectTypeDeterminer;
+import com.opensymphony.xwork2.conversion.impl.DefaultObjectTypeDeterminer;
+import com.opensymphony.xwork2.conversion.impl.XWorkBasicConverter;
+import com.opensymphony.xwork2.conversion.impl.XWorkConverter;
+import com.opensymphony.xwork2.inject.*;
+import com.opensymphony.xwork2.ognl.OgnlReflectionProvider;
+import com.opensymphony.xwork2.ognl.OgnlUtil;
+import com.opensymphony.xwork2.ognl.OgnlValueStackFactory;
+import com.opensymphony.xwork2.ognl.accessor.CompoundRootAccessor;
+import com.opensymphony.xwork2.util.CompoundRoot;
+import com.opensymphony.xwork2.util.PatternMatcher;
+import com.opensymphony.xwork2.util.ValueStack;
+import com.opensymphony.xwork2.util.ValueStackFactory;
+import com.opensymphony.xwork2.util.location.LocatableProperties;
+import com.opensymphony.xwork2.util.logging.Logger;
+import com.opensymphony.xwork2.util.logging.LoggerFactory;
+import com.opensymphony.xwork2.util.reflection.ReflectionProvider;
+import ognl.PropertyAccessor;
+
+import java.util.*;
+
+
+/**
+ * DefaultConfiguration
+ *
+ * @author Jason Carreira
+ * Created Feb 24, 2003 7:38:06 AM
+ */
+public class DefaultConfiguration implements Configuration {
+
+protected static final Logger LOG = 
LoggerFactory.getLogger(DefaultConfiguration.class);
+
+
+// Programmatic Action Configurations
+protected Map packageContexts = new 
LinkedHashMap();
+protected RuntimeConfiguration runtimeConfiguration;
+protected Container container;
+protected String defaultFrameworkBeanName;
+protected Set loadedFileNames = new TreeSet();
+protected List unknownHandlerStack;
+
+
+ObjectFactory objectFactory;
+
+public DefaultConfiguration() {
+this("xwork");
+}
+
+public DefaultConfiguration(String defaultBeanName) {
+this.defaultFrameworkBeanName = defaultBeanName;
+}
+
+
+public PackageConfig getPackageConfig(String name) {
+return packageContexts.get(name);
+}
+
+public List getUnknownHandlerStack() {
+return unknownHandlerStack;
+}
+
+public void setUnknownHandlerStack(List 
unknownHandlerStack) {
+this.unknownHandlerStack = unknownHandlerStack;
+}
+
+public Set getPackageConfigNames() {
+return packageContexts.keySet();
+}
+
+public Map getPackageConfigs() {
+return packageContexts;
+}
+
+public Set getLoadedFileNames() {
+return loadedFileNames;
+}
+
+public RuntimeConfiguration getRuntimeConfiguration() {
+return runtimeConfiguration;
+}
+
+/**
+ * @return the container
+ */
+public Container getContainer() {
+return container;
+}
+
+public void addPackageConfig(String name, PackageConfig packageContext) {
+PackageConfig check = packageContexts.get(name);
+if (check != null) {
+if (check.getLocation() != null && packageContext.getLocation() != 
null
+&& 
check.getLocation().equals(packageContext.getLocation())) {
+if (LOG.isDebugEnabled()) {
+LOG.debug("The package name '" + name
++ "' is already been loaded by the same location and could 
be removed: "
++ packageContext.getLocation());
+}
+} else {
+throw new ConfigurationException("The package name '" + name
+   

svn commit: r894087 [46/46] - in /struts/xwork/trunk: ./ assembly/ assembly/src/ assembly/src/main/ assembly/src/main/assembly/ assembly/src/main/resources/ core/ core/src/ core/src/main/ core/src/mai

2009-12-27 Thread martinc
Added: struts/xwork/trunk/showcase/src/resources/log4j.properties
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/showcase/src/resources/log4j.properties?rev=894087&view=auto
==
--- struts/xwork/trunk/showcase/src/resources/log4j.properties (added)
+++ struts/xwork/trunk/showcase/src/resources/log4j.properties Sun Dec 27 
18:00:13 2009
@@ -0,0 +1,11 @@
+log4j.rootLogger = WARN, stdout
+
+log4j.appender.stdout = org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.Threshold = DEBUG
+log4j.appender.stdout.Target   = System.out
+log4j.appender.stdout.layout = org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern = %d{ISO8601} %-5p [%F:%L] : 
%m%n
+
+log4j.logger.com.opensymphony.xwork2=DEBUG
+log4j.logger.com.opensymphony.xwork2.showcase=DEBUG
+

Propchange: struts/xwork/trunk/showcase/src/resources/log4j.properties
--
svn:eol-style = native

Propchange: struts/xwork/trunk/showcase/src/resources/log4j.properties
--
svn:keywords = Date Author Id Revision HeadURL

Added: struts/xwork/trunk/src/resources/LICENSE.txt
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/src/resources/LICENSE.txt?rev=894087&view=auto
==
--- struts/xwork/trunk/src/resources/LICENSE.txt (added)
+++ struts/xwork/trunk/src/resources/LICENSE.txt Sun Dec 27 18:00:13 2009
@@ -0,0 +1,47 @@
+The OpenSymphony Software License, Version 1.1
+
+(this license is derived and fully compatible with the Apache Software
+License - see http://www.apache.org/LICENSE.txt)
+
+Copyright (c) 2001-2004 The OpenSymphony Group. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in
+   the documentation and/or other materials provided with the
+   distribution.
+
+3. The end-user documentation included with the redistribution,
+   if any, must include the following acknowledgment:
+  "This product includes software developed by the
+   OpenSymphony Group (http://www.opensymphony.com/)."
+   Alternately, this acknowledgment may appear in the software itself,
+   if and wherever such third-party acknowledgments normally appear.
+
+4. The names "OpenSymphony" and "The OpenSymphony Group"
+   must not be used to endorse or promote products derived from this
+   software without prior written permission. For written
+   permission, please contact lice...@opensymphony.com .
+
+5. Products derived from this software may not be called "OpenSymphony"
+   or "XWork", nor may "OpenSymphony" or "XWork" appear in their
+   name, without prior written permission of the OpenSymphony Group.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+SUCH DAMAGE.

Propchange: struts/xwork/trunk/src/resources/LICENSE.txt
--
svn:eol-style = native

Propchange: struts/xwork/trunk/src/resources/LICENSE.txt
--
svn:keywords = Date Author Id Revision HeadURL

Added: struts/xwork/trunk/src/resources/README.txt
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/src/resources/README.txt?rev=894087&view=auto
==
--- struts/xwork/trunk/src/resources/README.txt (added)
+++ struts/xwork/trunk/src/resources/README.txt Sun Dec 27 18:00:13 2009
@@ -0,0 +1,33 @@
+Thanks for trying out XWork2: the foundation for Struts 2, Java's most 
+cutting edge web development platform. Struts 2 is brought to you by
+the Apache Struts team. You can find out more about Struts 2 and
+the Apache Software Foundation at http://struts.apache.org.
+
+=== Documentation ===
+The documentation

svn commit: r894090 [7/7] - in /struts/xwork/trunk: assembly/src/main/assembly/ core/src/main/java/com/opensymphony/xwork2/ core/src/main/java/com/opensymphony/xwork2/config/ core/src/main/java/com/op

2009-12-27 Thread martinc
Modified: 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/EmailValidatorTest.java
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/EmailValidatorTest.java?rev=894090&r1=894089&r2=894090&view=diff
==
--- 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/EmailValidatorTest.java
 (original)
+++ 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/EmailValidatorTest.java
 Sun Dec 27 18:18:29 2009
@@ -1,6 +1,17 @@
 /*
- * Copyright (c) 2002-2006 by OpenSymphony
- * All rights reserved.
+ * Copyright 2002-2006,2009 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 package com.opensymphony.xwork2.validator;
 

Modified: 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/ExpressionValidatorTest.java
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/ExpressionValidatorTest.java?rev=894090&r1=894089&r2=894090&view=diff
==
--- 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/ExpressionValidatorTest.java
 (original)
+++ 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/ExpressionValidatorTest.java
 Sun Dec 27 18:18:29 2009
@@ -1,6 +1,17 @@
 /*
- * Copyright (c) 2002-2006 by OpenSymphony
- * All rights reserved.
+ * Copyright 2002-2006,2009 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 package com.opensymphony.xwork2.validator;
 

Modified: 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/GenericValidatorContext.java
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/GenericValidatorContext.java?rev=894090&r1=894089&r2=894090&view=diff
==
--- 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/GenericValidatorContext.java
 (original)
+++ 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/GenericValidatorContext.java
 Sun Dec 27 18:18:29 2009
@@ -1,6 +1,17 @@
 /*
- * Copyright (c) 2002-2003 by OpenSymphony
- * All rights reserved.
+ * Copyright 2002-2003,2009 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ * 
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
  */
 package com.opensymphony.xwork2.validator;
 

Modified: 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/IntRangeValidatorTest.java
URL: 
http://svn.apache.org/viewvc/struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/IntRangeValidatorTest.java?rev=894090&r1=894089&r2=894090&view=diff
==
--- 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/IntRangeValidatorTest.java
 (original)
+++ 
struts/xwork/trunk/core/src/test/java/com/opensymphony/xwork2/validator/IntRangeValidatorTest.java
 Sun Dec 27 18:18:29 2009
@@ -1,6 +1,17 @@
 /*
- * Copyright (c) 2002-2003 by OpenSymphony
- * All rights reserved.
+ * Copyright 2002-2003,2009 The Apache Software Foundation.
+ * 
+ * Licensed under the Apache License, Version 2.0 (the "License");

svn commit: r958323 - /struts/maven/trunk/pom/pom.xml

2010-06-26 Thread martinc
Author: martinc
Date: Sun Jun 27 04:35:46 2010
New Revision: 958323

URL: http://svn.apache.org/viewvc?rev=958323&view=rev
Log:
Add Lukasz to the PMC

Modified:
struts/maven/trunk/pom/pom.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=958323&r1=958322&r2=958323&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sun Jun 27 04:35:46 2010
@@ -258,7 +258,7 @@
  lukaszlenart
  lukaszlenart at apache.org
  
-Committer
+PMC Member
  
   

@@ -281,4 +281,4 @@
  
   

-
\ No newline at end of file
+




svn commit: r958324 - /struts/site/src/site/xdoc/dev/volunteers.xml

2010-06-26 Thread martinc
Author: martinc
Date: Sun Jun 27 04:36:28 2010
New Revision: 958324

URL: http://svn.apache.org/viewvc?rev=958324&view=rev
Log:
Add Lukasz to the PMC

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=958324&r1=958323&r2=958324&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sun Jun 27 04:36:28 2010
@@ -131,6 +131,10 @@ limitations under the License.
 Wes Wannemacher
 (wesw at apache.org)
 
+
+Lukasz Lenart
+(lukaszlenart at apache.org)
+
 
 
 
@@ -179,10 +183,6 @@ limitations under the License.
 Mathias Bogaert
 (pathos at apache.org)
 
-
-Lukasz Lenart
-(lukaszlenart at apache.org)
-
 
 
 




svn commit: r988352 - in /struts/site/src/site: site.xml xdoc/downloads.xml xdoc/security.xml

2010-08-23 Thread martinc
Author: martinc
Date: Mon Aug 23 23:26:01 2010
New Revision: 988352

URL: http://svn.apache.org/viewvc?rev=988352&view=rev
Log:
Update links to point to the correct JIRA instance.

Modified:
struts/site/src/site/site.xml
struts/site/src/site/xdoc/downloads.xml
struts/site/src/site/xdoc/security.xml

Modified: struts/site/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/site.xml?rev=988352&r1=988351&r2=988352&view=diff
==
--- struts/site/src/site/site.xml (original)
+++ struts/site/src/site/site.xml Mon Aug 23 23:26:01 2010
@@ -83,7 +83,7 @@
 />
 http://issues.apache.org/struts/";
+href="http://issues.apache.org/jira/";
 />
 http://svn.apache.org/viewvc/struts/site/src/site/xdoc/downloads.xml?rev=988352&r1=988351&r2=988352&view=diff
==
--- struts/site/src/site/xdoc/downloads.xml (original)
+++ struts/site/src/site/xdoc/downloads.xml Mon Aug 23 23:26:01 2010
@@ -93,7 +93,7 @@ limitations under the License.
 volunteer subscribers to the list.
 Issues with a release may be discussed on the list
 and reported through the
-http://issues.apache.org/struts/";>issue tracker.
+http://issues.apache.org/jira/";>issue tracker.
 
 
 

Modified: struts/site/src/site/xdoc/security.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/security.xml?rev=988352&r1=988351&r2=988352&view=diff
==
--- struts/site/src/site/xdoc/security.xml (original)
+++ struts/site/src/site/xdoc/security.xml Mon Aug 23 23:26:01 2010
@@ -41,7 +41,7 @@ limitations under the License.
 
   We cannot accept regular bug reports or other queries at
   this address, we ask that you use our
-  http://issues.apache.org/struts/";>issue tracker 
(JIRA)
+  http://issues.apache.org/jira/";>issue tracker (JIRA)
   for those. All mail sent to this
   address that does not relate to security problems in the Apache
   Struts source code will be ignored.




svn commit: r990175 - /struts/site/src/site/xdoc/dev/volunteers.xml

2010-08-27 Thread martinc
Author: martinc
Date: Fri Aug 27 15:32:52 2010
New Revision: 990175

URL: http://svn.apache.org/viewvc?rev=990175&view=rev
Log:
Nils-Helge Garli Hegvik elected to go emeritus.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=990175&r1=990174&r2=990175&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Fri Aug 27 15:32:52 2010
@@ -124,10 +124,6 @@ limitations under the License.
 (davenewton at apache.org)
 
 
-Nils-Helge Garli Hegvik
-(nilsga at apache.org)
-
-
 Wes Wannemacher
 (wesw at apache.org)
 
@@ -306,6 +302,10 @@ limitations under the License.
 Ted Husted (PMC)
 (husted at apache.org)
 
+
+Nils-Helge Garli Hegvik (PMC)
+(nilsga at apache.org)
+
 
 
 




svn commit: r1096182 - in /struts: current/zone/ zone/

2011-04-23 Thread martinc
Author: martinc
Date: Sat Apr 23 17:16:29 2011
New Revision: 1096182

URL: http://svn.apache.org/viewvc?rev=1096182&view=rev
Log:
The zone directory should never have been in current, which is externals only.

Added:
struts/zone/
  - copied from r1096181, struts/current/zone/
Removed:
struts/current/zone/



svn commit: r1096195 - in /struts/site: forms/invitation-committer.txt src/site/xdoc/dev/volunteers.xml

2011-04-23 Thread martinc
Author: martinc
Date: Sat Apr 23 17:53:44 2011
New Revision: 1096195

URL: http://svn.apache.org/viewvc?rev=1096195&view=rev
Log:
Change of Chair

Modified:
struts/site/forms/invitation-committer.txt
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/forms/invitation-committer.txt
URL: 
http://svn.apache.org/viewvc/struts/site/forms/invitation-committer.txt?rev=1096195&r1=1096194&r2=1096195&view=diff
==
--- struts/site/forms/invitation-committer.txt (original)
+++ struts/site/forms/invitation-committer.txt Sat Apr 23 17:53:44 2011
@@ -23,7 +23,7 @@ also need to file a corporate agreement:
 The next step would be to send your first three choices for an Apache account
 name to the Struts PMC Chair:
 
-* Martin Cooper 
+* Rene Gielen 
 
 Once the account is set up, you would be able to commit to the Struts source
 repository.

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=1096195&r1=1096194&r2=1096195&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sat Apr 23 17:53:44 2011
@@ -68,7 +68,6 @@ limitations under the License.
 
 
 Martin Cooper
-, Vice President and Chair
 (martinc at apache.org)
 
 
@@ -101,6 +100,7 @@ limitations under the License.
 
 
 Rene Gielen
+, Vice President and Chair
 (rgielen at apache.org)
 
 
@@ -623,7 +623,7 @@ limitations under the License.
 always try to first propose reusable pieces of code.
 
 
-Martin Cooper -- PMC Chair
+Martin Cooper -- PMC Member
 
 
 Early in the year 2000, I was asked, by my employer at




svn commit: r1096198 - /struts/maven/trunk/pom/pom.xml

2011-04-23 Thread martinc
Author: martinc
Date: Sat Apr 23 18:00:17 2011
New Revision: 1096198

URL: http://svn.apache.org/viewvc?rev=1096198&view=rev
Log:
Change of Chair

Modified:
struts/maven/trunk/pom/pom.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=1096198&r1=1096197&r2=1096198&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sat Apr 23 18:00:17 2011
@@ -90,7 +90,7 @@
  martinc
  martinc at apache.org
  
-PMC Chair
+PMC Member
  
   
   
@@ -154,7 +154,7 @@
  rgielen
  rgielen at apache.org
  
-PMC Member
+PMC Chair
  
   
   




svn commit: r565087 - /struts/site/src/site/xdoc/dev/volunteers.xml

2007-08-12 Thread martinc
Author: martinc
Date: Sun Aug 12 10:50:03 2007
New Revision: 565087

URL: http://svn.apache.org/viewvc?view=rev&rev=565087
Log:
PMC += Antonio Petrelli

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?view=diff&rev=565087&r1=565086&r2=565087
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sun Aug 12 10:50:03 2007
@@ -166,9 +166,13 @@
 (pbenedict at apache.org)
 
 
-   Henri Yandell
-   (bayard at apache.org)
-   
+Henri Yandell
+(bayard at apache.org)
+
+
+Antonio Petrelli
+(apetrelli at apache.org)
+
 
 
 
@@ -188,10 +192,6 @@
 
 Bob Lee
 (crazybob at apache.org)
-
-
-Antonio Petrelli
-(apetrelli at apache.org)
 
 
 Nils-Helge Garli




svn commit: r572431 - /struts/site/src/site/fml/kickstart.fml

2007-09-03 Thread martinc
Author: martinc
Date: Mon Sep  3 14:45:46 2007
New Revision: 572431

URL: http://svn.apache.org/viewvc?rev=572431&view=rev
Log:
SITE-20 Correct URL for Struts Central.

Modified:
struts/site/src/site/fml/kickstart.fml

Modified: struts/site/src/site/fml/kickstart.fml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/fml/kickstart.fml?rev=572431&r1=572430&r2=572431&view=diff
==
--- struts/site/src/site/fml/kickstart.fml (original)
+++ struts/site/src/site/fml/kickstart.fml Mon Sep  3 14:45:46 2007
@@ -45,7 +45,7 @@
 
 
 To learn more about using Apache Struts, you can also visit
-http://www.StrutsCentral.net/";>Struts Central,
+http://husted.com/central/";>Struts Central,
 which catalogs all the known resources about Apache Struts for both
 http://struts.apache.org/1.x/";>Struts 1 and  
 http://struts.apache.org/2.x/";>Struts 2.




svn commit: r578365 - /struts/site/src/site/xdoc/dev/volunteers.xml

2007-09-21 Thread martinc
Author: martinc
Date: Fri Sep 21 20:41:47 2007
New Revision: 578365

URL: http://svn.apache.org/viewvc?rev=578365&view=rev
Log:
Committers += Matt Raible

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=578365&r1=578364&r2=578365&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Fri Sep 21 20:41:47 2007
@@ -213,6 +213,10 @@
Musachy Barroso
(musachy at apache.org)

+
+   Matt Raible
+   (mraible at apache.org)
+   
 
 
 




svn commit: r586985 - /struts/site/src/site/xdoc/dev/volunteers.xml

2007-10-21 Thread martinc
Author: martinc
Date: Sun Oct 21 19:41:41 2007
New Revision: 586985

URL: http://svn.apache.org/viewvc?rev=586985&view=rev
Log:
Committers += Dave Newton, Brian Pontarelli

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=586985&r1=586984&r2=586985&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sun Oct 21 19:41:41 2007
@@ -217,6 +217,14 @@
Matt Raible
(mraible at apache.org)

+
+   Dave Newton
+   (davenewton at apache.org)
+   
+
+   Brian Pontarelli
+   (bpontarelli at apache.org)
+   
 
 
 




svn commit: r586986 - /struts/site/src/site/xdoc/dev/volunteers.xml

2007-10-21 Thread martinc
Author: martinc
Date: Sun Oct 21 19:43:01 2007
New Revision: 586986

URL: http://svn.apache.org/viewvc?rev=586986&view=rev
Log:
Fix indentation.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=586986&r1=586985&r2=586986&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sun Oct 21 19:43:01 2007
@@ -204,27 +204,27 @@
 
David H. DeWolf
(ddewolf at apache.org)
-   
+
 
Philip Luppens
(phil at apache.org)
-   
+
 
Tom Schneider
(tschneider at apache.org)
-   
+
 
Matt Raible
(mraible at apache.org)
-   
+
 
Dave Newton
(davenewton at apache.org)
-   
+
 
Brian Pontarelli
(bpontarelli at apache.org)
-   
+
 
 
 




svn commit: r620224 - /struts/site/src/site/xdoc/dev/volunteers.xml

2008-02-09 Thread martinc
Author: martinc
Date: Sat Feb  9 16:15:15 2008
New Revision: 620224

URL: http://svn.apache.org/viewvc?rev=620224&view=rev
Log:
Some bookkeeping and cleanup.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=620224&r1=620223&r2=620224&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sat Feb  9 16:15:15 2008
@@ -158,8 +158,8 @@
 (apetrelli at apache.org)
 
 
-   Musachy Barroso
-   (musachy at apache.org)
+Musachy Barroso
+(musachy at apache.org)

 
 
@@ -186,36 +186,36 @@
 (nilsga at apache.org)
 
 
-   David H. DeWolf
-   (ddewolf at apache.org)
+David H. DeWolf
+(ddewolf at apache.org)
 
 
-   Philip Luppens
-   (phil at apache.org)
+Philip Luppens
+(phil at apache.org)
 
 
-   Tom Schneider
-   (tschneider at apache.org)
+Tom Schneider
+(tschneider at apache.org)
 
 
-   Matt Raible
-   (mraible at apache.org)
+Matt Raible
+(mraible at apache.org)
 
 
-   Dave Newton
-   (davenewton at apache.org)
+Dave Newton
+(davenewton at apache.org)
 
 
-   Brian Pontarelli
-   (bpontarelli at apache.org)
+Brian Pontarelli
+(bpontarelli at apache.org)
 
 
-   Wes Wannemacher
-   (wesw at apache.org)
+Wes Wannemacher
+(wesw at apache.org)
 
 
-   Jeromy Evans
-   (jeromy at apache.org)
+Jeromy Evans
+(jeromy at apache.org)
 
 
 
@@ -231,60 +231,63 @@
 
 
 Luis Arias
-
 
 David Geary
 (dgeary at apache.org)
 
-
-Pierre Delilse
-
+
+Pierre Delisle
+(pierred at apache.org)
+
 Michael Schachter
-
-Vincent Massol
-
-David Winterfeldt
-
-Oleg Alexeev
-
-Rob Leland
-
-Arron Bates
-
-Steve Raeburn (PMC)
-
-James Turner
-
 
-  Sean Schofield (PMC)
-  (schof at apache.org)
+Vincent Massol
+(vmassol at apache.org)
+
+
+David Winterfeldt
+(dwinterfeldt at apache.org)
+
+
+Oleg Alexeev
+(oalexeev at apache.org)
+
+
+Rob Leland
+(rleland at apache.org)
+
+
+Arron Bates
+(arron at apache.org)
+
+
+Steve Raeburn (PMC)
+(sraeburn at apache.org)
+
+
+James Turner
+(turner at apache.org)
+
+
+Sean Schofield (PMC)
+(schof at apache.org)
 
-
 
 Richard Feit
 (rich at apache.org)
 
-
 
 David M. Karr (PMC)
 (dmkarr at apache.org)
 
-
 
  

svn commit: r620223 - /struts/site/src/site/xdoc/dev/volunteers.xml

2008-02-09 Thread martinc
Author: martinc
Date: Sat Feb  9 16:00:24 2008
New Revision: 620223

URL: http://svn.apache.org/viewvc?rev=620223&view=rev
Log:
Move Patrick Lightbody, Greg Reddin & Ian Roughley to Emeritus at their request.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=620223&r1=620222&r2=620223&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sat Feb  9 16:00:24 2008
@@ -126,10 +126,6 @@
 (gvanmatre at apache.org)
 
 
-Greg Reddin
-(greddin at apache.org)
-
-
 Laurie Harper
 (laurieh at apache.org)
 
@@ -138,10 +134,6 @@
 (jcarreira at apache.org)
 
 
-Patrick Lightbody
-(plightbo at apache.org)
-
-
 Alexandru Popescu
 (apopescu at apache.org)
 
@@ -158,10 +150,6 @@
 (tmjee at apache.org)
 
 
-Ian Roughley
-(roughley at apache.org)
-
-
 Paul Benedict
 (pbenedict at apache.org)
 
@@ -289,7 +277,7 @@
 
 
 Steve Raeburn (PMC)
-(Steve Raeburn (sraeburn at apache.org)
+(sraeburn at apache.org)
 
 
 
@@ -301,7 +289,18 @@
 Henri Yandell (PMC)
 (bayard at apache.org)
 
-
+
+Patrick Lightbody (PMC)
+(plightbo at apache.org)
+
+
+Greg Reddin (PMC)
+(greddin at apache.org)
+
+
+Ian Roughley (PMC)
+(roughley at apache.org)
+
 
 
 




svn commit: r628534 - /struts/maven/trunk/pom/pom.xml

2008-02-17 Thread martinc
Author: martinc
Date: Sun Feb 17 11:24:25 2008
New Revision: 628534

URL: http://svn.apache.org/viewvc?rev=628534&view=rev
Log:
Some role updates to match current reality.

Modified:
struts/maven/trunk/pom/pom.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=628534&r1=628533&r2=628534&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sun Feb 17 11:24:25 2008
@@ -230,7 +230,7 @@
  greddin
  greddin at apache.org
  
-PMC Member
+Committer
  
   
   
@@ -238,7 +238,7 @@
  laurieh
  laurieh at apache.org
  
-Committer
+PMC Member
  
   
   
@@ -254,7 +254,7 @@
  jcarreira
  jcarreira at apache.org
  
-Committer
+PMC Member
  
   
   
@@ -270,7 +270,7 @@
  apopescu
  apopescu at apache.org
  
-Committer
+PMC Member
  
   
   
@@ -278,7 +278,7 @@
  rgielen
  rgielen at apache.org
  
-Committer
+PMC Member
  
   
   
@@ -294,7 +294,7 @@
  tmjee
  tmjee at apache.org
  
-Committer
+PMC Member
  
   
   
@@ -307,8 +307,8 @@
   
   
  Paul Benedict
- 
- 
+ pbenedict
+ pbenedict at apache.org
  
 Committer
  




svn commit: r635054 - /struts/site/src/site/xdoc/dev/volunteers.xml

2008-03-08 Thread martinc
Author: martinc
Date: Sat Mar  8 11:21:12 2008
New Revision: 635054

URL: http://svn.apache.org/viewvc?rev=635054&view=rev
Log:
Updating for folks who've gone emeritus.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=635054&r1=635053&r2=635054&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sat Mar  8 11:21:12 2008
@@ -67,11 +67,6 @@
 
 
 
-Craig R. McClanahan
-(craigmcc at apache.org)
-
-
-
 Ted Husted
 (husted at apache.org)
 
@@ -103,37 +98,19 @@
 
 
 
-Joe Germuska
-(germuska at apache.org)
-
-
-
 Niall Pemberton
 (niallp at apache.org)
 
 
 
-Hubert Rabago
-(hrabago at apache.org)
-
-
-
 Wendy Smoak
 (wsmoak at apache.org)
 
 
-Gary VanMatre
-(gvanmatre at apache.org)
-
-
 Laurie Harper
 (laurieh at apache.org)
 
 
-Jason Carreira
-(jcarreira at apache.org)
-
-
 Alexandru Popescu
 (apopescu at apache.org)
 
@@ -304,6 +281,26 @@
 Ian Roughley (PMC)
 (roughley at apache.org)
 
+
+Craig R. McClanahan (PMC)
+(craigmcc at apache.org)
+
+
+Joe Germuska (PMC)
+(germuska at apache.org)
+
+
+Hubert Rabago (PMC)
+(hrabago at apache.org)
+
+
+Gary VanMatre (PMC)
+(gvanmatre at apache.org)
+
+
+Jason Carreira (PMC)
+(jcarreira at apache.org)
+
 
 
 
@@ -315,7 +312,7 @@
 
 
 
-Craig R. McClanahan -- PMC Member
+Craig R. McClanahan -- Emeritus PMC 
Member
 
 
 I've been involved with servlet and JSP technology since
@@ -775,7 +772,7 @@
 to part of the Apache Struts group.
 
 
-David Graham -- PMC Member
+David Graham -- Emeritus PMC Member
 
 
 I, like many others, discovered Struts when contemplating
@@ -979,7 +976,7 @@
 OpenSolaris.org site for Sun.
 
 
-Eddie Bush -- Committer
+Eddie Bush -- Emeritus Committer
 
 
 My first experiences with Java made me wince. The language
@@ -1116,7 +1113,7 @@
 September 2004.
 
 
-Hubert Rabago -- PMC Member
+Hubert Rabago -- Emeritus PMC Member
 
 I started working with Java early in 2000. We designed and
 implemented a
@@ -1190,7 +1187,7 @@
 invitation to become a Struts Committer in June, 2005, and
 was invited to join the PMC in December, 2005.
 
-Gary VanMatre -- PMC Member
+Gary VanMatre -- Emeritus PMC Member
 
 I landed an internship in college working with the big blue
 iron where
@@ -1282,7 +1279,7 @@
 Struts lies with the
 Shale subproject.
 
-Greg Reddin -- PMC Member
+Greg Reddin -- Emeritus PMC Member
 
 In early 2000 I was working on a client-server application
 that




svn commit: r639949 - /struts/maven/trunk/pom/pom.xml

2008-03-21 Thread martinc
Author: martinc
Date: Fri Mar 21 21:11:21 2008
New Revision: 639949

URL: http://svn.apache.org/viewvc?rev=639949&view=rev
Log:
Removed emeritus people.

Modified:
struts/maven/trunk/pom/pom.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=639949&r1=639948&r2=639949&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Fri Mar 21 21:11:21 2008
@@ -90,14 +90,6 @@
 

   
- Craig R. McClanahan
- craigmcc
- craigmcc at apache.org
- 
-PMC Member
- 
-  
-  
  Ted Husted
  husted
  husted at apache.org
@@ -130,30 +122,6 @@
  
   
   
- David M. Karr
- dmkarr
- dmkarr at apache.org
- 
-PMC Member
- 
-  
-  
- Eddie Bush
- ekbush
- ekbush at apache.org
- 
-Committer
- 
-  
-  
- David Graham
- dgraham
- dgraham at apache.org
- 
-PMC Member
- 
-  
-  
  James Mitchell
  jmitchell
  jmitchell at apache.org
@@ -170,14 +138,6 @@
  
   
   
- Joe Germuska
- germuska
- germuska at apache.org
- 
-PMC Member
- 
-  
-  
  Niall Pemberton
  niallp
  niallp at apache.org
@@ -186,22 +146,6 @@
  
   
   
- Hubert Rabago
- hrabago
- hrabago at apache.org
- 
-PMC Member
- 
-  
-  
- David Geary
- dgeary
- dgeary at apache.org
- 
-Committer
- 
-  
-  
  Wendy Smoak
  wsmoak
  wsmoak at apache.org
@@ -210,30 +154,6 @@
  
   
   
- Gary VanMatre
- gvanmatre
- gvanmatre at apache.org
- 
-PMC Member
- 
-  
-  
- Sean Schofield
- schof
- schof at apache.org
- 
-PMC Member
- 
-  
-  
- Greg Reddin
- greddin
- greddin at apache.org
- 
-Committer
- 
-  
-  
  Laurie Harper
  laurieh
  laurieh at apache.org
@@ -242,30 +162,6 @@
  
   
   
- Richard Feit
- rich
- rich at apache.org
- 
-Committer
- 
-  
-  
- Jason Carreira
- jcarreira
- jcarreira at apache.org
- 
-PMC Member
- 
-  
-  
- Patrick Lightbody
- plightbo
- plightbo at apache.org
- 
-Committer
- 
-  
-  
  Alexandru Popescu
  apopescu
  apopescu at apache.org
@@ -298,14 +194,6 @@
  
   
   
- Ian Roughley
- roughley
- roughley at apache.org
- 
-Committer
- 
-  
-  
  Paul Benedict
  pbenedict
  pbenedict at apache.org
@@ -353,14 +241,14 @@
 Committer
  
   
- 
-Nils-Helge Garli Hegvik
-nilsga
-nilsga at apache.org
-
-   Committer
-
-  
+  
+ Nils-Helge Garli Hegvik
+ nilsga
+ nilsga at apache.org
+ 
+Committer
+ 
+  
   
  Jeromy Evans
  jeromy




svn commit: r671267 - in /struts: maven/trunk/pom/pom.xml site/src/site/xdoc/dev/volunteers.xml

2008-06-24 Thread martinc
Author: martinc
Date: Tue Jun 24 10:18:46 2008
New Revision: 671267

URL: http://svn.apache.org/viewvc?rev=671267&view=rev
Log:
Emeritus += Cedric Dumoulin and James Mitchell

Modified:
struts/maven/trunk/pom/pom.xml
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=671267&r1=671266&r2=671267&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Tue Jun 24 10:18:46 2008
@@ -102,7 +102,7 @@
  cedric
  cedric.dumoulin at lifl.fr
  
-PMC Member
+Committer
  
   
   
@@ -126,7 +126,7 @@
  jmitchell
  jmitchell at apache.org
  
-PMC Member
+Committer
  
   
   

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=671267&r1=671266&r2=671267&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Tue Jun 24 10:18:46 2008
@@ -72,11 +72,6 @@
 
 
 
-Cedric Dumoulin
-(cedric at apache.org)
-
-
-
 Martin Cooper
 , Vice President and Chair
 (martinc at apache.org)
@@ -88,11 +83,6 @@
 
 
 
-James Mitchell
-(jmitchell at apache.org)
-
-
-
 Don Brown
 (mrdon at apache.org)
 
@@ -301,6 +291,14 @@
 Jason Carreira (PMC)
 (jcarreira at apache.org)
 
+
+Cedric Dumoulin (PMC)
+(cedric at apache.org)
+
+
+James Mitchell (PMC)
+(jmitchell at apache.org)
+
 
 
 




svn commit: r686530 - in /struts: maven/trunk/pom/pom.xml site/src/site/xdoc/dev/volunteers.xml

2008-08-16 Thread martinc
Author: martinc
Date: Sat Aug 16 10:39:46 2008
New Revision: 686530

URL: http://svn.apache.org/viewvc?rev=686530&view=rev
Log:
Add Dave Newton to the PMC.

Modified:
struts/maven/trunk/pom/pom.xml
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=686530&r1=686529&r2=686530&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sat Aug 16 10:39:46 2008
@@ -238,7 +238,7 @@
  daven
  davenewton at apache.org
  
-Committer
+PMC Member
  
   
   

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=686530&r1=686529&r2=686530&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sat Aug 16 10:39:46 2008
@@ -127,7 +127,11 @@
 
 Musachy Barroso
 (musachy at apache.org)
-   
+
+
+Dave Newton
+(davenewton at apache.org)
+
 
 
 
@@ -169,10 +173,6 @@
 (mraible at apache.org)
 
 
-Dave Newton
-(davenewton at apache.org)
-
-
 Brian Pontarelli
 (bpontarelli at apache.org)
 




svn commit: r691018 - /struts/site/src/site/xdoc/dev/volunteers.xml

2008-09-01 Thread martinc
Author: martinc
Date: Mon Sep  1 09:52:22 2008
New Revision: 691018

URL: http://svn.apache.org/viewvc?rev=691018&view=rev
Log:
Antonio has gone emeritus.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=691018&r1=691017&r2=691018&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Mon Sep  1 09:52:22 2008
@@ -121,10 +121,6 @@
 (pbenedict at apache.org)
 
 
-Antonio Petrelli
-(apetrelli at apache.org)
-
-
 Musachy Barroso
 (musachy at apache.org)
 
@@ -299,6 +295,10 @@
 James Mitchell (PMC)
 (jmitchell at apache.org)
 
+
+Antonio Petrelli (PMC)
+(apetrelli at apache.org)
+
 
 
 




svn commit: r708429 - /struts/site/src/site/xdoc/dev/volunteers.xml

2008-10-27 Thread martinc
Author: martinc
Date: Mon Oct 27 21:38:37 2008
New Revision: 708429

URL: http://svn.apache.org/viewvc?rev=708429&view=rev
Log:
Nils-Helge is now a PMC member.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=708429&r1=708428&r2=708429&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Mon Oct 27 21:38:37 2008
@@ -128,6 +128,10 @@
 Dave Newton
 (davenewton at apache.org)
 
+
+Nils-Helge Garli
+(nilsga at apache.org)
+
 
 
 
@@ -149,10 +153,6 @@
 (crazybob at apache.org)
 
 
-Nils-Helge Garli
-(nilsga at apache.org)
-
-
 David H. DeWolf
 (ddewolf at apache.org)
 




svn commit: r711323 - /struts/site/src/site/xdoc/dev/volunteers.xml

2008-11-04 Thread martinc
Author: martinc
Date: Tue Nov  4 09:22:35 2008
New Revision: 711323

URL: http://svn.apache.org/viewvc?rev=711323&view=rev
Log:
Correct Nils-Helge's last name.

Modified:
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=711323&r1=711322&r2=711323&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Tue Nov  4 09:22:35 2008
@@ -129,7 +129,7 @@
 (davenewton at apache.org)
 
 
-Nils-Helge Garli
+Nils-Helge Garli Hegvik
 (nilsga at apache.org)
 
 




svn commit: r733403 - in /struts: maven/trunk/pom/pom.xml site/src/site/xdoc/dev/volunteers.xml

2009-01-10 Thread martinc
Author: martinc
Date: Sat Jan 10 16:28:46 2009
New Revision: 733403

URL: http://svn.apache.org/viewvc?rev=733403&view=rev
Log:
Wes is now a PMC member.

Modified:
struts/maven/trunk/pom/pom.xml
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=733403&r1=733402&r2=733403&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sat Jan 10 16:28:46 2009
@@ -230,7 +230,7 @@
  wesw
  wesw at apache.org
  
-Committer
+PMC Member
  
   
   

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=733403&r1=733402&r2=733403&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sat Jan 10 16:28:46 2009
@@ -132,6 +132,10 @@
 Nils-Helge Garli Hegvik
 (nilsga at apache.org)
 
+
+Wes Wannemacher
+(wesw at apache.org)
+
 
 
 
@@ -173,10 +177,6 @@
 (bpontarelli at apache.org)
 
 
-Wes Wannemacher
-(wesw at apache.org)
-
-
 Jeromy Evans
 (jeromy at apache.org)
 




svn commit: r764305 - in /struts: maven/trunk/pom/pom.xml site/src/site/xdoc/dev/volunteers.xml

2009-04-12 Thread martinc
Author: martinc
Date: Sun Apr 12 17:37:46 2009
New Revision: 764305

URL: http://svn.apache.org/viewvc?rev=764305&view=rev
Log:
Mathias Bogaert is a new committer; Ted Husted elected to go emeritus.

Modified:
struts/maven/trunk/pom/pom.xml
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=764305&r1=764304&r2=764305&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sun Apr 12 17:37:46 2009
@@ -265,6 +265,14 @@
 Committer
  
   
+  
+ Mathias Bogaert
+ pathos
+ pathos at apache.org
+ 
+Committer
+ 
+  


   

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=764305&r1=764304&r2=764305&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Sun Apr 12 17:37:46 2009
@@ -67,11 +67,6 @@
 
 
 
-Ted Husted
-(husted at apache.org)
-
-
-
 Martin Cooper
 , Vice President and Chair
 (martinc at apache.org)
@@ -180,6 +175,10 @@
 Jeromy Evans
 (jeromy at apache.org)
 
+
+Mathias Bogaert
+(pathos at apache.org)
+
 
 
 
@@ -299,6 +298,10 @@
 Antonio Petrelli (PMC)
 (apetrelli at apache.org)
 
+
+Ted Husted (PMC)
+(husted at apache.org)
+
 
 
 




svn commit: r764307 - /struts/maven/trunk/pom/pom.xml

2009-04-12 Thread martinc
Author: martinc
Date: Sun Apr 12 17:44:40 2009
New Revision: 764307

URL: http://svn.apache.org/viewvc?rev=764307&view=rev
Log:
Ted Husted elected to go emeritus.

Modified:
struts/maven/trunk/pom/pom.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=764307&r1=764306&r2=764307&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Sun Apr 12 17:44:40 2009
@@ -94,7 +94,7 @@
  husted
  husted at apache.org
  
-PMC Member
+Committer
  
   
   




svn commit: r768836 - in /struts: maven/trunk/pom/pom.xml site/src/site/xdoc/dev/volunteers.xml

2009-04-26 Thread martinc
Author: martinc
Date: Mon Apr 27 00:12:36 2009
New Revision: 768836

URL: http://svn.apache.org/viewvc?rev=768836&view=rev
Log:
New committer - Lukasz Lenart.

Modified:
struts/maven/trunk/pom/pom.xml
struts/site/src/site/xdoc/dev/volunteers.xml

Modified: struts/maven/trunk/pom/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/maven/trunk/pom/pom.xml?rev=768836&r1=768835&r2=768836&view=diff
==
--- struts/maven/trunk/pom/pom.xml (original)
+++ struts/maven/trunk/pom/pom.xml Mon Apr 27 00:12:36 2009
@@ -273,6 +273,14 @@
 Committer
  
   
+  
+ Lukasz Lenart
+ lukaszlenart
+ lukaszlenart at apache.org
+ 
+Committer
+ 
+  


   

Modified: struts/site/src/site/xdoc/dev/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/dev/volunteers.xml?rev=768836&r1=768835&r2=768836&view=diff
==
--- struts/site/src/site/xdoc/dev/volunteers.xml (original)
+++ struts/site/src/site/xdoc/dev/volunteers.xml Mon Apr 27 00:12:36 2009
@@ -179,6 +179,10 @@
 Mathias Bogaert
 (pathos at apache.org)
 
+
+Lukasz Lenart
+(lukaszlenart at apache.org)
+
 
 
 




svn commit: r417340 - /struts/site/src/site/xdoc/volunteers.xml

2006-06-26 Thread martinc
Author: martinc
Date: Mon Jun 26 22:03:53 2006
New Revision: 417340

URL: http://svn.apache.org/viewvc?rev=417340&view=rev
Log:
Change of employer.

Modified:
struts/site/src/site/xdoc/volunteers.xml

Modified: struts/site/src/site/xdoc/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/volunteers.xml?rev=417340&r1=417339&r2=417340&view=diff
==
--- struts/site/src/site/xdoc/volunteers.xml (original)
+++ struts/site/src/site/xdoc/volunteers.xml Mon Jun 26 22:03:53 2006
@@ -576,18 +576,13 @@
 
 
 A large majority of the people who contribute to Apache
-projects
-are volunteers who are not paid for their contributions.
-Like most
-of those volunteers, I also have a "day job" to put bread
-on the
-table. Currently, I am a UI Architect at Informatica,
-where I work
-on the architecture, design and implementation of web
-applications.
+projects are volunteers who are not paid for their
+contributions. Like most of those volunteers, I also have
+a "day job" to put bread on the table. Currently, I am a
+Software Architect at EMC, where I work on the Documentum
+family of products, focussed on the WDK/WebTop platform.
 Working with, and on, Struts has provided me with an
-excellent
-perspective with which to do that!
+excellent perspective with which to do that!
 
 
 David Winterfeldt -- Emeritus




svn commit: r424524 - /struts/site/src/site/xdoc/volunteers.xml

2006-07-21 Thread martinc
Author: martinc
Date: Fri Jul 21 21:57:22 2006
New Revision: 424524

URL: http://svn.apache.org/viewvc?rev=424524&view=rev
Log:
New PMC members and committers.

Modified:
struts/site/src/site/xdoc/volunteers.xml

Modified: struts/site/src/site/xdoc/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/volunteers.xml?rev=424524&r1=424523&r2=424524&view=diff
==
--- struts/site/src/site/xdoc/volunteers.xml (original)
+++ struts/site/src/site/xdoc/volunteers.xml Fri Jul 21 21:57:22 2006
@@ -133,6 +133,18 @@
 Greg Reddin
 (greddin at apache.org)
 
+
+Laurie Harper
+(laurieh at apache.org)
+
+
+Jason Carreira
+(jcarreira at apache.org)
+
+
+Patrick Lightbody
+(plightbo at apache.org)
+
 
 
 
@@ -155,22 +167,10 @@
 (dgeary at apache.org)
 
 
-Laurie Harper
-(laurieh at apache.org)
-
-
 Richard Feit
 (rich at apache.org)
 
 
-Jason Carreira
-(jcarreira at apache.org)
-
-
-Patrick Lightbody
-(plightbo at apache.org)
-
-
 Alexandru Popescu
 (apopescu at apache.org)
 
@@ -193,6 +193,14 @@
 
 Michael Jouravlev
 (mikus at apache.org)
+
+
+Paul Benedict
+(pbenedict at apache.org)
+
+
+Antonio Petrelli
+(apetrelli at apache.org)
 
 
 




svn commit: r442439 - /struts/site/src/site/xdoc/volunteers.xml

2006-09-11 Thread martinc
Author: martinc
Date: Mon Sep 11 20:49:20 2006
New Revision: 442439

URL: http://svn.apache.org/viewvc?view=rev&rev=442439
Log:
Update for new PMC members.

Modified:
struts/site/src/site/xdoc/volunteers.xml

Modified: struts/site/src/site/xdoc/volunteers.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/volunteers.xml?view=diff&rev=442439&r1=442438&r2=442439
==
--- struts/site/src/site/xdoc/volunteers.xml (original)
+++ struts/site/src/site/xdoc/volunteers.xml Mon Sep 11 20:49:20 2006
@@ -145,6 +145,26 @@
 Patrick Lightbody
 (plightbo at apache.org)
 
+
+Alexandru Popescu
+(apopescu at apache.org)
+
+
+Rene Gielen
+(rgielen at apache.org)
+
+
+Rainer Hermanns
+(hermanns at apache.org)
+
+
+Toby Jee
+(tmjee at apache.org)
+
+
+Ian Roughley
+(roughley at apache.org)
+
 
 
 
@@ -169,26 +189,6 @@
 
 Richard Feit
 (rich at apache.org)
-
-
-Alexandru Popescu
-(apopescu at apache.org)
-
-
-Rene Gielen
-(rgielen at apache.org)
-
-
-Rainer Hermanns
-(hermanns at apache.org)
-
-
-Toby Jee
-(tmjee at apache.org)
-
-
-Ian Roughley
-(roughley at apache.org)
 
 
 Michael Jouravlev




svn commit: r442444 - in /struts/struts2/trunk: apps/showcase/pom.xml assembly/pom.xml core/pom.xml

2006-09-11 Thread martinc
Author: martinc
Date: Mon Sep 11 21:21:56 2006
New Revision: 442444

URL: http://svn.apache.org/viewvc?view=rev&rev=442444
Log:
Update Commons FileUpload version to 1.1.1 so that we pick up the latest bug 
fixes.

Modified:
struts/struts2/trunk/apps/showcase/pom.xml
struts/struts2/trunk/assembly/pom.xml
struts/struts2/trunk/core/pom.xml

Modified: struts/struts2/trunk/apps/showcase/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/pom.xml?view=diff&rev=442444&r1=442443&r2=442444
==
--- struts/struts2/trunk/apps/showcase/pom.xml (original)
+++ struts/struts2/trunk/apps/showcase/pom.xml Mon Sep 11 21:21:56 2006
@@ -64,7 +64,7 @@
  
  commons-fileupload
  commons-fileupload
- 1.1
+ 1.1.1
  
 
  

Modified: struts/struts2/trunk/assembly/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/assembly/pom.xml?view=diff&rev=442444&r1=442443&r2=442444
==
--- struts/struts2/trunk/assembly/pom.xml (original)
+++ struts/struts2/trunk/assembly/pom.xml Mon Sep 11 21:21:56 2006
@@ -194,7 +194,7 @@
 
 commons-fileupload
 commons-fileupload
-1.1
+1.1.1
 provided
 
 

Modified: struts/struts2/trunk/core/pom.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/pom.xml?view=diff&rev=442444&r1=442443&r2=442444
==
--- struts/struts2/trunk/core/pom.xml (original)
+++ struts/struts2/trunk/core/pom.xml Mon Sep 11 21:21:56 2006
@@ -124,7 +124,7 @@
 
 commons-fileupload
 commons-fileupload
-1.1
+1.1.1
 true
 
 




svn commit: r475322 - /struts/site/src/site/xdoc/mail.xml

2006-11-15 Thread martinc
Author: martinc
Date: Wed Nov 15 09:45:24 2006
New Revision: 475322

URL: http://svn.apache.org/viewvc?view=rev&rev=475322
Log:
Add a nominal subject and body to all mailto links. The ASF mail system has 
taken to categorizing messages without these as spam, so people were having 
trouble subscribing and unsubscribing.

Modified:
struts/site/src/site/xdoc/mail.xml

Modified: struts/site/src/site/xdoc/mail.xml
URL: 
http://svn.apache.org/viewvc/struts/site/src/site/xdoc/mail.xml?view=diff&rev=475322&r1=475321&r2=475322
==
--- struts/site/src/site/xdoc/mail.xml (original)
+++ struts/site/src/site/xdoc/mail.xml Wed Nov 15 09:45:24 2006
@@ -356,12 +356,12 @@
 read-only list.
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL PROTECTED]&body=subscribe">
 Subscribe
 ]
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL 
PROTECTED]&body=unsubscribe">
 Unsubscribe
 ]
 
@@ -376,12 +376,12 @@
 Struts features.
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL PROTECTED]&body=subscribe">
 Subscribe
 ]
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL 
PROTECTED]&body=unsubscribe">
 Unsubscribe
 ]
 
@@ -391,12 +391,12 @@
 a daily digest of the Struts USER list.
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL PROTECTED]&body=subscribe">
 Subscribe
 ]
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL 
PROTECTED]&body=unsubscribe">
 Unsubscribe
 ]
 
@@ -434,12 +434,12 @@
 itself.
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL PROTECTED]&body=subscribe">
 Subscribe
 ]
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL 
PROTECTED]&body=unsubscribe">
 Unsubscribe
 ]
 
@@ -451,12 +451,12 @@
 source code repository.
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL PROTECTED]&body=subscribe">
 Subscribe
 ]
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL 
PROTECTED]&body=unsubscribe">
 Unsubscribe
 ]
 
@@ -467,12 +467,12 @@
 tracker.
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL PROTECTED]&body=subscribe">
 Subscribe
 ]
 
 [
-mailto:[EMAIL PROTECTED]">
+mailto:[EMAIL 
PROTECTED]&body=unsubscribe">
 Unsubscribe
 ]
 




svn commit: r482860 - /struts/struts1/trunk/src/site/xdoc/userGuide/building_model.xml

2006-12-05 Thread martinc
Author: martinc
Date: Tue Dec  5 17:17:21 2006
New Revision: 482860

URL: http://svn.apache.org/viewvc?view=rev&rev=482860
Log:
STR-2984
Typo: kernal -> kernel

Modified:
struts/struts1/trunk/src/site/xdoc/userGuide/building_model.xml

Modified: struts/struts1/trunk/src/site/xdoc/userGuide/building_model.xml
URL: 
http://svn.apache.org/viewvc/struts/struts1/trunk/src/site/xdoc/userGuide/building_model.xml?view=diff&rev=482860&r1=482859&r2=482860
==
--- struts/struts1/trunk/src/site/xdoc/userGuide/building_model.xml (original)
+++ struts/struts1/trunk/src/site/xdoc/userGuide/building_model.xml Tue Dec  5 
17:17:21 2006
@@ -497,7 +497,7 @@
 how callers invoke the Chain.
 As of version 1.3,
 the default Request Processor,
-which acts as the framework's "kernal",
+which acts as the framework's "kernel",
 is a Chain of Responsiblity.
 
 




svn commit: r531057 - /struts/struts2/trunk/src/site/xdoc/index.xml

2007-04-21 Thread martinc
Author: martinc
Date: Sat Apr 21 09:09:52 2007
New Revision: 531057

URL: http://svn.apache.org/viewvc?view=rev&rev=531057
Log:
Add the usual SVN props.

Modified:
struts/struts2/trunk/src/site/xdoc/index.xml   (props changed)

Propchange: struts/struts2/trunk/src/site/xdoc/index.xml
--
svn:eol-style = native

Propchange: struts/struts2/trunk/src/site/xdoc/index.xml
--
svn:keywords = Date Author Id Revision HeadURL




svn commit: r544387 - /struts/struts2/trunk/src/site/site.xml

2007-06-04 Thread martinc
Author: martinc
Date: Mon Jun  4 22:21:17 2007
New Revision: 544387

URL: http://svn.apache.org/viewvc?view=rev&rev=544387
Log:
It's plural, not possessive. Grr.

Modified:
struts/struts2/trunk/src/site/site.xml

Modified: struts/struts2/trunk/src/site/site.xml
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/src/site/site.xml?view=diff&rev=544387&r1=544386&r2=544387
==
--- struts/struts2/trunk/src/site/site.xml (original)
+++ struts/struts2/trunk/src/site/site.xml Mon Jun  4 22:21:17 2007
@@ -83,7 +83,7 @@
 />
 
 
-
+