(struts-site) branch WW-5391-velocity-ext created (now 1d8f8a229)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5391-velocity-ext in repository https://gitbox.apache.org/repos/asf/struts-site.git at 1d8f8a229 WW-5391 Update VelocityManager extension interface This branch includes the following new commits: new 1d8f8a229 WW-5391 Update VelocityManager extension interface The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference.
(struts-site) 01/01: WW-5391 Update VelocityManager extension interface
This is an automated email from the ASF dual-hosted git repository. kusal pushed a commit to branch WW-5391-velocity-ext in repository https://gitbox.apache.org/repos/asf/struts-site.git commit 1d8f8a2291cd3c192279b5d8729d7deabc162413 Author: Kusal Kithul-Godage AuthorDate: Fri Feb 9 13:08:24 2024 +1100 WW-5391 Update VelocityManager extension interface --- source/plugins/plugins-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/plugins/plugins-architecture.md b/source/plugins/plugins-architecture.md index e0a3cc647..f6859022f 100644 --- a/source/plugins/plugins-architecture.md +++ b/source/plugins/plugins-architecture.md @@ -80,7 +80,7 @@ The following extension points are available in Struts 2: | struts.mapper.class | Determines the ActionMapping from a request and a URI from an ActionMapping | singleton | org.apache.struts2.dispatcher.mapper.ActionMapper| | struts.multipart.parser | Parses a multipart request (file upload) | per request | org.apache.struts2.dispatcher.multipart.MultiPartRequest | | struts.freemarker.manager.classname | Loads and processes Freemarker templates | singleton | org.apache.struts2.views.freemarker.FreemarkerManager| -| struts.velocity.manager.classname | Loads and processes Velocity templates | singleton | org.apache.struts2.views.velocity.VelocityManager | +| struts.velocity.manager.classname | Loads and processes Velocity templates | singleton | org.apache.struts2.views.velocity.VelocityManagerInterface | | struts.actionValidatorManager | Main interface for validation managers (regular and annotation based). Handles both the loading of configuration and the actual validation (since 2.1) | singleton | com.opensymphony.xwork2.validator.ActionValidatorManager | | struts.valueStackFactory| Creates value stacks (since 2.1) | singleton | com.opensymphony.xwork2.util.ValueStackFactory | | struts.reflectionProvider | Provides reflection services, key place to plug in a custom expression language (since 2.1) | singleton | com.opensymphony.xwork2.reflection.ReflectionProvider| @@ -319,7 +319,7 @@ public class VelocityBeanSelectionProvider extends AbstractBeanSelectionProvider @Override public void register(ContainerBuilder builder, LocatableProperties props) throws ConfigurationException { -alias(VelocityManager.class, VelocityConstants.STRUTS_VELOCITY_MANAGER_CLASSNAME, builder, props); +alias(VelocityManagerInterface.class, VelocityConstants.STRUTS_VELOCITY_MANAGER_CLASSNAME, builder, props); } }
(struts-site) branch asf-staging updated: Updates stage by Jenkins
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-staging in repository https://gitbox.apache.org/repos/asf/struts-site.git The following commit(s) were added to refs/heads/asf-staging by this push: new ff0eb98b9 Updates stage by Jenkins ff0eb98b9 is described below commit ff0eb98b96131d8f9a5fac0ef909bd39bb0f4287 Author: jenkins AuthorDate: Fri Feb 9 02:14:12 2024 + Updates stage by Jenkins --- content/plugins/plugins-architecture.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/plugins/plugins-architecture.html b/content/plugins/plugins-architecture.html index 72b5c3a72..8d3f865bb 100644 --- a/content/plugins/plugins-architecture.html +++ b/content/plugins/plugins-architecture.html @@ -306,7 +306,7 @@ For example, a plugin could provide a new class to create Action classes or map struts.velocity.manager.classname Loads and processes Velocity templates singleton - org.apache.struts2.views.velocity.VelocityManager + org.apache.struts2.views.velocity.VelocityManagerInterface struts.actionValidatorManager @@ -699,7 +699,7 @@ with no-arguments constructor: @Override public void register(ContainerBuilder builder, LocatableProperties props) throws ConfigurationException { -alias(VelocityManager.class, VelocityConstants.STRUTS_VELOCITY_MANAGER_CLASSNAME, builder, props); +alias(VelocityManagerInterface.class, VelocityConstants.STRUTS_VELOCITY_MANAGER_CLASSNAME, builder, props); } }
(struts) branch release/struts-7-0-x updated (e6d1f59de -> d384c824b)
This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch release/struts-7-0-x in repository https://gitbox.apache.org/repos/asf/struts.git from e6d1f59de Merge pull request #869 from apache/fix/temp-folder add caa34a497 Update log4j2 to 2.21.1 add ade8af377 [WW-5384] Update log4j2 to 2.22.1 add f8fcdbde5 [WW-5393] Update caffeine to 3.1.8 add d1413b01c Override version of error_prone_annotations add d384c824b Merge pull request #870 from sepe81/feature/update-log42j-for-java-version-after-8 No new revisions were added by this update. Summary of changes: pom.xml | 11 +-- 1 file changed, 9 insertions(+), 2 deletions(-)
(struts-site) branch WW-5391-velocity-ext deleted (was 1d8f8a229)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch WW-5391-velocity-ext in repository https://gitbox.apache.org/repos/asf/struts-site.git was 1d8f8a229 WW-5391 Update VelocityManager extension interface The revisions that were on this branch are still contained in other references; therefore, this change does not discard any commits from the repository.
(struts-site) 01/01: Merge pull request #229 from apache/WW-5391-velocity-ext
This is an automated email from the ASF dual-hosted git repository. kusal pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git commit 683768047ad14cf9783a738e1fb3f9b61dd4ffe7 Merge: 89ccb8db6 1d8f8a229 Author: Kusal Kithul-Godage AuthorDate: Fri Feb 9 17:42:53 2024 +1100 Merge pull request #229 from apache/WW-5391-velocity-ext source/plugins/plugins-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
(struts-site) branch master updated (89ccb8db6 -> 683768047)
This is an automated email from the ASF dual-hosted git repository. kusal pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/struts-site.git from 89ccb8db6 Merge pull request #228 from apache/fix/tiles add 1d8f8a229 WW-5391 Update VelocityManager extension interface new 683768047 Merge pull request #229 from apache/WW-5391-velocity-ext The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: source/plugins/plugins-architecture.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
(struts-site) branch asf-site updated: Automatic Site Publish by Buildbot
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-site in repository https://gitbox.apache.org/repos/asf/struts-site.git The following commit(s) were added to refs/heads/asf-site by this push: new 07e4bbb02 Automatic Site Publish by Buildbot 07e4bbb02 is described below commit 07e4bbb02dc25517169e1e9e4676986e4b05d8b3 Author: buildbot AuthorDate: Fri Feb 9 06:43:30 2024 + Automatic Site Publish by Buildbot --- output/plugins/plugins-architecture.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/output/plugins/plugins-architecture.html b/output/plugins/plugins-architecture.html index 72b5c3a72..8d3f865bb 100644 --- a/output/plugins/plugins-architecture.html +++ b/output/plugins/plugins-architecture.html @@ -306,7 +306,7 @@ For example, a plugin could provide a new class to create Action classes or map struts.velocity.manager.classname Loads and processes Velocity templates singleton - org.apache.struts2.views.velocity.VelocityManager + org.apache.struts2.views.velocity.VelocityManagerInterface struts.actionValidatorManager @@ -699,7 +699,7 @@ with no-arguments constructor: @Override public void register(ContainerBuilder builder, LocatableProperties props) throws ConfigurationException { -alias(VelocityManager.class, VelocityConstants.STRUTS_VELOCITY_MANAGER_CLASSNAME, builder, props); +alias(VelocityManagerInterface.class, VelocityConstants.STRUTS_VELOCITY_MANAGER_CLASSNAME, builder, props); } }
(struts-site) branch asf-staging updated: Updates stage by Jenkins
This is an automated email from the ASF dual-hosted git repository. git-site-role pushed a commit to branch asf-staging in repository https://gitbox.apache.org/repos/asf/struts-site.git The following commit(s) were added to refs/heads/asf-staging by this push: new 954ff3d78 Updates stage by Jenkins 954ff3d78 is described below commit 954ff3d78ef5de44b32845fd2fb41f87d95aa097 Author: jenkins AuthorDate: Fri Feb 9 06:43:54 2024 + Updates stage by Jenkins