[struts] branch master updated (15a3ca1 -> 8567c22)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git.


from 15a3ca1  Upgrades struts-annotations to 1.0.7
 add 8326535  WW-5054 Allows omit class/packages restrictions in devMode
 add a270fd3  WW-5054 Does not escapes debug results
 add 2c02100  WW-5054 Fixes links in config-browser
 add 3afd682  WW-5054 Ignores internal security in devMode
 add a844265  WW-5054 Uses a dedicated set of excluded classes & packages 
to be used in devMode
 add 1a0ef45  WW-5054 Adds a test to cover new logic
 add 6046363  WW-5054 Uses action as a starting point for debugging
 new 8567c22  Merge pull request #393 from apache/WW-5054-debug-browser

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:
 .../com/opensymphony/xwork2/ognl/OgnlUtil.java | 139 +++---
 .../java/org/apache/struts2/StrutsConstants.java   |   5 +
 .../struts2/config/entities/ConstantConfig.java|  32 +-
 .../debugging/DebuggingInterceptor.java| 110 ++---
 .../interceptor/debugging/ObjectToHTMLWriter.java  |  36 +-
 .../struts2/interceptor/debugging/browser.ftl  |   2 +-
 core/src/main/resources/struts-default.xml |  34 ++
 .../com/opensymphony/xwork2/ognl/OgnlUtilTest.java | 485 +++--
 .../java/com/opensymphony/xwork2/util/Foo.java |   5 +
 .../config/entities/ConstantConfigTest.java|  47 +-
 .../main/resources/config-browser/actionNames.ftl  |   2 +-
 .../main/resources/config-browser/showConfig.ftl   |   4 +-
 12 files changed, 527 insertions(+), 374 deletions(-)



[struts] 01/01: Merge pull request #393 from apache/WW-5054-debug-browser

2020-02-23 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.git

commit 8567c22e9ef5fa76bcfd156519ab936829c1a030
Merge: 15a3ca1 6046363
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 10:48:06 2020 +0100

Merge pull request #393 from apache/WW-5054-debug-browser

[WW-5054] debug=browser

 .../com/opensymphony/xwork2/ognl/OgnlUtil.java | 139 +++---
 .../java/org/apache/struts2/StrutsConstants.java   |   5 +
 .../struts2/config/entities/ConstantConfig.java|  32 +-
 .../debugging/DebuggingInterceptor.java| 110 ++---
 .../interceptor/debugging/ObjectToHTMLWriter.java  |  36 +-
 .../struts2/interceptor/debugging/browser.ftl  |   2 +-
 core/src/main/resources/struts-default.xml |  34 ++
 .../com/opensymphony/xwork2/ognl/OgnlUtilTest.java | 485 +++--
 .../java/com/opensymphony/xwork2/util/Foo.java |   5 +
 .../config/entities/ConstantConfigTest.java|  47 +-
 .../main/resources/config-browser/actionNames.ftl  |   2 +-
 .../main/resources/config-browser/showConfig.ftl   |   4 +-
 12 files changed, 527 insertions(+), 374 deletions(-)



[struts] 02/02: WW-5047 Updates JavaDoc to match with new behaviour

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-5047-new-velocity
in repository https://gitbox.apache.org/repos/asf/struts.git

commit d5bc76d772b6ce49d83bd852715d23946a2f44c4
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 11:05:53 2020 +0100

WW-5047 Updates JavaDoc to match with new behaviour
---
 .../main/java/org/apache/struts2/views/velocity/VelocityManager.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java
 
