[struts-site] branch asf-site updated: Updates production by Jenkins

2018-12-09 Thread git-site-role
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 7d5404e  Updates production by Jenkins
7d5404e is described below

commit 7d5404e042d2757fe399bb33df72b666eb6d457f
Author: jenkins 
AuthorDate: Mon Dec 10 07:31:15 2018 +

Updates production by Jenkins
---
 content/core-developers/static-content.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/content/core-developers/static-content.html 
b/content/core-developers/static-content.html
index 6bcc52b..715313c 100644
--- a/content/core-developers/static-content.html
+++ b/content/core-developers/static-content.html
@@ -170,7 +170,7 @@ your static content to the web application directory, and 
let the container hand
 If there is a request that Struts is handling as an action, and you wish to 
make Struts ignore it, you can do so by specifying 
 a comma separated list of regular expressions like:
 
-constant name="struts.action.excludePattern" value="/some/conent/.*?" /
+constant name="struts.action.excludePattern" value="/some/content/.*?" /
 
 
 



[struts-site] branch master updated: Fixes typo

2018-12-09 Thread lukaszlenart
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-site.git


The following commit(s) were added to refs/heads/master by this push:
 new a825215  Fixes typo
a825215 is described below

commit a825215b0a0e50280282a56978f9b918df4ce7c4
Author: Lukasz Lenart 
AuthorDate: Mon Dec 10 08:22:06 2018 +0100

Fixes typo
---
 source/core-developers/static-content.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/core-developers/static-content.md 
b/source/core-developers/static-content.md
index a0fd563..ee60e60 100644
--- a/source/core-developers/static-content.md
+++ b/source/core-developers/static-content.md
@@ -43,7 +43,7 @@ If there is a request that Struts is handling as an action, 
and you wish to make
 a comma separated list of regular expressions like:
 
 ```xml
-
+
 ```
 
 These regular expression will be evaluated against the request's URI 
(`HttpServletRequest.getRequestURI()`), and if any 



[struts-site] branch asf-site updated: Updates production by Jenkins

2018-12-09 Thread git-site-role
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 bf9ba57  Updates production by Jenkins
bf9ba57 is described below

commit bf9ba575c177fa1cda6febeaf5867f2fa5f9c53e
Author: jenkins 
AuthorDate: Sun Dec 9 08:00:54 2018 +

Updates production by Jenkins
---
 content/core-developers/default-properties.html | 3 ++-
 content/core-developers/interceptors.html   | 3 +--
 content/core-developers/struts-default-xml.html | 3 +--
 content/getting-started/using-tags.html | 2 +-
 4 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/content/core-developers/default-properties.html 
b/content/core-developers/default-properties.html
index ff2ede3..3932525 100644
--- a/content/core-developers/default-properties.html
+++ b/content/core-developers/default-properties.html
@@ -216,7 +216,8 @@ struts.multipart.maxSize=2097152
 # struts.custom.properties=application,org/apache/struts2/extension/custom
 
 ### How request URLs are mapped to and from actions
-#struts.mapper.class=org.apache.struts2.dispatcher.mapper.DefaultActionMapper
+### Vy default 'struts' name is used which maps to DefaultActionMapper
+#struts.mapper.class=restful
 
 ### Used by the DefaultActionMapper
 ### You may provide a comma separated list, e.g. 
struts.action.extension=action,jnlp,do
diff --git a/content/core-developers/interceptors.html 
b/content/core-developers/interceptors.html
index fdfc05a..e965204 100644
--- a/content/core-developers/interceptors.html
+++ b/content/core-developers/interceptors.html
@@ -316,6 +316,7 @@ than reiterate the same list of Interceptors, we can bundle 
these Interceptors t
 
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="struts" class="org.apache.struts2.dispatcher.mapper.DefaultActionMapper" 
/
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="composite" class="org.apache.struts2.dispatcher.mapper.CompositeActionMapper" 
/
+bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="prefix" class="org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper" 
/
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="restful" class="org.apache.struts2.dispatcher.mapper.RestfulActionMapper" 
/
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="restful2" class="org.apache.struts2.dispatcher.mapper.Restful2ActionMapper" 
/
 
@@ -398,8 +399,6 @@ than reiterate the same list of Interceptors, we can bundle 
these Interceptors t
 
 bean type="org.apache.struts2.dispatcher.DispatcherErrorHandler" name="struts" class="org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler" 
/
 
-constant name="struts.dispatcher.errorHandler" value="struts" /
-
 !--  Silly workarounds for OGNL since there is 
currently no way to flush its internal caches --
 bean type="ognl.PropertyAccessor" name="java.util.ArrayList" class="com.opensymphony.xwork2.ognl.accessor.XWorkListPropertyAccessor"
 /
 bean type="ognl.PropertyAccessor" name="java.util.HashSet" class="com.opensymphony.xwork2.ognl.accessor.XWorkCollectionPropertyAccessor"
 /
diff --git a/content/core-developers/struts-default-xml.html 
b/content/core-developers/struts-default-xml.html
index 4c0cda6..791689b 100644
--- a/content/core-developers/struts-default-xml.html
+++ b/content/core-developers/struts-default-xml.html
@@ -231,6 +231,7 @@ setting in struts.properties.
 
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="struts" class="org.apache.struts2.dispatcher.mapper.DefaultActionMapper" 
/
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="composite" class="org.apache.struts2.dispatcher.mapper.CompositeActionMapper" 
/
+bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="prefix" class="org.apache.struts2.dispatcher.mapper.PrefixBasedActionMapper" 
/
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="restful" class="org.apache.struts2.dispatcher.mapper.RestfulActionMapper" 
/
 bean type="org.apache.struts2.dispatcher.mapper.ActionMapper" name="restful2" class="org.apache.struts2.dispatcher.mapper.Restful2ActionMapper" 
/
 
@@ -313,8 +314,6 @@ setting in struts.properties.
 
 bean type="org.apache.struts2.dispatcher.DispatcherErrorHandler" name="struts" class="org.apache.struts2.dispatcher.DefaultDispatcherErrorHandler" 
/
 
-constant name="struts.dispatcher.errorHandler" value="struts" /
-
 !--  Silly workarounds for OGNL since there is 
currently no way to flush its internal caches --
 bean type="ognl.PropertyAccessor" name="java.util.ArrayList" class="com.opensymphony.xwork2.ognl.accessor.XWorkListPropertyAccessor"
 /
 bean type="ognl.PropertyAccessor" name="java.util.HashSet"