svn commit: r406288 - /struts/action2/trunk/core/src/main/java/org/apache/struts/action2/dispatcher/ServletActionRedirectResult.java

2006-05-14 Thread tmjee
Author: tmjee
Date: Sun May 14 02:26:02 2006
New Revision: 406288

URL: http://svn.apache.org/viewcvs?rev=406288&view=rev
Log:
WW-1269



Modified:

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/dispatcher/ServletActionRedirectResult.java

Modified: 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/dispatcher/ServletActionRedirectResult.java
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/dispatcher/ServletActionRedirectResult.java?rev=406288&r1=406287&r2=406288&view=diff
==
--- 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/dispatcher/ServletActionRedirectResult.java
 (original)
+++ 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/dispatcher/ServletActionRedirectResult.java
 Sun May 14 02:26:02 2006
@@ -17,9 +17,13 @@
  */
 package org.apache.struts.action2.dispatcher;
 
+import java.util.Map;
+
 import org.apache.struts.action2.dispatcher.mapper.ActionMapper;
 import org.apache.struts.action2.dispatcher.mapper.ActionMapperFactory;
 import org.apache.struts.action2.dispatcher.mapper.ActionMapping;
+import org.apache.struts.action2.views.util.UrlHelper;
+
 import com.opensymphony.xwork.ActionInvocation;
 
 /**
@@ -85,7 +89,8 @@
 
 protected String actionName;
 protected String namespace;
-
+protected String method;
+
 public void execute(ActionInvocation invocation) throws Exception {
 actionName = conditionalParse(actionName, invocation);
 if (namespace == null) {
@@ -93,9 +98,15 @@
 } else {
 namespace = conditionalParse(namespace, invocation);
 }
+if (method == null) {
+   method = "";
+}
+else {
+   method = conditionalParse(method, invocation);
+}
 
 ActionMapper mapper = ActionMapperFactory.getMapper();
-location = mapper.getUriFromActionMapping(new 
ActionMapping(actionName, namespace, "", null));
+location = mapper.getUriFromActionMapping(new 
ActionMapping(actionName, namespace, method, null));
 
 super.execute(invocation);
 }
@@ -106,5 +117,9 @@
 
 public void setNamespace(String namespace) {
 this.namespace = namespace;
+}
+
+public void setMethod(String method) {
+   this.method = method;
 }
 }




svn commit: r406369 - /struts/action2/trunk/core/src/main/resources/struts-default.xml

2006-05-14 Thread tmjee
Author: tmjee
Date: Sun May 14 09:40:14 2006
New Revision: 406369

URL: http://svn.apache.org/viewcvs?rev=406369&view=rev
Log:
- remove dependencies on old FCK rich text editor


Modified:
struts/action2/trunk/core/src/main/resources/struts-default.xml

Modified: struts/action2/trunk/core/src/main/resources/struts-default.xml
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/core/src/main/resources/struts-default.xml?rev=406369&r1=406368&r2=406369&view=diff
==
--- struts/action2/trunk/core/src/main/resources/struts-default.xml (original)
+++ struts/action2/trunk/core/src/main/resources/struts-default.xml Sun May 14 
09:40:14 2006
@@ -14,12 +14,6 @@
 
 
 
-
-
-
-
-
-
 
 
 




svn commit: r406371 - in /struts/action2/trunk/core/src: main/java/org/apache/struts/action2/views/jsp/ui/ test/java/org/apache/struts/action2/views/jsp/ui/

2006-05-14 Thread tmjee
Author: tmjee
Date: Sun May 14 09:44:08 2006
New Revision: 406371

URL: http://svn.apache.org/viewcvs?rev=406371&view=rev
Log:
- remove dependencies on old FCK rich text editor


Removed:

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorCreateFolderResult.java

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorFileUploadResult.java

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorGetFoldersAndFilesResult.java

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorGetFoldersResult.java

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorCreateFolderResultTest.java

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorFileUploadResultTest.java

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorGetFoldersAndFilesResultTest.java

struts/action2/trunk/core/src/test/java/org/apache/struts/action2/views/jsp/ui/RichtexteditorGetFoldersResultTest.java



svn commit: r406375 - /struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/

2006-05-14 Thread tmjee
Author: tmjee
Date: Sun May 14 10:04:58 2006
New Revision: 406375

URL: http://svn.apache.org/viewcvs?rev=406375&view=rev
Log:
- remove dependencies on old FCK rich text editor


Removed:

struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/RichtexteditorCreateFolderResultTest1.txt

struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/RichtexteditorFileUploadResultTest1.txt

struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/RichtexteditorFileUploadResultTest2.txt

struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/RichtexteditorFileUploadResultTest3.txt

struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/RichtexteditorGetFoldersAndFilesResultTest1.txt

struts/action2/trunk/core/src/test/resources/org/apache/struts/action2/views/jsp/ui/RichtexteditorGetFoldersResultTest1.txt



svn commit: r406377 - /struts/action/trunk/tiles/src/main/java/org/apache/struts/tiles/xmlDefinition/XmlParser.java

2006-05-14 Thread wsmoak
Author: wsmoak
Date: Sun May 14 10:07:03 2006
New Revision: 406377

URL: http://svn.apache.org/viewcvs?rev=406377&view=rev
Log:
[STR-2876] Restore the Tiles 1.1 DTD registration. (See r330425)

Modified:

struts/action/trunk/tiles/src/main/java/org/apache/struts/tiles/xmlDefinition/XmlParser.java

Modified: 
struts/action/trunk/tiles/src/main/java/org/apache/struts/tiles/xmlDefinition/XmlParser.java
URL: 
http://svn.apache.org/viewcvs/struts/action/trunk/tiles/src/main/java/org/apache/struts/tiles/xmlDefinition/XmlParser.java?rev=406377&r1=406376&r2=406377&view=diff
==
--- 
struts/action/trunk/tiles/src/main/java/org/apache/struts/tiles/xmlDefinition/XmlParser.java
 (original)
+++ 
struts/action/trunk/tiles/src/main/java/org/apache/struts/tiles/xmlDefinition/XmlParser.java
 Sun May 14 10:07:03 2006
@@ -47,8 +47,10 @@
  * MUST be an even number of Strings in this list!
  */
 protected String registrations[] = {
+"-//Apache Software Foundation//DTD Tiles Configuration 1.1//EN",
+"/org/apache/struts/resources/tiles-config_1_1.dtd",
 "-//Apache Software Foundation//DTD Tiles Configuration 1.3//EN",
-"/org/apache/struts/resources/tiles-config_1_3.dtd",
+"/org/apache/struts/resources/tiles-config_1_3.dtd"
 };
 
  /**




svn commit: r406385 - in /struts/action2/trunk/core/src/main: java/org/apache/struts/action2/components/UIBean.java resources/META-INF/taglib.tld

2006-05-14 Thread tmjee
Author: tmjee
Date: Sun May 14 10:47:20 2006
New Revision: 406385

URL: http://svn.apache.org/viewcvs?rev=406385&view=rev
Log:
WW-1312


Modified:

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
struts/action2/trunk/core/src/main/resources/META-INF/taglib.tld

Modified: 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java?rev=406385&r1=406384&r2=406385&view=diff
==
--- 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
 (original)
+++ 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
 Sun May 14 10:47:20 2006
@@ -964,6 +964,13 @@
 }
 
 
+/**
+ * The template directory.
+ * @a2.tagattribute required="false"
+ */
+public void setTemplateDir(String templateDir) {
+   this.templateDir = templateDir;
+}
 
 /**
  * The theme (other than default) to use for rendering the element

Modified: struts/action2/trunk/core/src/main/resources/META-INF/taglib.tld
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/core/src/main/resources/META-INF/taglib.tld?rev=406385&r1=406384&r2=406385&view=diff
==
--- struts/action2/trunk/core/src/main/resources/META-INF/taglib.tld (original)
+++ struts/action2/trunk/core/src/main/resources/META-INF/taglib.tld Sun May 14 
10:47:20 2006
@@ -734,6 +734,14 @@
   
 
   
+ templateDir
+ false
+ true
+
+   
+
+  
+  
  theme
  false
  true




svn commit: r406386 - /struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java

2006-05-14 Thread tmjee
Author: tmjee
Date: Sun May 14 10:51:15 2006
New Revision: 406386

URL: http://svn.apache.org/viewcvs?rev=406386&view=rev
Log:
- remove unecessary import statement


Modified:

struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java

Modified: 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java?rev=406386&r1=406385&r2=406386&view=diff
==
--- 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
 (original)
+++ 
struts/action2/trunk/core/src/main/java/org/apache/struts/action2/components/UIBean.java
 Sun May 14 10:51:15 2006
@@ -32,7 +32,6 @@
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.http.HttpServletResponse;
 import java.io.Writer;
-import java.util.ArrayList;
 import java.util.Iterator;
 import java.util.LinkedHashMap;
 import java.util.List;




[Struts Wiki] Update of "StrutsReleasePlans" by TedHusted

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsReleasePlans

The comment on the change is:
Add link for Struts Action 2.0.0 plan

--
  '''NOTE''' For info on cutting a release see 
[http://struts.apache.org/releases.html#Releases Struts Release Guidelines] and 
StrutsMavenRelease.
  
  = 1. Struts Action  =
+ == 2.0.x ==
+  *  StrutsActionRelease200 - ''Struts Version 2.0.0''
  == 1.3.x ==
   *  StrutsClassicRelease130 - ''Struts Version 1.3.0''
   *  StrutsActionRelease131 - ''Struts Action Version 1.3.1'' 


[Struts Wiki] Update of "StrutsMaintenanceMaven" by WendySmoak

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by WendySmoak:
http://wiki.apache.org/struts/StrutsMaintenanceMaven

The comment on the change is:
Added mirrors to suggested settings.

--
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/settings-1.0.0.xsd";>
  ...
+ 
+ 
+ 
  
  ...
 


[Struts Wiki] Update of "StrutsActionRelease200" by TedHusted

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsActionRelease200

The comment on the change is:
Add release plan for SAF 2.0.0

New page:
= Struts 2.0.0 Release =

== Info ==

1. Struts [http://struts.apache.org/releases.html#Releases Release Guidelines]

2. [http://wiki.apache.org/incubator/SigningReleases Signing Releases]

3. Apache [http://apache.org/dev/mirrors.html Mirroring Guidelines]

== Release Manager ==

The release manager is '''Ted Husted'''

== Special Issues ==

The Struts Action 2 framework is based on the Web``Work 2.2 codebase. 
Essentially, Struts Action 2.0  will be the technical equivalent of Web``Work 
2.3. (The Web``Work2 codebase was accepted into the Struts project through the 
[http://incubator.apache.org/projects/webwork2.html Apache Incubator].) 

For SAF 2.0, the core goals are to repackaging the codebase as an Apache Struts 
product, and to provide migration resources for SAF 1 and WW 2 developers. A 
few legacy API elements will be removed, and a few new features will be added. 

The SAF 2.0 release is following the [http://wiki.apache.org/struts/StrutsTi 
Struts Ti Proposal]. SAF 2.0 is phase 1 of the proposal. A subsequent SAF 
release series (either SAF 2.1 or SAF 3.0) will address Phase 2 of the proposal.

SAF 2.0.0 is targeting August 2006 as a relaxed release date.

See also StrutsAction2.

== Overall Status ==

|| Initial rename of packages and configuration files || Complete ||
|| Pass Web``Work2 codebase through the Incubator || Complete ||
|| Update WW2 documentation for SAF2 || Step 2 of 5 ||
|| Finalize configuration file names || 
[http://mail-archive.com/dev%40struts.apache.org/msg21757.html thread]||
|| Remove selected legacy API members || - ||
|| Implement selected new features || - ||
|| Resolve other outstanding issues || - ||
|| Complete standard release plan || - ||
|| - || - ||

== Documentation Status ==

[http://confluence.twdata.org/display/WW/Home Confluence Space]

|| Step 1 - Setup new Confluence instance || Complete ||
|| Step 2 - Initial pass to update nomenclature and remove obsolete material || 
Pending ||
|| Step 3 - Update "snippets" to reference ASF repository || - ||
|| Step 4 - Update JavaDoc to match new package and configuration naming || - ||
|| Step 5 - Complete tutorials and other "TODO" sections || - ||

== New Features Under Consideration ==

This initial list of new features is taken from the 
[http://wiki.apache.org/struts/RoughSpot Rough Spots page].

 * Distinguish between the published public versus private APIs. (See Rough 
Spot #4.)
 * Deprecate or remove the Around``Interceptor. (See #7.) 
 * Simplify Text``Provider. (See #15.)
 * On the OGNL value stack, rename #request for request parameters and 
#requestAttributes for request attributes. (See #17.)
 * Eliminate "do" clause for Action alias lookups. Scan Actions at load time 
for known aliases, and fail fast. 
 * Review exception handling. Some are still being swallowed rather than 
rethrown. (See #20.)
 * Reduce or eliminate need to use fully-qualified class names, over and over. 
(See #23.)
 * Work with OGNL to add Java 5 support. (See #31.)
 * Address the confusing issue of the validation/workflow lifecycle and 
different methods. (See Patrick #4.)
 * Work with OGNL to make it a clear superset of JSTL. (See Gabe #4.)
 * Use the strategy pattern to swap in different implementations of interfaces 
like Validation``Aware. (See Tim, NTH #1.)

== Outstanding Bug Review ==

[http://issues.apache.org/struts/browse/WW Issue Tracker]

|| '''ID''' || '''Summary''' || '''Component''' || '''Status''' ||
|| ${ID} || ${SUMMARY} || $COMPONENT} || ${STATUS} ||

== Preparation Checklist ==

|| '''#''' || '''Description''' || '''Status''' ||
|| 1. || ${DESCRIPTION} || ${STATUS} ||

The Commons [http://jakarta.apache.org/commons/releases/prepare.html 
Preparation Guide] is a helpful preparation backgrounder, but Commons uses the 
"beta/release-candidate/final" process.

Likewise, the [http://httpd.apache.org/dev/release.html HTTPD Release 
Guidelines] is a helpful "overall process" backgrounder, but HTTPD does not use 
a test-build stage.

Dependency versions for this release:

|| '''Dependency''' || '''Version''' || '''Status''' ||
|| ${DEPENDENCY} || ${VERSION} || ${STATUS} ||

== Testing Checklist ==

=== Testing Summary ===

|| '''#''' || '''Description''' || '''Completed''' ||
|| 1. || Run Unit Test targets || ${STATUS} ||
|| 2. || Play test bundled applications (TC 4.x) || ${STATUS} ||

TODO: A Canoo WebTest for the applications would be great!

=== Cactus Tests ===

|| '''#''' || '''J2SE Version''' || '''Tomcat Version''' ||'''Status''' ||
|| 1. || J2SE 1.4.x || Tomcat 5.0 || ${STATUS} ||
|| 2. || J2SE 1.5.x || Tomcat 5.1 || ${STATUS} ||

== Test Build Checklist (A) ==

See also Commons [http://jakarta.apache.org/commons/releases/re

[Struts Wiki] Update of "StrutsActionRelease200" by TedHusted

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsActionRelease200

The comment on the change is:
Add "Action" qualifier

--
- = Struts 2.0.0 Release =
+ = Struts Action 2.0.0 Release =
  
  == Info ==
  
- 1. Struts [http://struts.apache.org/releases.html#Releases Release Guidelines]
+ 1. Apache Struts [http://struts.apache.org/releases.html#Releases Release 
Guidelines]
  
  2. [http://wiki.apache.org/incubator/SigningReleases Signing Releases]
  
@@ -12, +12 @@

  
  == Release Manager ==
  
- The release manager is '''Ted Husted'''
+ The release manager is '''Ted Husted'''.
  
  == Special Issues ==
  
  The Struts Action 2 framework is based on the Web``Work 2.2 codebase. 
Essentially, Struts Action 2.0  will be the technical equivalent of Web``Work 
2.3. (The Web``Work2 codebase was accepted into the Struts project through the 
[http://incubator.apache.org/projects/webwork2.html Apache Incubator].) 
  
- For SAF 2.0, the core goals are to repackaging the codebase as an Apache 
Struts product, and to provide migration resources for SAF 1 and WW 2 
developers. A few legacy API elements will be removed, and a few new features 
will be added. 
+ For SAF 2.0, the core goals are to repackaging the codebase as an Apache 
Struts product and to provide migration resources for SAF 1 and WW 2 
developers. A few legacy API elements will be removed, and a few new features 
will be added. 
  
- The SAF 2.0 release is following the [http://wiki.apache.org/struts/StrutsTi 
Struts Ti Proposal]. SAF 2.0 is phase 1 of the proposal. A subsequent SAF 
release series (either SAF 2.1 or SAF 3.0) will address Phase 2 of the proposal.
+ The SAF 2.0 release is following the [http://wiki.apache.org/struts/StrutsTi 
Struts Ti Proposal]. SAF 2.0 is Phase 1 of the proposal. A subsequent SAF 
release series (either SAF 2.1 or SAF 3.0) will address Phase 2 of the proposal.
  
  SAF 2.0.0 is targeting August 2006 as a relaxed release date.
  


[Struts Wiki] Trivial Update of "StrutsActionRelease200" by TedHusted

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsActionRelease200

The comment on the change is:
Grammar fix

--
  
  The Struts Action 2 framework is based on the Web``Work 2.2 codebase. 
Essentially, Struts Action 2.0  will be the technical equivalent of Web``Work 
2.3. (The Web``Work2 codebase was accepted into the Struts project through the 
[http://incubator.apache.org/projects/webwork2.html Apache Incubator].) 
  
- For SAF 2.0, the core goals are to repackaging the codebase as an Apache 
Struts product and to provide migration resources for SAF 1 and WW 2 
developers. A few legacy API elements will be removed, and a few new features 
will be added. 
+ For SAF 2.0, the core goals are to repackage the codebase as an Apache Struts 
product and to provide migration resources for SAF 1 and WW 2 developers. A few 
legacy API elements will be removed, and a few new features will be added. 
  
  The SAF 2.0 release is following the [http://wiki.apache.org/struts/StrutsTi 
Struts Ti Proposal]. SAF 2.0 is Phase 1 of the proposal. A subsequent SAF 
release series (either SAF 2.1 or SAF 3.0) will address Phase 2 of the proposal.
  
@@ -76, +76 @@

  || '''#''' || '''Description''' || '''Status''' ||
  || 1. || ${DESCRIPTION} || ${STATUS} ||
  
+ The Commons [http://jakarta.apache.org/commons/releases/prepare.html 
Preparation Guide] is a helpful preparation backgrounder, but Commons uses the 
"beta/release-candidate/final" process. Likewise, the 
[http://httpd.apache.org/dev/release.html HTTPD Release Guidelines] is a 
helpful "overall process" backgrounder, but HTTPD does not use a test-build 
stage.
- The Commons [http://jakarta.apache.org/commons/releases/prepare.html 
Preparation Guide] is a helpful preparation backgrounder, but Commons uses the 
"beta/release-candidate/final" process.
- 
- Likewise, the [http://httpd.apache.org/dev/release.html HTTPD Release 
Guidelines] is a helpful "overall process" backgrounder, but HTTPD does not use 
a test-build stage.
  
  Dependency versions for this release:
  


[Struts Wiki] Update of "StrutsActionRelease200" by TedHusted

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsActionRelease200

The comment on the change is:
Update checklist items; Add bullets to voting section; Specify platform as 1.5

--
  The SAF 2.0 release is following the [http://wiki.apache.org/struts/StrutsTi 
Struts Ti Proposal]. SAF 2.0 is Phase 1 of the proposal. A subsequent SAF 
release series (either SAF 2.1 or SAF 3.0) will address Phase 2 of the proposal.
  
  SAF 2.0.0 is targeting August 2006 as a relaxed release date.
+ 
+ The platform for SAF 2.0.x is Java 1.5, with Java 1.4 compatibity provided by 
[http://retroweaver.sourceforge.net/documentation.html Retroweaver].
  
  See also StrutsAction2.
  
@@ -64, +66 @@

   * Work with OGNL to make it a clear superset of JSTL. (See Gabe #4.)
   * Use the strategy pattern to swap in different implementations of 
interfaces like Validation``Aware. (See Tim, NTH #1.)
  
- == Outstanding Bug Review ==
+ == Outstanding Issue Review ==
  
  [http://issues.apache.org/struts/browse/WW Issue Tracker]
  
@@ -89, +91 @@

  
  || '''#''' || '''Description''' || '''Completed''' ||
  || 1. || Run Unit Test targets || ${STATUS} ||
- || 2. || Play test bundled applications (TC 4.x) || ${STATUS} ||
+ || 2. || Play test bundled applications || ${STATUS} ||
  
  TODO: A Canoo WebTest for the applications would be great!
- 
- === Cactus Tests ===
- 
- || '''#''' || '''J2SE Version''' || '''Tomcat Version''' ||'''Status''' ||
- || 1. || J2SE 1.4.x || Tomcat 5.0 || ${STATUS} ||
- || 2. || J2SE 1.5.x || Tomcat 5.1 || ${STATUS} ||
  
  == Test Build Checklist (A) ==
  
  See also Commons [http://jakarta.apache.org/commons/releases/release.html 
Step-by-Step Guide]
  
  || '''#''' || '''Description''' || '''Completed''' ||
- || A1. || Tag release in cvs: ${STRUTS_x_x_x} || ${STATUS} ||
+ || A1. || Tag release in svn: ${STRUTS_ACTION_x_x_x} || ${STATUS} ||
  || A2. || Run Distribution Target || ${STATUS} ||
- || A3. || Upload Distribution to 
cvs.apache.org:/www/cvs.apache.org/dist/struts/x.x.x || ${STATUS} ||
+ || A3. || Upload Distribution to 
svn.apache.org:/www/svn.apache.org/dist/struts/action/x.x.x || ${STATUS} ||
- || A4. || Post release-quality vote on dev@ and user@ lists || ${STATUS ||
+ || A4. || Post release-quality vote on dev@ lists || ${STATUS ||
  
  == Vote (A) ==
  
  || ${PMC_MEMBER} || ${GRADE} ||
  
- If release vote fails, including for a lack of quorum, remove from dist 
folder.
+  * If release vote fails, including for a lack of quorum, remove from dist 
folder.
+  * If a release vote passes (Alpha, Beta or GA), the release may be announced 
and mirrored.
+  * If vote is GA, goto Checklist (C).
  
  == Point Release Checklist (B) ==
  
  || B1. || Create Sums and Sign Distributions [2] || ${STATUS} ||
- || B2. || Request new Bugzilla version level (x.x.x) || ${STATUS} ||
+ || B2. || Setup new JIRA version level or update release on Roadmap || 
${STATUS} ||
  || B3. || Update "Acquiring" page on website and Test Downloads || ${STATUS} 
||
  
  == Vote (B) ==
  
+ If initial vote is Alpha or Beta, voting can continue until a GA or 
"withdraw" vote passes, or there is a subsequent release.
+ 
  || ${PMC_MEMBER} || ${GRADE} ||
  
- Voting continues until a GA or "withdraw" vote passes, or there is a 
subsequent release.
  
  == General Availability Checklist (C) ==
  


svn commit: r406492 - in /struts/action2/trunk: ./ apps/ apps/portlet/ apps/portlet/src/main/etc/exo/ apps/portlet/src/main/etc/gridsphere/ apps/portlet/src/main/etc/liferay3.6.1/ apps/portlet/src/mai

2006-05-14 Thread mrdon
Author: mrdon
Date: Sun May 14 18:01:55 2006
New Revision: 406492

URL: http://svn.apache.org/viewcvs?rev=406492&view=rev
Log:
Removing empty directories, removing cewolf tag and chart action from
portlet webapp, split showcase and extras into "extras" profile,
synchronized root pom with action 1

Removed:
struts/action2/trunk/apps/portlet/src/main/java/com/

struts/action2/trunk/apps/portlet/src/main/java/org/apache/struts/action2/portlet/example/ChartExampleAction.java
Modified:
struts/action2/trunk/apps/pom.xml
struts/action2/trunk/apps/portlet/pom.xml
struts/action2/trunk/apps/portlet/src/main/etc/exo/web.xml
struts/action2/trunk/apps/portlet/src/main/etc/gridsphere/web.xml
struts/action2/trunk/apps/portlet/src/main/etc/liferay3.6.1/web.xml
struts/action2/trunk/pom.xml

Modified: struts/action2/trunk/apps/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/apps/pom.xml?rev=406492&r1=406491&r2=406492&view=diff
==
--- struts/action2/trunk/apps/pom.xml (original)
+++ struts/action2/trunk/apps/pom.xml Sun May 14 18:01:55 2006
@@ -15,7 +15,7 @@
 blank
 portlet
 shopping-cart
-showcase
+
 starter
 
 
@@ -27,6 +27,12 @@
 
 
 
+
+extras
+
+showcase
+
+
 
 hostedqa
 

Modified: struts/action2/trunk/apps/portlet/pom.xml
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/apps/portlet/pom.xml?rev=406492&r1=406491&r2=406492&view=diff
==
--- struts/action2/trunk/apps/portlet/pom.xml (original)
+++ struts/action2/trunk/apps/portlet/pom.xml Sun May 14 18:01:55 2006
@@ -20,19 +20,6 @@
 
 
 
-cewolf
-cewolf
-1.0
-provided
-
-
-gnujaxp
-gnujaxp
-
-
-
-
-
javax.servlet
servlet-api
2.4

Modified: struts/action2/trunk/apps/portlet/src/main/etc/exo/web.xml
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/apps/portlet/src/main/etc/exo/web.xml?rev=406492&r1=406491&r2=406492&view=diff
==
--- struts/action2/trunk/apps/portlet/src/main/etc/exo/web.xml (original)
+++ struts/action2/trunk/apps/portlet/src/main/etc/exo/web.xml Sun May 14 
18:01:55 2006
@@ -50,16 +50,8 @@

org.exoplatform.services.portletcontainer.impl.servlet.ServletWrapper


-   
-   CewolfServlet
-   de.laures.cewolf.CewolfRenderer
-   
 

-   CewolfServlet
-   /cewolf/*
-   
-   
dwr
/dwr/*

@@ -67,10 +59,5 @@
PortletWrapper
/PortletWrapper

-
-   
-   /cewolf
-   /WEB-INF/tld/cewolf.tld
-   
 
 

Modified: struts/action2/trunk/apps/portlet/src/main/etc/gridsphere/web.xml
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/apps/portlet/src/main/etc/gridsphere/web.xml?rev=406492&r1=406491&r2=406492&view=diff
==
--- struts/action2/trunk/apps/portlet/src/main/etc/gridsphere/web.xml (original)
+++ struts/action2/trunk/apps/portlet/src/main/etc/gridsphere/web.xml Sun May 
14 18:01:55 2006
@@ -50,16 +50,8 @@

org.gridlab.gridsphere.provider.portlet.jsr.PortletServlet


-   
-   CewolfServlet
-   de.laures.cewolf.CewolfRenderer
-   
 

-   CewolfServlet
-   /cewolf/*
-   
-   
dwr
/dwr/*

@@ -67,10 +59,5 @@
PortletServlet
/jsr/struts-portlet

-
-   
-   /cewolf
-   /WEB-INF/tld/cewolf.tld
-   
 
 

Modified: struts/action2/trunk/apps/portlet/src/main/etc/liferay3.6.1/web.xml
URL: 
http://svn.apache.org/viewcvs/struts/action2/trunk/apps/portlet/src/main/etc/liferay3.6.1/web.xml?rev=406492&r1=406491&r2=406492&view=diff
==
--- struts/action2/trunk/apps/portlet/src/main/etc/liferay3.6.1/web.xml 
(original)
+++ struts/action2/trunk/apps/portlet/src/main/etc/liferay3.6.1/web.xml Sun May 
14 18:01:55 2006
@@ -62,16 +62,8 @@
dwr
uk.ltd.getahead.dwr.DWRServlet

-   
-   CewolfServlet
-   de.laures.cewolf.CewolfRenderer
-   
 

-   CewolfServlet
-   /cewolf/*
-   
-   
dwr
  

[Struts Wiki] Trivial Update of "StrutsActionRelease200" by TedHusted

2006-05-14 Thread Apache Wiki
Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Struts Wiki" for change 
notification.

The following page has been changed by TedHusted:
http://wiki.apache.org/struts/StrutsActionRelease200

The comment on the change is:
Fix Rough Spots link

--
  
  == New Features Under Consideration ==
  
- This initial list of new features is taken from the 
[http://wiki.apache.org/struts/RoughSpot Rough Spots page].
+ This initial list of new features is taken from the RoughSpots page.
  
   * Distinguish between the published public versus private APIs. (See Rough 
Spot #4.)
   * Deprecate or remove the Around``Interceptor. (See #7.) 


svn commit: r406526 - /struts/site/src/site/resources/doap_Struts.rdf

2006-05-14 Thread wsmoak
Author: wsmoak
Date: Sun May 14 21:05:50 2006
New Revision: 406526

URL: http://svn.apache.org/viewcvs?rev=406526&view=rev
Log:
Corrected the issue tracking link.

Modified:
struts/site/src/site/resources/doap_Struts.rdf

Modified: struts/site/src/site/resources/doap_Struts.rdf
URL: 
http://svn.apache.org/viewcvs/struts/site/src/site/resources/doap_Struts.rdf?rev=406526&r1=406525&r2=406526&view=diff
==
--- struts/site/src/site/resources/doap_Struts.rdf (original)
+++ struts/site/src/site/resources/doap_Struts.rdf Sun May 14 21:05:50 2006
@@ -21,7 +21,7 @@
 http://struts.apache.org"; />
 Home of several MVC Web Frameworks
 The goal of the Apache Struts project is to encourage 
application architectures based on the "Model 2" approach, a variation of the 
classic Model-View-Controller (MVC) design paradigm.
-http://issues.apache.org/bugzilla/"; />
+http://issues.apache.org/struts/"; />
 http://struts.apache.org/mail.html"; />
 http://struts.apache.org/downloads.html"; />
 Java