[struts] branch master updated: WW-5161 Update spring to 4.3.30
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts.git The following commit(s) were added to refs/heads/master by this push: new 9a8301d WW-5161 Update spring to 4.3.30 new 56c7621 Merge pull request #517 from sepe81/update-spring-to-4.3.30 9a8301d is described below commit 9a8301d51dcc47d0aee1b7bd13afa0526a984fb6 Author: Sebastian Peters AuthorDate: Mon Dec 20 21:58:05 2021 +0100 WW-5161 Update spring to 4.3.30 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0ee92f4..df8f9a2 100644 --- a/pom.xml +++ b/pom.xml @@ -114,7 +114,7 @@ 2.17.0 3.2.20 1.7.32 -4.3.29.RELEASE +4.3.30.RELEASE 3.0.8 1.0.7 3.0.0-M4
[struts-examples] branch master updated: Adds simple example with dynamic href
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-examples.git The following commit(s) were added to refs/heads/master by this push: new d72a704 Adds simple example with dynamic href d72a704 is described below commit d72a704596885edf68dc896ac03824873bf1e1f1 Author: Lukasz Lenart AuthorDate: Tue Dec 21 20:28:16 2021 +0100 Adds simple example with dynamic href --- dynamic-href/pom.xml | 57 + .../org/apache/struts_example/IndexAction.java | 33 dynamic-href/src/main/resources/log4j2.xml | 16 ++ dynamic-href/src/main/resources/struts.xml | 21 dynamic-href/src/main/webapp/WEB-INF/index.jsp | 20 dynamic-href/src/main/webapp/WEB-INF/web.xml | 23 + .../src/main/webapp/images/icon_waste_sml.png | Bin 0 -> 6813 bytes dynamic-href/src/main/webapp/index.html| 10 pom.xml| 1 + type-conversion/src/main/resources/example.xml | 4 +- 10 files changed, 183 insertions(+), 2 deletions(-) diff --git a/dynamic-href/pom.xml b/dynamic-href/pom.xml new file mode 100644 index 000..4b05020 --- /dev/null +++ b/dynamic-href/pom.xml @@ -0,0 +1,57 @@ + +http://maven.apache.org/POM/4.0.0"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd";> + 4.0.0 + + +struts-examples +org.apache.struts +1.1.0 + + + dynamic-href + Dynamic Url + + war + + +UTF-8 +9.4.35.v20201120 + + + + + + javax.servlet + servlet-api + 2.5 + provided + + + + javax.servlet + jsp-api + 2.0 + provided + + + + + + + +org.eclipse.jetty +jetty-maven-plugin +${jetty-plugin.version} + + +/${project.artifactId} + + CTRL+C + 8999 + 10 + + + + + diff --git a/dynamic-href/src/main/java/org/apache/struts_example/IndexAction.java b/dynamic-href/src/main/java/org/apache/struts_example/IndexAction.java new file mode 100644 index 000..1997d7d --- /dev/null +++ b/dynamic-href/src/main/java/org/apache/struts_example/IndexAction.java @@ -0,0 +1,33 @@ +package org.apache.struts_example; + +import com.opensymphony.xwork2.Action; +import com.opensymphony.xwork2.ActionSupport; + +import java.util.UUID; + +public class IndexAction extends ActionSupport { + +private String entityId; +private String processId; +private String deleteItem; + +@Override +public String execute() throws Exception { +entityId = UUID.randomUUID().toString(); +processId = Thread.currentThread().getName(); +deleteItem = String.format("Entity %s", entityId); +return Action.SUCCESS; +} + +public String getEntityId() { +return entityId; +} + +public String getProcessId() { +return processId; +} + +public String getDeleteItem() { +return deleteItem; +} +} diff --git a/dynamic-href/src/main/resources/log4j2.xml b/dynamic-href/src/main/resources/log4j2.xml new file mode 100644 index 000..3b0e7d8 --- /dev/null +++ b/dynamic-href/src/main/resources/log4j2.xml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/dynamic-href/src/main/resources/struts.xml b/dynamic-href/src/main/resources/struts.xml new file mode 100644 index 000..4ff989c --- /dev/null +++ b/dynamic-href/src/main/resources/struts.xml @@ -0,0 +1,21 @@ + +http://struts.apache.org/dtds/struts-2.5.dtd";> + + + + + + + + + + +/WEB-INF/index.jsp + + + + + + diff --git a/dynamic-href/src/main/webapp/WEB-INF/index.jsp b/dynamic-href/src/main/webapp/WEB-INF/index.jsp new file mode 100644 index 000..ee46b1a --- /dev/null +++ b/dynamic-href/src/main/webapp/WEB-INF/index.jsp @@ -0,0 +1,20 @@ +<%@ page contentType="text/html; charset=UTF-8" %> +<%@ taglib prefix="s" uri="/struts-tags" %> + + + + Dynamic url + + + + + + + + + + + + + + diff --git a/dynamic-href/src/main/webapp/WEB-INF/web.xml b/dynamic-href/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 000..5923ee0 --- /dev/null +++ b/dynamic-href/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,23 @@ + +http://java.sun.com/xml/ns/javaee"; + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; + xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd";> + + Dynamic Url + + +struts2 + + org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter + + + + +
[struts] branch struts-2-5-x updated: Upgrades Log4j to version 2.12.3
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch struts-2-5-x in repository https://gitbox.apache.org/repos/asf/struts.git The following commit(s) were added to refs/heads/struts-2-5-x by this push: new 3dd751b Upgrades Log4j to version 2.12.3 3dd751b is described below commit 3dd751b730c58fae3c2d253a5ff7dbbadb6bf425 Author: Lukasz Lenart AuthorDate: Wed Dec 22 07:38:22 2021 +0100 Upgrades Log4j to version 2.12.3 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index fc5dd81..e0a0463 100644 --- a/pom.xml +++ b/pom.xml @@ -104,7 +104,7 @@ 7.3.1 3.0.8 1.0.7 -2.12.2 +2.12.3 2.10.3
[struts] branch struts-2-5-x updated: [maven-release-plugin] prepare release STRUTS_2_5_28_2
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch struts-2-5-x in repository https://gitbox.apache.org/repos/asf/struts.git The following commit(s) were added to refs/heads/struts-2-5-x by this push: new 53aeafd [maven-release-plugin] prepare release STRUTS_2_5_28_2 53aeafd is described below commit 53aeafd7a2de6bd860e770874a677320ee6677bc Author: Lukasz Lenart AuthorDate: Wed Dec 22 07:43:10 2021 +0100 [maven-release-plugin] prepare release STRUTS_2_5_28_2 --- apps/pom.xml| 2 +- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 2 +- assembly/pom.xml| 2 +- bom/pom.xml | 6 +++--- bundles/admin/pom.xml | 2 +- bundles/demo/pom.xml| 2 +- bundles/pom.xml | 2 +- core/pom.xml| 2 +- plugins/bean-validation/pom.xml | 2 +- plugins/cdi/pom.xml | 2 +- plugins/config-browser/pom.xml | 2 +- plugins/convention/pom.xml | 2 +- plugins/dwr/pom.xml | 2 +- plugins/embeddedjsp/pom.xml | 2 +- plugins/gxp/pom.xml | 2 +- plugins/jasperreports/pom.xml | 2 +- plugins/javatemplates/pom.xml | 2 +- plugins/jfreechart/pom.xml | 2 +- plugins/json/pom.xml| 2 +- plugins/junit/pom.xml | 2 +- plugins/osgi/pom.xml| 2 +- plugins/oval/pom.xml| 2 +- plugins/pell-multipart/pom.xml | 2 +- plugins/plexus/pom.xml | 2 +- plugins/pom.xml | 2 +- plugins/portlet-tiles/pom.xml | 2 +- plugins/portlet/pom.xml | 2 +- plugins/rest/pom.xml| 2 +- plugins/sitegraph/pom.xml | 2 +- plugins/sitemesh/pom.xml| 2 +- plugins/spring/pom.xml | 2 +- plugins/testng/pom.xml | 2 +- plugins/tiles/pom.xml | 2 +- pom.xml | 6 +++--- 35 files changed, 40 insertions(+), 40 deletions(-) diff --git a/apps/pom.xml b/apps/pom.xml index 0b0a58a..57306d3 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.29-SNAPSHOT +2.5.28.2 struts2-apps pom diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 1125bb2..75efba7 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -24,12 +24,12 @@ org.apache.struts struts2-apps -2.5.29-SNAPSHOT +2.5.28.2 struts2-rest-showcase war -2.5.29-SNAPSHOT +2.5.28.2 Struts 2 Rest Showcase Webapp Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 3d9450c..3061f59 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-apps -2.5.29-SNAPSHOT +2.5.28.2 struts2-showcase diff --git a/assembly/pom.xml b/assembly/pom.xml index c76947d..e37d631 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.29-SNAPSHOT +2.5.28.2 struts2-assembly diff --git a/bom/pom.xml b/bom/pom.xml index be11a56..5163a18 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -30,7 +30,7 @@ struts2-bom -2.5.29-SNAPSHOT +2.5.28.2 pom Struts 2 Bill of Materials @@ -45,7 +45,7 @@ -2.5.29-SNAPSHOT +2.5.28.2 true true @@ -181,7 +181,7 @@ -STRUTS_2_5_27 +STRUTS_2_5_28_2 scm:git:https://gitbox.apache.org/repos/asf/struts.git scm:git:https://gitbox.apache.org/repos/asf/struts.git https://github.com/apache/struts/ diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index 98532d4..d6aa6ff 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-osgi-bundles -2.5.29-SNAPSHOT +2.5.28.2 struts2-osgi-admin-bundle diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index fbab73d..8e8bcf0 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-osgi-bundles -2.5.29-SNAPSHOT +2.5.28.2 struts2-osgi-demo-bundle diff --git a/bundles/pom.xml b/bundles/pom.xml index 1181254..a4e9e4a 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.29-SNAPSHOT +2.5.28.2 struts2-osgi-bundles diff --git a/core/pom.xml b/core/pom.xml index 2cab900..c846c3c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.29-SNAPSHOT +2.5.28.2 struts2-core jar diff --git a/plugins/bean
[struts] annotated tag STRUTS_2_5_28_2 created (now ac7c18e)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to annotated tag STRUTS_2_5_28_2 in repository https://gitbox.apache.org/repos/asf/struts.git. at ac7c18e (tag) tagging 53aeafd7a2de6bd860e770874a677320ee6677bc (commit) replaces STRUTS_2_5_28_1 by Lukasz Lenart on Wed Dec 22 07:43:14 2021 +0100 - Log - [maven-release-plugin] copy for tag STRUTS_2_5_28_2 --- No new revisions were added by this update.
[struts] branch struts-2-5-x updated: [maven-release-plugin] prepare for next development iteration
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a commit to branch struts-2-5-x in repository https://gitbox.apache.org/repos/asf/struts.git The following commit(s) were added to refs/heads/struts-2-5-x by this push: new 6ae6283 [maven-release-plugin] prepare for next development iteration 6ae6283 is described below commit 6ae6283f5ed4a34a3562932b071458e79b15b065 Author: Lukasz Lenart AuthorDate: Wed Dec 22 07:43:19 2021 +0100 [maven-release-plugin] prepare for next development iteration --- apps/pom.xml| 2 +- apps/rest-showcase/pom.xml | 4 ++-- apps/showcase/pom.xml | 2 +- assembly/pom.xml| 2 +- bom/pom.xml | 6 +++--- bundles/admin/pom.xml | 2 +- bundles/demo/pom.xml| 2 +- bundles/pom.xml | 2 +- core/pom.xml| 2 +- plugins/bean-validation/pom.xml | 2 +- plugins/cdi/pom.xml | 2 +- plugins/config-browser/pom.xml | 2 +- plugins/convention/pom.xml | 2 +- plugins/dwr/pom.xml | 2 +- plugins/embeddedjsp/pom.xml | 2 +- plugins/gxp/pom.xml | 2 +- plugins/jasperreports/pom.xml | 2 +- plugins/javatemplates/pom.xml | 2 +- plugins/jfreechart/pom.xml | 2 +- plugins/json/pom.xml| 2 +- plugins/junit/pom.xml | 2 +- plugins/osgi/pom.xml| 2 +- plugins/oval/pom.xml| 2 +- plugins/pell-multipart/pom.xml | 2 +- plugins/plexus/pom.xml | 2 +- plugins/pom.xml | 2 +- plugins/portlet-tiles/pom.xml | 2 +- plugins/portlet/pom.xml | 2 +- plugins/rest/pom.xml| 2 +- plugins/sitegraph/pom.xml | 2 +- plugins/sitemesh/pom.xml| 2 +- plugins/spring/pom.xml | 2 +- plugins/testng/pom.xml | 2 +- plugins/tiles/pom.xml | 2 +- pom.xml | 6 +++--- 35 files changed, 40 insertions(+), 40 deletions(-) diff --git a/apps/pom.xml b/apps/pom.xml index 57306d3..0b0a58a 100644 --- a/apps/pom.xml +++ b/apps/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.28.2 +2.5.29-SNAPSHOT struts2-apps pom diff --git a/apps/rest-showcase/pom.xml b/apps/rest-showcase/pom.xml index 75efba7..1125bb2 100644 --- a/apps/rest-showcase/pom.xml +++ b/apps/rest-showcase/pom.xml @@ -24,12 +24,12 @@ org.apache.struts struts2-apps -2.5.28.2 +2.5.29-SNAPSHOT struts2-rest-showcase war -2.5.28.2 +2.5.29-SNAPSHOT Struts 2 Rest Showcase Webapp Struts 2 Rest Showcase Example diff --git a/apps/showcase/pom.xml b/apps/showcase/pom.xml index 3061f59..3d9450c 100644 --- a/apps/showcase/pom.xml +++ b/apps/showcase/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-apps -2.5.28.2 +2.5.29-SNAPSHOT struts2-showcase diff --git a/assembly/pom.xml b/assembly/pom.xml index e37d631..c76947d 100644 --- a/assembly/pom.xml +++ b/assembly/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.28.2 +2.5.29-SNAPSHOT struts2-assembly diff --git a/bom/pom.xml b/bom/pom.xml index 5163a18..be11a56 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -30,7 +30,7 @@ struts2-bom -2.5.28.2 +2.5.29-SNAPSHOT pom Struts 2 Bill of Materials @@ -45,7 +45,7 @@ -2.5.28.2 +2.5.29-SNAPSHOT true true @@ -181,7 +181,7 @@ -STRUTS_2_5_28_2 +STRUTS_2_5_27 scm:git:https://gitbox.apache.org/repos/asf/struts.git scm:git:https://gitbox.apache.org/repos/asf/struts.git https://github.com/apache/struts/ diff --git a/bundles/admin/pom.xml b/bundles/admin/pom.xml index d6aa6ff..98532d4 100644 --- a/bundles/admin/pom.xml +++ b/bundles/admin/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-osgi-bundles -2.5.28.2 +2.5.29-SNAPSHOT struts2-osgi-admin-bundle diff --git a/bundles/demo/pom.xml b/bundles/demo/pom.xml index 8e8bcf0..fbab73d 100644 --- a/bundles/demo/pom.xml +++ b/bundles/demo/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-osgi-bundles -2.5.28.2 +2.5.29-SNAPSHOT struts2-osgi-demo-bundle diff --git a/bundles/pom.xml b/bundles/pom.xml index a4e9e4a..1181254 100755 --- a/bundles/pom.xml +++ b/bundles/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.28.2 +2.5.29-SNAPSHOT struts2-osgi-bundles diff --git a/core/pom.xml b/core/pom.xml index c846c3c..2cab900 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -24,7 +24,7 @@ org.apache.struts struts2-parent -2.5.28.2 +2.5.29-SNAPSHOT struts2-core jar diff --git
svn commit: r51696 - /dev/struts/2.5.28.2/
Author: lukaszlenart Date: Wed Dec 22 06:54:47 2021 New Revision: 51696 Log: Updates test release 2.5.28.2 Added: dev/struts/2.5.28.2/ dev/struts/2.5.28.2/struts-2.5.28.2-all.zip (with props) dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.asc (with props) dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha256 dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha512 dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip (with props) dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.asc (with props) dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha256 dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha512 dev/struts/2.5.28.2/struts-2.5.28.2-docs.zip (with props) dev/struts/2.5.28.2/struts-2.5.28.2-docs.zip.asc (with props) dev/struts/2.5.28.2/struts-2.5.28.2-docs.zip.sha256 dev/struts/2.5.28.2/struts-2.5.28.2-docs.zip.sha512 dev/struts/2.5.28.2/struts-2.5.28.2-lib.zip (with props) dev/struts/2.5.28.2/struts-2.5.28.2-lib.zip.asc (with props) dev/struts/2.5.28.2/struts-2.5.28.2-lib.zip.sha256 dev/struts/2.5.28.2/struts-2.5.28.2-lib.zip.sha512 dev/struts/2.5.28.2/struts-2.5.28.2-min-lib.zip (with props) dev/struts/2.5.28.2/struts-2.5.28.2-min-lib.zip.asc (with props) dev/struts/2.5.28.2/struts-2.5.28.2-min-lib.zip.sha256 dev/struts/2.5.28.2/struts-2.5.28.2-min-lib.zip.sha512 dev/struts/2.5.28.2/struts-2.5.28.2-src.zip (with props) dev/struts/2.5.28.2/struts-2.5.28.2-src.zip.asc (with props) dev/struts/2.5.28.2/struts-2.5.28.2-src.zip.sha256 dev/struts/2.5.28.2/struts-2.5.28.2-src.zip.sha512 Added: dev/struts/2.5.28.2/struts-2.5.28.2-all.zip == Binary file - no diff available. Propchange: dev/struts/2.5.28.2/struts-2.5.28.2-all.zip -- svn:mime-type = application/zip Added: dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha256 == --- dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha256 (added) +++ dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha256 Wed Dec 22 06:54:47 2021 @@ -0,0 +1 @@ +4ffc28fe72f83f1e3bfbd954bd4d88d284633815cdd00a06ce5aa1b1233b271e struts-2.5.28.2-all.zip Added: dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha512 == --- dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha512 (added) +++ dev/struts/2.5.28.2/struts-2.5.28.2-all.zip.sha512 Wed Dec 22 06:54:47 2021 @@ -0,0 +1 @@ +2b9d07a9fc65022765bc28c33f7bdf2e883a01dbb071965e87fabda1b48c80142c45972e3604eec4fb892f2176ae1518a88aa53c4d7e46cb6793a4e4dcfcdfa2 struts-2.5.28.2-all.zip Added: dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip == Binary file - no diff available. Propchange: dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip -- svn:mime-type = application/zip Added: dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.asc == Binary file - no diff available. Propchange: dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.asc -- svn:mime-type = application/pgp-signature Added: dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha256 == --- dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha256 (added) +++ dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha256 Wed Dec 22 06:54:47 2021 @@ -0,0 +1 @@ +a5e7dc80e18810cf030511c6fb21af32b823f90afe27de1e0d32aa8f1b09f669 struts-2.5.28.2-apps.zip Added: dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha512 == --- dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha512 (added) +++ dev/struts/2.5.28.2/struts-2.5.28.2-apps.zip.sha512 Wed Dec 22 06:54:47 2021 @@ -0,0 +1 @@ +f6e72091fd936c2c1c822e37b8677d5bed084b1ce71d61a7ca5bc466b50203b0ad1b52e201e7e24441b752cc4b1bc01b098d5745d75e1f760d944a11fe133a57 struts-2.5.28.2-apps.zip Added: dev/struts/2.5.28.2/struts-2.5.28.2-docs.zip == Binary file - no diff available. Propchange: dev/struts/2.5.28.2/struts-2.5.28.2-docs.zip -- svn:mime-type = appl