[struts-site] branch master updated: WW-5169 Uses proper links to Java 8 API

2022-02-08 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 6a560cd  WW-5169 Uses proper links to Java 8 API
6a560cd is described below

commit 6a560cdb1793a7b40c3255b9f5853a5a215112cd
Author: Lukasz Lenart 
AuthorDate: Tue Feb 8 16:18:55 2022 +0100

WW-5169 Uses proper links to Java 8 API
---
 source/primer.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/source/primer.md b/source/primer.md
index 80c524b..aa39aa7 100644
--- a/source/primer.md
+++ b/source/primer.md
@@ -110,16 +110,16 @@ Struts, it will help you when your application grows and 
becomes more complex.
  Properties Files and ResourceBundles {#resources}
 
 Java applications, including web applications, are often
-configured using 
[Properties](http://docs.oracle.com/javase/6/docs/api/java/util/Properties)
+configured using 
[Properties](https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html)
 files. Properties files are the basis for the
-[ResourceBundles](http://docs.oracle.com/javase/6/docs/api/java/util/ResourceBundle)
+[ResourceBundles](https://docs.oracle.com/javase/8/docs/api/java/util/ResourceBundle.html)
 that the framework uses to provide message resources to an application.
 
 The Java Tutorials provide a
 [great introduction to 
Properties](http://docs.oracle.com/javase/tutorial/essential/environment/properties).
 
 Java ResourceBundles use one or more Properties files to provide 
internationalized messages
-to users based their 
[Locale](http://docs.oracle.com/javase/6/docs/api/java/util/Locale).
+to users based their 
[Locale](https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html).
 Support for localizing an application was built into the framework from the 
ground-up.
 
 Again the Java Tutorials provide


[struts-site] branch asf-site updated: Automatic Site Publish by Buildbot

2022-02-08 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 cdc13cf  Automatic Site Publish by Buildbot
cdc13cf is described below

commit cdc13cf8f98f3bc485d96d643ed82bd181508d47
Author: buildbot 
AuthorDate: Tue Feb 8 15:19:33 2022 +

Automatic Site Publish by Buildbot
---
 output/core-developers/default-properties.html | 7 ++-
 output/primer.html | 6 +++---
 output/tag-developers/a-tag.html   | 2 +-
 output/tag-developers/submit-tag.html  | 2 +-
 4 files changed, 11 insertions(+), 6 deletions(-)

diff --git a/output/core-developers/default-properties.html 
b/output/core-developers/default-properties.html
index 0d600f7..50f59a8 100644
--- a/output/core-developers/default-properties.html
+++ b/output/core-developers/default-properties.html
@@ -295,6 +295,11 @@ struts.ui.theme.expansion.token=~~~
 ### Sets the default template type. Either ftl, vm, or jsp
 struts.ui.templateSuffix=ftl
 
+### Sets a global flag which will escape html body of Anchor, Submit and 
Component tag
+### You can control this flag per tag, e.g.: ...
+### and this take precedence over the global flag
+# struts.ui.escapeHtmlBody=true
+
 ### Configuration reloading
 ### This will cause the configuration to reload struts.xml when it is changed
 # struts.configuration.xml.reload=false
@@ -374,7 +379,7 @@ struts.handle.exception=true
 
 ### Applies maximum length allowed on OGNL expressions for security 
enhancement (optional)
 ###
-### **WARNING**: If developers enable this option (by configuration) they 
should make sure that they understand the implications of setting 
+### **WARNING**: If developers enable this option (by configuration) they 
should make sure that they understand the implications of setting
 ###   struts.ognl.expressionMaxLength.  They must choose a value large enough 
to permit ALL valid OGNL expressions used within the application.
 ###   Values larger than the 200-400 range have diminishing security value (at 
which point it is really only a "style guard" for long OGNL
 ###   expressions in an application.  Setting a value of null or "" will also 
disable the feature.
diff --git a/output/primer.html b/output/primer.html
index 00e3e09..886a9f7 100644
--- a/output/primer.html
+++ b/output/primer.html
@@ -261,16 +261,16 @@ Struts, it will help you when your application grows and 
becomes more complex.Properties Files and ResourceBundles
 
 Java applications, including web applications, are often
-configured using http://docs.oracle.com/javase/6/docs/api/java/util/Properties";>Properties
+configured using https://docs.oracle.com/javase/8/docs/api/java/util/Properties.html";>Properties
 files. Properties files are the basis for the
-http://docs.oracle.com/javase/6/docs/api/java/util/ResourceBundle";>ResourceBundles
+https://docs.oracle.com/javase/8/docs/api/java/util/ResourceBundle.html";>ResourceBundles
 that the framework uses to provide message resources to an application.
 
 The Java Tutorials provide a
 http://docs.oracle.com/javase/tutorial/essential/environment/properties";>great
 introduction to Properties.
 
 Java ResourceBundles use one or more Properties files to provide 
internationalized messages
-to users based their http://docs.oracle.com/javase/6/docs/api/java/util/Locale";>Locale.
+to users based their https://docs.oracle.com/javase/8/docs/api/java/util/Locale.html";>Locale.
 Support for localizing an application was built into the framework from the 
ground-up.
 
 Again the Java Tutorials provide
diff --git a/output/tag-developers/a-tag.html b/output/tag-developers/a-tag.html
index 075e025..d6063ba 100644
--- a/output/tag-developers/a-tag.html
+++ b/output/tag-developers/a-tag.html
@@ -257,7 +257,7 @@ using the param 
tag.
 
 escapeHtmlBody
 false
-true
+false
 false
 Boolean
 Specifies whether to HTML-escape the 
tag body or not
diff --git a/output/tag-developers/submit-tag.html 
b/output/tag-developers/submit-tag.html
index cadf669..a69f59e 100644
--- a/output/tag-developers/submit-tag.html
+++ b/output/tag-developers/submit-tag.html
@@ -251,7 +251,7 @@ shown on the button face, but has issues with Microsoft 
Internet Explorer at lea
 
 escapeHtmlBody
 false
-true
+false
 false
 Boolean
 Specifies whether to HTML-escape the 
tag body or not