b/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java
index fc2bfb8..9ea9d7a 100644
--- 
a/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java
+++ 
b/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/VelocityManager.java
@@ -167,7 +167,7 @@ public class VelocityManager {
  * @param servletRequest  the servlet request object
  * @param servletResponse the servlet response object
  * @param extraContextmap with extra context
- * @return an VelocityContext[] of contexts to chain
+ * @return a List of contexts to chain or an empty list
  */
 protected List prepareChainedContexts(HttpServletRequest 
servletRequest, HttpServletResponse servletResponse, Map 
extraContext) {
 List contextList = new ArrayList<>();



[struts] branch WW-5047-new-velocity updated (6da1693 -> d5bc76d)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch WW-5047-new-velocity
in repository https://gitbox.apache.org/repos/asf/struts.git.


from 6da1693  WW-5047 Lowers log level to debug
 new 35aae07  WW-5047 Marks previous constructors as deprecated
 new d5bc76d  WW-5047 Updates JavaDoc to match with new behaviour

The 2 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:
 .../views/velocity/StrutsVelocityContext.java  | 30 +++---
 .../struts2/views/velocity/VelocityManager.java|  2 +-
 2 files changed, 27 insertions(+), 5 deletions(-)



[struts] 01/02: WW-5047 Marks previous constructors as deprecated

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch WW-5047-new-velocity
in repository https://gitbox.apache.org/repos/asf/struts.git

commit 35aae077c8254fa7cc7a9e366564968b147df827
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 10:55:42 2020 +0100

WW-5047 Marks previous constructors as deprecated
---
 .../views/velocity/StrutsVelocityContext.java  | 30 +++---
 1 file changed, 26 insertions(+), 4 deletions(-)

diff --git 
a/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/StrutsVelocityContext.java
 
b/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/StrutsVelocityContext.java
index 62ac6c7..0b4bc73 100644
--- 
a/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/StrutsVelocityContext.java
+++ 
b/plugins/velocity/src/main/java/org/apache/struts2/views/velocity/StrutsVelocityContext.java
@@ -22,6 +22,8 @@ import org.apache.velocity.VelocityContext;
 
 import com.opensymphony.xwork2.util.ValueStack;
 
+import java.util.ArrayList;
+import java.util.Arrays;
 import java.util.List;
 
 public class StrutsVelocityContext extends VelocityContext {
@@ -29,15 +31,35 @@ public class StrutsVelocityContext extends VelocityContext {
 private ValueStack stack;
 private List chainedContexts;
 
-public StrutsVelocityContext(ValueStack stack) {
-this(null, stack);
-}
-
+/**
+ * Creates a content with link to the ValueStack and any other Velocity 
contexts
+ *
+ * @param chainedContexts Existing Velocity contexts to chain to
+ * @param stack Struts ValueStack
+ * @since 2.6
+ */
 public StrutsVelocityContext(List chainedContexts, 
ValueStack stack) {
 this.chainedContexts = chainedContexts;
 this.stack = stack;
 }
 
+/**
+ * @deprecated please use newly added {@link 
StrutsVelocityContext(List) null, stack);
+}
+
+/**
+ * @deprecated please use newly added {@link 
StrutsVelocityContext(List(Arrays.asList(chainedContexts)), stack);
+}
+
 public boolean internalContainsKey(String key) {
 boolean contains = super.internalContainsKey(key);
 



[struts] branch master updated: Drops html tag from a message

2020-02-23 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.git


The following commit(s) were added to refs/heads/master by this push:
 new cd6c36e  Drops html tag from a message
cd6c36e is described below

commit cd6c36ead9aeef4fa83fa8fdd5e00e8a261a524f
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 12:55:36 2020 +0100

Drops html tag from a message
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 05e0d30..a6812c3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -174,7 +174,7 @@ pipeline {
 body: """
   BUILD-FAILURE: Job '${env.JOB_NAME} [${env.BRANCH_NAME}] 
[${env.BUILD_NUMBER}]':

-  Check console output at "${env.JOB_NAME} [${env.BRANCH_NAME}] 
[${env.BUILD_NUMBER}]"
+  Check console output at ${env.BUILD_URL}
 """.stripMargin(),
 to: "d...@struts.apache.org",
 recipientProviders: [[$class: 'DevelopersRecipientProvider']]
@@ -190,7 +190,7 @@ pipeline {
 body: """
   BUILD-UNSTABLE: Job '${env.JOB_NAME} [${env.BRANCH_NAME}] 
[${env.BUILD_NUMBER}]':

-  Check console output at "${env.JOB_NAME} [${env.BRANCH_NAME}] 
[${env.BUILD_NUMBER}]"
+  Check console output at ${env.BUILD_URL}
 """.stripMargin(),
 to: "d...@struts.apache.org",
 recipientProviders: [[$class: 'DevelopersRecipientProvider']]



[struts-site] branch fixes-tags updated (84e20ad -> 91774d8)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fixes-tags
in repository https://gitbox.apache.org/repos/asf/struts-site.git.


from 84e20ad  Cleans up and reformats the rest of docs
 add 91774d8  Fixes duplicated bold forma

No new revisions were added by this update.

Summary of changes:
 source/tag-developers/tag-syntax.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



[struts] 02/02: Fixes BOM to use the same parent as the main project

2020-02-23 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.git

commit f73f49460565a6668563f0d8a40370533e48814b
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 13:58:42 2020 +0100

Fixes BOM to use the same parent as the main project
---
 bom/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bom/pom.xml b/bom/pom.xml
index aeed166..a454918 100644
--- a/bom/pom.xml
+++ b/bom/pom.xml
@@ -25,7 +25,7 @@
 
 org.apache.struts
 struts-master
-13
+14
 
 
 struts2-bom



[struts] branch master updated (cd6c36e -> f73f494)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git.


from cd6c36e  Drops html tag from a message
 new ad2d5fd  Purges local repository to re-resolve missing dependencies
 new f73f494  Fixes BOM to use the same parent as the main project

The 2 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:
 Jenkinsfile | 1 +
 bom/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)



[struts] 01/02: Purges local repository to re-resolve missing dependencies

2020-02-23 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.git

commit ad2d5fddd7166f8321055ac33e2d700c9a042a32
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 13:58:18 2020 +0100

Purges local repository to re-resolve missing dependencies
---
 Jenkinsfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Jenkinsfile b/Jenkinsfile
index a6812c3..9769d01 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -21,6 +21,7 @@ pipeline {
 stage('Clean up') {
   steps {
 cleanWs deleteDirs: true, patterns: [[pattern: '**/target/**', 
type: 'INCLUDE']]
+sh 'mvn dependency:purge-local-repository'
   }
 }
   }



[struts] branch master updated: Adds missing tool section

2020-02-23 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.git


The following commit(s) were added to refs/heads/master by this push:
 new 3d2a519  Adds missing tool section
3d2a519 is described below

commit 3d2a519399f460194a378ba523c5c30d585d047b
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 14:04:20 2020 +0100

Adds missing tool section
---
 Jenkinsfile | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 9769d01..542d5ae 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,11 +17,15 @@ pipeline {
   agent {
 label 'ubuntu'
   }
+  tools {
+jdk 'JDK 8 (latest)'
+maven 'Maven (latest)'
+  }
   stages {
 stage('Clean up') {
   steps {
 cleanWs deleteDirs: true, patterns: [[pattern: '**/target/**', 
type: 'INCLUDE']]
-sh 'mvn dependency:purge-local-repository'
+sh 'mvn -B dependency:purge-local-repository'
   }
 }
   }



[struts] branch master updated: Uses proper version of JDK to cleanup

2020-02-23 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.git


The following commit(s) were added to refs/heads/master by this push:
 new 9e2f45c  Uses proper version of JDK to cleanup
9e2f45c is described below

commit 9e2f45c801b65669b207662d18438ff02b518bf0
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 14:13:05 2020 +0100

Uses proper version of JDK to cleanup
---
 Jenkinsfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 542d5ae..0866b57 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -18,7 +18,7 @@ pipeline {
 label 'ubuntu'
   }
   tools {
-jdk 'JDK 8 (latest)'
+jdk 'JDK 1.8 (latest)'
 maven 'Maven (latest)'
   }
   stages {



[struts-site] branch fixes-tags updated (91774d8 -> 3a820bc)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fixes-tags
in repository https://gitbox.apache.org/repos/asf/struts-site.git.


from 91774d8  Fixes duplicated bold forma
 add 3a820bc  Uses proper layout and marks Dojo/Ajax related pages as 
deprecated

No new revisions were added by this update.

Summary of changes:
 source/tag-developers/access-to-valuestack-from-jsps.md | 4 ++--
 source/tag-developers/ajax-a-template.md| 6 --
 source/tag-developers/ajax-and-javascript-recipes.md| 6 +++---
 source/tag-developers/ajax-div-template.md  | 4 ++--
 source/tag-developers/ajax-event-system.md  | 4 +++-
 source/tag-developers/ajax-head-template.md | 4 +++-
 source/tag-developers/ajax-tags.md  | 5 ++---
 source/tag-developers/ajax-theme.md | 4 ++--
 source/tag-developers/alt-syntax.md | 2 +-
 source/tag-developers/cewolf-charts-using-velocity-templates.md | 2 +-
 source/tag-developers/css-xhtml-theme.md| 2 +-
 source/tag-developers/dojo-a-tag.md | 4 +++-
 source/tag-developers/dojo-autocompleter-tag.md | 4 +++-
 source/tag-developers/dojo-bind-tag.md  | 4 +++-
 source/tag-developers/dojo-datetimepicker-tag.md| 4 +++-
 source/tag-developers/dojo-div-tag.md   | 4 +++-
 source/tag-developers/dojo-head-tag.md  | 4 +++-
 source/tag-developers/dojo-submit-tag.md| 4 +++-
 source/tag-developers/dojo-tabbedpanel-tag.md   | 4 +++-
 source/tag-developers/dojo-textarea-tag.md  | 4 +++-
 source/tag-developers/dojo-tree-tag.md  | 4 +++-
 source/tag-developers/dojo-treenode-tag.md  | 4 +++-
 source/tag-developers/extending-themes.md   | 2 +-
 source/tag-developers/form-tags.md  | 2 +-
 source/tag-developers/freemarker-tags.md| 2 +-
 source/tag-developers/freemarker.md | 2 +-
 source/tag-developers/generic-tags.md   | 2 +-
 source/tag-developers/jsp-tags.md   | 2 +-
 source/tag-developers/jsp.md| 2 +-
 source/tag-developers/ognl-basics.md| 2 +-
 source/tag-developers/ognl-expression-compilation.md| 2 +-
 source/tag-developers/ognl.md   | 2 +-
 source/tag-developers/selecting-template-directory.md   | 2 +-
 source/tag-developers/selecting-themes.md   | 2 +-
 source/tag-developers/simple-theme.md   | 2 +-
 source/tag-developers/struts-tags.md| 2 +-
 source/tag-developers/tag-reference.md  | 2 +-
 source/tag-developers/template-loading.md   | 2 +-
 source/tag-developers/textarea-tag.md   | 2 +-
 source/tag-developers/themes-and-templates.md   | 2 +-
 source/tag-developers/ui-tags.md| 2 +-
 source/tag-developers/velocity-tags.md  | 2 +-
 source/tag-developers/velocity.md   | 2 +-
 source/tag-developers/xhtml-theme.md| 2 +-
 44 files changed, 79 insertions(+), 52 deletions(-)



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

2020-02-23 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-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 99cdcfd  Updates stage by Jenkins
99cdcfd is described below

commit 99cdcfd442d14f163f5484981dedfca496d06a13
Author: jenkins 
AuthorDate: Sun Feb 23 15:22:15 2020 +

Updates stage by Jenkins
---
 content/tag-developers/access-to-valuestack-from-jsps.html| 4 +++-
 content/tag-developers/ajax-a-template.html   | 8 +++-
 content/tag-developers/ajax-and-javascript-recipes.html   | 8 ++--
 content/tag-developers/ajax-div-template.html | 4 +++-
 content/tag-developers/ajax-event-system.html | 6 ++
 content/tag-developers/ajax-head-template.html| 6 ++
 content/tag-developers/ajax-tags.html | 6 +-
 content/tag-developers/ajax-theme.html| 2 +-
 content/tag-developers/alt-syntax.html| 2 ++
 .../tag-developers/cewolf-charts-using-velocity-templates.html| 2 ++
 content/tag-developers/dojo-a-tag.html| 6 ++
 content/tag-developers/dojo-autocompleter-tag.html| 6 ++
 content/tag-developers/dojo-bind-tag.html | 6 ++
 content/tag-developers/dojo-datetimepicker-tag.html   | 6 ++
 content/tag-developers/dojo-div-tag.html  | 6 ++
 content/tag-developers/dojo-head-tag.html | 6 ++
 content/tag-developers/dojo-submit-tag.html   | 6 ++
 content/tag-developers/dojo-tabbedpanel-tag.html  | 6 ++
 content/tag-developers/dojo-textarea-tag.html | 6 ++
 content/tag-developers/dojo-tree-tag.html | 6 ++
 content/tag-developers/dojo-treenode-tag.html | 6 ++
 content/tag-developers/extending-themes.html  | 2 ++
 content/tag-developers/form-tags.html | 2 ++
 content/tag-developers/freemarker-tags.html   | 2 ++
 content/tag-developers/freemarker.html| 2 ++
 content/tag-developers/generic-tags.html  | 2 ++
 content/tag-developers/jsp-tags.html  | 2 ++
 content/tag-developers/jsp.html   | 2 ++
 content/tag-developers/ognl-basics.html   | 2 ++
 content/tag-developers/ognl-expression-compilation.html   | 2 ++
 content/tag-developers/ognl.html  | 2 ++
 content/tag-developers/selecting-template-directory.html  | 2 ++
 content/tag-developers/selecting-themes.html  | 2 ++
 content/tag-developers/struts-tags.html   | 2 ++
 content/tag-developers/tag-reference.html | 2 ++
 content/tag-developers/template-loading.html  | 2 ++
 content/tag-developers/textarea-tag.html  | 2 ++
 content/tag-developers/themes-and-templates.html  | 2 ++
 content/tag-developers/ui-tags.html   | 2 ++
 content/tag-developers/velocity-tags.html | 2 ++
 content/tag-developers/velocity.html  | 2 ++
 41 files changed, 147 insertions(+), 7 deletions(-)

diff --git a/content/tag-developers/access-to-valuestack-from-jsps.html 
b/content/tag-developers/access-to-valuestack-from-jsps.html
index f079781..4e5b63a 100644
--- a/content/tag-developers/access-to-valuestack-from-jsps.html
+++ b/content/tag-developers/access-to-valuestack-from-jsps.html
@@ -7,7 +7,7 @@
   
   
 
-  Tag Developers Guide
+  Access to ValueStack from JSPs
 
   
   
@@ -127,6 +127,8 @@
   
 https://github.com/apache/struts-site/edit/master/source/tag-developers/access-to-valuestack-from-jsps.md";
 title="Edit this page on GitHub">Edit on GitHub
 
+<< back to Tag 
Developers Guide
+
 Access to ValueStack from JSPs
 
 To access the ValueStack from third-party JSP taglibs, expose property 
values to JSP using the  
tag.
diff --git a/content/tag-developers/ajax-a-template.html 
b/content/tag-developers/ajax-a-template.html
index c0e71cc..f14b5ae 100644
--- a/content/tag-developers/ajax-a-template.html
+++ b/content/tag-developers/ajax-a-template.html
@@ -7,7 +7,7 @@
   
   
 
-  Tag Developers Guide
+  Ajax a template
 
   
   
@@ -127,8 +127,14 @@
   
 https://github.com/apache/struts-site/edit/master/source/tag-developers/ajax-a-template.md";
 title="Edit this page on GitHub">Edit on GitHub
 
+<< back to Tag 
Developers Guide
+
 ajax a template
 
+
+  NOTE: Ajax template (Dojo

[struts] branch master updated: Removes purge local repo to avoid problems with concurrent builds

2020-02-23 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.git


The following commit(s) were added to refs/heads/master by this push:
 new f0defd0  Removes purge local repo to avoid problems with concurrent 
builds
f0defd0 is described below

commit f0defd0650da80fbf2f4033a952772da57a95246
Author: Lukasz Lenart 
AuthorDate: Sun Feb 23 19:15:26 2020 +0100

Removes purge local repo to avoid problems with concurrent builds
---
 Jenkinsfile | 5 -
 1 file changed, 5 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0866b57..a6812c3 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -17,15 +17,10 @@ pipeline {
   agent {
 label 'ubuntu'
   }
-  tools {
-jdk 'JDK 1.8 (latest)'
-maven 'Maven (latest)'
-  }
   stages {
 stage('Clean up') {
   steps {
 cleanWs deleteDirs: true, patterns: [[pattern: '**/target/**', 
type: 'INCLUDE']]
-sh 'mvn -B dependency:purge-local-repository'
   }
 }
   }



[struts-site] branch fixes-tags updated (3a820bc -> 130f9b8)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fixes-tags
in repository https://gitbox.apache.org/repos/asf/struts-site.git.


from 3a820bc  Uses proper layout and marks Dojo/Ajax related pages as 
deprecated
 add 5b5e263  Uses proper tagging for a header
 add 3a9549e  Uses var instead of id which was dropped
 add 130f9b8  Updates page to fit current tag refernce setup

No new revisions were added by this update.

Summary of changes:
 source/tag-developers/if-tag.md   |   2 +-
 source/tag-developers/tag-syntax.md   |   2 +-
 source/tag-developers/textarea-tag.md | 826 +-
 3 files changed, 16 insertions(+), 814 deletions(-)



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

2020-02-23 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-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 2f4ca04  Updates stage by Jenkins
2f4ca04 is described below

commit 2f4ca04a7b3cce1068729363519e18cd49e3bb57
Author: jenkins 
AuthorDate: Mon Feb 24 07:43:43 2020 +

Updates stage by Jenkins
---
 content/tag-developers/if-tag.html   |   2 +-
 content/tag-developers/tag-syntax.html   |   2 +-
 content/tag-developers/textarea-tag.html | 814 +--
 3 files changed, 13 insertions(+), 805 deletions(-)

diff --git a/content/tag-developers/if-tag.html 
b/content/tag-developers/if-tag.html
index 2baf651..786589f 100644
--- a/content/tag-developers/if-tag.html
+++ b/content/tag-developers/if-tag.html
@@ -133,7 +133,7 @@
 
 Please make sure you have read the Tag Syntax 
document and understand how tag attribute syntax works.
 
-Description__
+Description
 
 Perform basic condition flow. if tag 
could be used by itself or can be followed by zero or more elseif tags 
 followed by zero or one else tag.
diff --git a/content/tag-developers/tag-syntax.html 
b/content/tag-developers/tag-syntax.html
index 97e9309..b776fe2 100644
--- a/content/tag-developers/tag-syntax.html
+++ b/content/tag-developers/tag-syntax.html
@@ -255,7 +255,7 @@ within quotes
 
   
   Another way to refer to a property placed on the Value Stack.
-
+
   es
 
 Espanol
diff --git a/content/tag-developers/textarea-tag.html 
b/content/tag-developers/textarea-tag.html
index b6e9792..279f716 100644
--- a/content/tag-developers/textarea-tag.html
+++ b/content/tag-developers/textarea-tag.html
@@ -7,7 +7,7 @@
   
   
 
-  Tag Developers Guide
+  textarea tag
 
   
   
@@ -127,818 +127,26 @@
   
 https://github.com/apache/struts-site/edit/master/source/tag-developers/textarea-tag.md";
 title="Edit this page on GitHub">Edit on GitHub
 
-<< back to Tag 
Developers Guide
+<< back to Tag 
Reference
 
 textarea
 
-Please make sure you have read the Tag Syntax 
document and understand how tag attribute syntax works.
+Please make sure you have read the Tag Syntax 
document and understand how tag attribute syntax works.
 
-
-  
-
-
-  
-
+Description
 
-Description
+Render HTML textarea tag.
 
- Render HTML textarea tag.
-
+Render HTML textarea tag.
 
-Parameters
+Attributes
 
-
+404: Not Found
 
-   
-
-   Dynamic Attributes 
Allowed: true
-
-   
-
-   
-
-    
-
-   
-
-   
-
-   Name
-
-   Required
-
-   Default
-
-   Evaluated
-
-   Type
-
-   Description
-
-   
-
-   
-
-   accesskey
-
-   false
-
-   
-
-   false
-
-   String
-
-   Set the 
html accesskey attribute on rendered html element
-
-   
-
-   
-
-   class
-
-   false
-
-   
-
-   false
-
-   String
-
-   The css 
class to use for element - it's an alias of cssClass attribute.
-
-   
-
-   
-
-   cols
-
-   false
-
-   
-
-   false
-
-   Integer
-
-   HTML cols 
attribute
-
-   
-
-   
-
-   cssClass
-
-   false
-
-   
-
-   false
-
-   String
-
-   The css 
class to use for element
-
-   
-
-   
-
-   cssErrorClass
-
-   false
-
-   
-
-   f

[struts-site] branch fixes-tags updated (130f9b8 -> f38e086)

2020-02-23 Thread lukaszlenart
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch fixes-tags
in repository https://gitbox.apache.org/repos/asf/struts-site.git.


from 130f9b8  Updates page to fit current tag refernce setup
 add f38e086  Fixes small typo

No new revisions were added by this update.

Summary of changes:
 source/tag-developers/textarea-tag.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



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

2020-02-23 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-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 4304b50  Updates stage by Jenkins
4304b50 is described below

commit 4304b508c1cb75882d0e68eb5e72dfc1ef8875e3
Author: jenkins 
AuthorDate: Mon Feb 24 07:46:08 2020 +

Updates stage by Jenkins
---
 content/tag-developers/textarea-tag.html | 393 ++-
 1 file changed, 392 insertions(+), 1 deletion(-)

diff --git a/content/tag-developers/textarea-tag.html 
b/content/tag-developers/textarea-tag.html
index 279f716..396a8a9 100644
--- a/content/tag-developers/textarea-tag.html
+++ b/content/tag-developers/textarea-tag.html
@@ -141,7 +141,398 @@
 
 Attributes
 
-404: Not Found
+
+
+Dynamic Attributes Allowed: true
+
+
+ 
+
+
+Name
+Required
+Default
+Evaluated
+Type
+Description
+
+
+accesskey
+false
+
+false
+String
+Set the html accesskey attribute on 
rendered html element
+
+
+class
+false
+
+false
+String
+The css class to use for element - 
it's an alias of cssClass attribute.
+
+
+cols
+false
+
+false
+Integer
+HTML cols attribute
+
+
+cssClass
+false
+
+false
+String
+The css class to use for element
+
+
+cssErrorClass
+false
+
+false
+String
+The css error class to use for 
element
+
+
+cssErrorStyle
+false
+
+false
+String
+The css error style definitions for 
element to use
+
+
+cssStyle
+false
+
+false
+String
+The css style definitions for 
element to use
+
+
+disabled
+false
+
+false
+String
+Set the html disabled attribute on 
rendered html element
+
+
+errorPosition
+false
+
+false
+String
+Define error position of form 
element (top|bottom)
+
+
+id
+false
+
+false
+String
+HTML id attribute
+
+
+javascriptTooltip
+false
+false
+false
+Boolean
+Use JavaScript to generate 
tooltips
+
+
+key
+false
+
+false
+String
+Set the key (name, value, label) for 
this particular component
+
+
+label
+false
+
+false
+String
+Label expression used for rendering 
an element specific label
+
+
+labelSeparator
+false
+:
+false
+String
+String that will be appended to the 
label
+
+
+labelposition
+false
+
+false
+String
+Define label position of form 
element (top/left)
+
+
+name
+false
+
+false
+String
+The name to set for element
+
+
+onblur
+false
+
+false
+String
+ Set the html onblur attribute on 
rendered html element
+
+
+onchange
+false
+
+false
+String
+Set the html onchange attribute on 
rendered html element
+
+
+onclick
+false
+
+false
+String
+Set the html onclick attribute on 
rendered html element
+
+
+ondblclick
+false
+
+false
+String
+Set the html ondblclick attribute on 
rendered html element
+
+
+onfocus
+false
+
+false
+String
+Set the html onfocus attribute on 
rendered html element
+
+
+onkeydown
+false
+
+false
+String
+Set the html onkeydown attribute on 
rendered html element
+
+
+on