[tomcat-taglibs-standard] 02/02: minor changes as the code is now java 1.8

2020-04-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 4d3880e52f4e9db00e1e91a3e9593b48a84072fe
Author: olivier lamy 
AuthorDate: Sat Apr 11 19:38:43 2020 +1000

minor changes as the code is now java 1.8

Signed-off-by: olivier lamy 
---
 .../standard/tag/common/core/ImportSupport.java|  4 +---
 .../standard/tag/common/core/ParamSupport.java |  6 +++---
 .../standard/tag/common/core/SetSupport.java   |  6 +-
 .../standard/tag/common/core/UrlSupport.java   |  4 +++-
 .../taglibs/standard/tag/common/core/Util.java |  3 ++-
 .../standard/tag/common/fmt/BundleSupport.java | 25 --
 .../standard/tag/common/fmt/FormatDateSupport.java |  2 +-
 .../tag/common/fmt/FormatNumberSupport.java| 21 +++---
 .../standard/tag/common/sql/UpdateTagSupport.java  | 12 +--
 .../standard/tag/common/xml/JSTLVariableStack.java |  2 +-
 .../standard/tag/common/xml/ParseSupport.java  | 10 ++---
 .../standard/tag/common/xml/TransformSupport.java  | 10 ++---
 .../apache/taglibs/standard/tlv/JstlBaseTLV.java   | 11 ++
 .../taglibs/standard/util/ExpressionUtil.java  |  4 ++--
 .../org/apache/taglibs/standard/util/XmlUtil.java  |  6 +-
 15 files changed, 34 insertions(+), 92 deletions(-)

diff --git 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
index 57fbd54..d4c5cb2 100644
--- 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
+++ 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
@@ -299,9 +299,7 @@ public abstract class ImportSupport extends BodyTagSupport
 // spec mandates specific error handling from include()
 try {
 rd.include(pageContext.getRequest(), irw);
-} catch (IOException ex) {
-throw new JspException(ex);
-} catch (RuntimeException ex) {
+} catch (IOException | RuntimeException ex) {
 throw new JspException(ex);
 } catch (ServletException ex) {
 Throwable rc = ex.getRootCause();
diff --git 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
index b7ae13f..83923ad 100644
--- 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
+++ 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
@@ -127,8 +127,8 @@ public abstract class ParamSupport extends BodyTagSupport {
 //*
 // Private state
 
-private List names = new LinkedList();
-private List values = new LinkedList();
+private List names = new LinkedList();
+private List values = new LinkedList();
 private boolean done = false;
 
 //*
@@ -172,7 +172,7 @@ public abstract class ParamSupport extends BodyTagSupport {
 // build a string from the parameter list
 StringBuilder newParams = new StringBuilder();
 for (int i = 0; i < names.size(); i++) {
-newParams.append(names.get(i) + "=" + values.get(i));
+
newParams.append(names.get(i)).append('=').append(values.get(i));
 if (i < (names.size() - 1)) {
 newParams.append("&");
 }
diff --git 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/SetSupport.java
 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/SetSupport.java
index c309e13..7f4c0a8 100644
--- 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/SetSupport.java
+++ 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/SetSupport.java
@@ -231,11 +231,7 @@ public abstract class SetSupport extends BodyTagSupport {
 }
 try {
 m.invoke(target, convertToExpectedType(result, m));
-} catch (ELException ex) {
-throw new JspTagException(ex);
-} catch (IllegalAccessException ex) {
-throw new JspTagException(ex);
-} catch (InvocationTargetException ex) {
+} catch 
(ELException|IllegalAccessException|InvocationTargetException ex) {
 throw new JspTagException(ex);
 }
 return;
diff --git 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/UrlSupport.java
 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/UrlSupport.java
index 20c0a7c..3ea2bcb 100644
--- 
a/impl/src/main/java/o

[tomcat-taglibs-standard] 01/02: use StringBuilder instead of StringBuffer

2020-04-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 9df029915390a516a59233b2bcecebdd921a822f
Author: olivier lamy 
AuthorDate: Sat Apr 11 11:29:11 2020 +1000

use StringBuilder instead of StringBuffer

Signed-off-by: olivier lamy 
---
 .../org/apache/taglibs/standard/tag/common/core/ImportSupport.java  | 4 ++--
 .../org/apache/taglibs/standard/tag/common/core/ParamSupport.java   | 4 ++--
 .../apache/taglibs/standard/lang/jstl/BinaryOperatorExpression.java | 2 +-
 .../java/org/apache/taglibs/standard/lang/jstl/ComplexValue.java| 2 +-
 .../java/org/apache/taglibs/standard/lang/jstl/ELEvaluator.java | 6 +++---
 .../org/apache/taglibs/standard/lang/jstl/ExpressionString.java | 4 ++--
 .../org/apache/taglibs/standard/lang/jstl/FunctionInvocation.java   | 2 +-
 .../java/org/apache/taglibs/standard/lang/jstl/StringLiteral.java   | 4 ++--
 .../apache/taglibs/standard/lang/jstl/UnaryOperatorExpression.java  | 2 +-
 .../apache/taglibs/standard/lang/jstl/parser/ParseException.java| 2 +-
 .../org/apache/taglibs/standard/lang/jstl/parser/TokenMgrError.java | 2 +-
 .../java/org/apache/taglibs/standard/examples/beans/Address.java| 2 +-
 .../java/org/apache/taglibs/standard/examples/beans/Customer.java   | 2 +-
 .../java/org/apache/taglibs/standard/examples/taglib/Functions.java | 2 +-
 14 files changed, 20 insertions(+), 20 deletions(-)

diff --git 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
index 681fa3e..57fbd54 100644
--- 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
+++ 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ImportSupport.java
@@ -240,7 +240,7 @@ public abstract class ImportSupport extends BodyTagSupport
 if (isAbsoluteUrl) {
 // for absolute URLs, delegate to our peer
 BufferedReader r = new BufferedReader(acquireReader());
-StringBuffer sb = new StringBuffer();
+StringBuilder sb = new StringBuilder();
 int i;
 
 // under JIT, testing seems to show this simple loop is as fast
@@ -574,7 +574,7 @@ public abstract class ImportSupport extends BodyTagSupport
  * and either EOS or a subsequent ';' (exclusive).
  */
 public static String stripSession(String url) {
-StringBuffer u = new StringBuffer(url);
+StringBuilder u = new StringBuilder(url);
 int sessionStart;
 while ((sessionStart = u.toString().indexOf(";jsessionid=")) != -1) {
 int sessionEnd = u.toString().indexOf(";", sessionStart + 1);
diff --git 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
index a2dd06d..b7ae13f 100644
--- 
a/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
+++ 
b/impl/src/main/java/org/apache/taglibs/standard/tag/common/core/ParamSupport.java
@@ -170,7 +170,7 @@ public abstract class ParamSupport extends BodyTagSupport {
 // Collections.reverse(this.values);
 
 // build a string from the parameter list
-StringBuffer newParams = new StringBuffer();
+StringBuilder newParams = new StringBuilder();
 for (int i = 0; i < names.size(); i++) {
 newParams.append(names.get(i) + "=" + values.get(i));
 if (i < (names.size() - 1)) {
@@ -184,7 +184,7 @@ public abstract class ParamSupport extends BodyTagSupport {
 if (questionMark == -1) {
 return (url + "?" + newParams);
 } else {
-StringBuffer workingUrl = new StringBuffer(url);
+StringBuilder workingUrl = new StringBuilder(url);
 workingUrl.insert(questionMark + 1, (newParams + "&"));
 return workingUrl.toString();
 }
diff --git 
a/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BinaryOperatorExpression.java
 
b/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BinaryOperatorExpression.java
index 26db108..f8fa551 100644
--- 
a/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BinaryOperatorExpression.java
+++ 
b/jstlel/src/main/java/org/apache/taglibs/standard/lang/jstl/BinaryOperatorExpression.java
@@ -91,7 +91,7 @@ public class BinaryOperatorExpression
  * Returns the expression in the expression language syntax
  */
 public String getExpressionString() {
-StringBuffer buf = new StringBuffer();
+StringBuilder buf = new StringBuilder();
 buf.append("(");
 buf.append(mExpression.get

[tomcat-taglibs-standard] branch master updated (b283d88 -> 4d3880e)

2020-04-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


from b283d88  move from javax to jakarta namespace
 new 9df0299  use StringBuilder instead of StringBuffer
 new 4d3880e  minor changes as the code is now java 1.8

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:
 .../standard/tag/common/core/ImportSupport.java|  8 +++
 .../standard/tag/common/core/ParamSupport.java | 10 -
 .../standard/tag/common/core/SetSupport.java   |  6 +-
 .../standard/tag/common/core/UrlSupport.java   |  4 +++-
 .../taglibs/standard/tag/common/core/Util.java |  3 ++-
 .../standard/tag/common/fmt/BundleSupport.java | 25 --
 .../standard/tag/common/fmt/FormatDateSupport.java |  2 +-
 .../tag/common/fmt/FormatNumberSupport.java| 21 +++---
 .../standard/tag/common/sql/UpdateTagSupport.java  | 12 +--
 .../standard/tag/common/xml/JSTLVariableStack.java |  2 +-
 .../standard/tag/common/xml/ParseSupport.java  | 10 ++---
 .../standard/tag/common/xml/TransformSupport.java  | 10 ++---
 .../apache/taglibs/standard/tlv/JstlBaseTLV.java   | 11 ++
 .../taglibs/standard/util/ExpressionUtil.java  |  4 ++--
 .../org/apache/taglibs/standard/util/XmlUtil.java  |  6 +-
 .../lang/jstl/BinaryOperatorExpression.java|  2 +-
 .../taglibs/standard/lang/jstl/ComplexValue.java   |  2 +-
 .../taglibs/standard/lang/jstl/ELEvaluator.java|  6 +++---
 .../standard/lang/jstl/ExpressionString.java   |  4 ++--
 .../standard/lang/jstl/FunctionInvocation.java |  2 +-
 .../taglibs/standard/lang/jstl/StringLiteral.java  |  4 ++--
 .../lang/jstl/UnaryOperatorExpression.java |  2 +-
 .../standard/lang/jstl/parser/ParseException.java  |  2 +-
 .../standard/lang/jstl/parser/TokenMgrError.java   |  2 +-
 .../taglibs/standard/examples/beans/Address.java   |  2 +-
 .../taglibs/standard/examples/beans/Customer.java  |  2 +-
 .../standard/examples/taglib/Functions.java|  2 +-
 27 files changed, 54 insertions(+), 112 deletions(-)


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: simplify Jenkinsfile

2020-04-11 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 5c359d0  simplify Jenkinsfile
5c359d0 is described below

commit 5c359d08d86d0a358616af64c985b115e37ad91c
Author: olivier lamy 
AuthorDate: Sat Apr 11 16:07:23 2020 +1000

simplify Jenkinsfile
---
 Jenkinsfile | 14 +-
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index dc0a883..13db84f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -14,19 +14,7 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "JDK 1.8 (latest)", "clean install" )
-script {
-  if (env.BRANCH_NAME == 'master') {
-mavenBuild( "JDK 1.8 (latest)", "deploy" )
-  }
-}
-  }
-}
-stage( "Build / Test - JDK11" ) {
-  agent { node { label 'ubuntu' } }
-  options { timeout( time: 120, unit: 'MINUTES' ) }
-  steps {
-mavenBuild( "JDK 11 (latest)", "clean install" )
+mavenBuild( "JDK 1.8 (latest)", "clean deploy" )
   }
 }
   }


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/04: move some dependencies to parent pom deptMngt

2020-04-10 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 9e086bb9c826e100cef3f42e485a320552b96e02
Author: olivier lamy 
AuthorDate: Fri Apr 10 18:23:07 2020 +1000

move some dependencies to parent pom deptMngt

Signed-off-by: olivier lamy 
---
 build-tools/pom.xml   | 27 ---
 compat/pom.xml|  9 ++---
 impl/pom.xml  | 13 ++---
 jstlel/pom.xml|  9 ++---
 pom.xml   | 27 +++
 spec/pom.xml  |  4 
 standard-examples/pom.xml |  4 
 7 files changed, 45 insertions(+), 48 deletions(-)

diff --git a/build-tools/pom.xml b/build-tools/pom.xml
index 2b19750..ad37fa5 100644
--- a/build-tools/pom.xml
+++ b/build-tools/pom.xml
@@ -15,22 +15,19 @@
See the License for the specific language governing permissions and
limitations under the License.
 -->
-
-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/maven-v4_0_0.xsd;>
-4.0.0
-
-org.apache.taglibs
-taglibs-standard
-1.2.6-SNAPSHOT
-
-
-taglibs-build-tools
+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/maven-v4_0_0.xsd;>
+  4.0.0
+  
+org.apache.taglibs
+taglibs-standard
 1.2.6-SNAPSHOT
-Apache Standard Taglib Build Tools
+  
+
+  taglibs-build-tools
+  1.2.6-SNAPSHOT
+  Apache Standard Taglib Build Tools
 
-Build tool settings common to all Standard Taglib 
modules
+  Build tool settings common to all Standard Taglib 
modules
 
 
diff --git a/compat/pom.xml b/compat/pom.xml
index 6978718..bf359c8 100644
--- a/compat/pom.xml
+++ b/compat/pom.xml
@@ -51,25 +51,21 @@
 
   javax.servlet
   servlet-api
-  2.5
   provided
 
 
   javax.servlet.jsp
   jsp-api
-  2.1
   provided
 
 
   javax.el
   el-api
-  1.0
   provided
 
 
   xalan
   xalan
-  2.7.1
   provided
   true
 
@@ -101,7 +97,6 @@
   
 org.apache.maven.plugins
 maven-checkstyle-plugin
-2.6
 
   
../build-tools/src/main/resources/taglibs/checkstyle.xml
 
@@ -114,7 +109,7 @@
   
 org.apache.maven.plugins
 maven-pmd-plugin
-2.3
+3.13.0
 
   ${maven.compiler.target}
 
@@ -140,7 +135,7 @@
   
 org.codehaus.mojo
 findbugs-maven-plugin
-2.3.1
+3.0.5
 
   Normal
   Default
diff --git a/impl/pom.xml b/impl/pom.xml
index de9fbe6..cf7510d 100644
--- a/impl/pom.xml
+++ b/impl/pom.xml
@@ -15,10 +15,6 @@
See the License for the specific language governing permissions and
limitations under the License.
 -->
-
 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/maven-v4_0_0.xsd;>
   4.0.0
@@ -48,25 +44,21 @@
 
   javax.servlet
   servlet-api
-  2.5
   provided
 
 
   javax.servlet.jsp
   jsp-api
-  2.1
   provided
 
 
   javax.el
   el-api
-  1.0
   provided
 
 
   xalan
   xalan
-  2.7.1
   provided
   true
 
@@ -98,7 +90,6 @@
   
 org.apache.maven.plugins
 maven-checkstyle-plugin
-2.6
 
   
../build-tools/src/main/resources/taglibs/checkstyle.xml
 
@@ -111,7 +102,7 @@
   
 org.apache.maven.plugins
 maven-pmd-plugin
-2.3
+3.13.0
 
   ${maven.compiler.target}
 
@@ -137,7 +128,7 @@
   
 org.codehaus.mojo
 findbugs-maven-plugin
-2.3.1
+3.0.5
 
   Normal
   Default
diff --git a/jstlel/pom.xml b/jstlel/pom.xml
index 826594b..a8112af 100644
--- a/jstlel/pom.xml
+++ b/jstlel/pom.xml
@@ -50,25 +50,21 @@
 
   javax.servlet
   servlet-api
-  2.5
   provided
 
 
   javax.servlet.jsp
   jsp-api
-  2.1
   provided
 
 
   javax.el
   el-api
-  1.0
   provided
 
 
   xalan
   xalan
-  2.7.1
   provided
   true
 
@@ -100,7 +96,6 @@
   
 org.apache.maven.plugins
 maven-checkstyle-plugin
-2.6
 
   
../build-tools/src/main/resources/taglibs/checkstyle.xml
 
@@ -113,7 +108,7 @@
   
 org.apache.maven.plugins
 maven-pmd-plugin
-2.3
+3.13.0
 
  

[tomcat-taglibs-standard] branch master updated (08ae31d -> 46694f4)

2020-04-10 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


from 08ae31d  fix scm informations
 new 57a9c61  cleaning poms
 new 9e086bb  move some dependencies to parent pom deptMngt
 new 86a6e21  fix checkstyle configuration but that is too much too fix :)
 new 46694f4  bump version as moving to jakarta namespace is a big change

The 4 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:
 build-tools/pom.xml|  34 +--
 .../src/main/resources/taglibs/checkstyle.xml  |   6 +-
 compat/pom.xml | 270 +
 impl/pom.xml   | 267 +---
 .../org/apache/taglibs/standard/util/XmlUtil.java  |   1 +
 jstlel/pom.xml | 270 +
 .../standard/lang/jstl/Resources.properties|   2 +-
 pom.xml| 212 
 spec/pom.xml   | 174 ++---
 standard-examples/pom.xml  | 169 ++---
 10 files changed, 668 insertions(+), 737 deletions(-)


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 04/04: bump version as moving to jakarta namespace is a big change

2020-04-10 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 46694f4d5cea6691ea7f7ce3b7a358f5a0627f65
Author: olivier lamy 
AuthorDate: Fri Apr 10 18:40:10 2020 +1000

bump version as moving to jakarta namespace is a big change

Signed-off-by: olivier lamy 
---
 build-tools/pom.xml   | 4 ++--
 compat/pom.xml| 4 ++--
 impl/pom.xml  | 4 ++--
 jstlel/pom.xml| 2 +-
 pom.xml   | 2 +-
 spec/pom.xml  | 2 +-
 standard-examples/pom.xml | 2 +-
 7 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/build-tools/pom.xml b/build-tools/pom.xml
index ad37fa5..95d94f9 100644
--- a/build-tools/pom.xml
+++ b/build-tools/pom.xml
@@ -21,11 +21,11 @@
   
 org.apache.taglibs
 taglibs-standard
-1.2.6-SNAPSHOT
+2.0.0-SNAPSHOT
   
 
   taglibs-build-tools
-  1.2.6-SNAPSHOT
+  2.0.0-SNAPSHOT
   Apache Standard Taglib Build Tools
 
   Build tool settings common to all Standard Taglib 
modules
diff --git a/compat/pom.xml b/compat/pom.xml
index bf359c8..f2be169 100644
--- a/compat/pom.xml
+++ b/compat/pom.xml
@@ -25,11 +25,11 @@
   
 org.apache.taglibs
 taglibs-standard
-1.2.6-SNAPSHOT
+2.0.0-SNAPSHOT
   
 
   taglibs-standard-compat
-  1.2.6-SNAPSHOT
+  2.0.0-SNAPSHOT
   bundle
 
   Apache Standard Taglib 1.0 Compatibility
diff --git a/impl/pom.xml b/impl/pom.xml
index cf7510d..2043ea9 100644
--- a/impl/pom.xml
+++ b/impl/pom.xml
@@ -21,11 +21,11 @@
   
 org.apache.taglibs
 taglibs-standard
-1.2.6-SNAPSHOT
+2.0.0-SNAPSHOT
   
 
   taglibs-standard-impl
-  1.2.6-SNAPSHOT
+  2.0.0-SNAPSHOT
   bundle
 
   Apache Standard Taglib Implementation
diff --git a/jstlel/pom.xml b/jstlel/pom.xml
index a8112af..ceeabb5 100644
--- a/jstlel/pom.xml
+++ b/jstlel/pom.xml
@@ -25,7 +25,7 @@
   
 org.apache.taglibs
 taglibs-standard
-1.2.6-SNAPSHOT
+2.0.0-SNAPSHOT
   
 
   taglibs-standard-jstlel
diff --git a/pom.xml b/pom.xml
index fcf2f08..e499a28 100644
--- a/pom.xml
+++ b/pom.xml
@@ -30,7 +30,7 @@
   pom
 
   taglibs-standard
-  1.2.6-SNAPSHOT
+  2.0.0-SNAPSHOT
   Apache Standard Taglib
 
   2001
diff --git a/spec/pom.xml b/spec/pom.xml
index 640fb71..edd1245 100644
--- a/spec/pom.xml
+++ b/spec/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.taglibs
 taglibs-standard
-1.2.6-SNAPSHOT
+2.0.0-SNAPSHOT
   
 
   taglibs-standard-spec
diff --git a/standard-examples/pom.xml b/standard-examples/pom.xml
index 074c015..5b38bfb 100644
--- a/standard-examples/pom.xml
+++ b/standard-examples/pom.xml
@@ -21,7 +21,7 @@
   
 org.apache.taglibs
 taglibs-standard
-1.2.6-SNAPSHOT
+2.0.0-SNAPSHOT
   
 
   taglibs-standard-examples


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/04: cleaning poms

2020-04-10 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 57a9c61010ac3f7d5ca5e51664970ad625e69baa
Author: olivier lamy 
AuthorDate: Fri Apr 10 15:52:27 2020 +1000

cleaning poms

Signed-off-by: olivier lamy 
---
 build-tools/pom.xml   |   7 --
 compat/pom.xml| 273 --
 impl/pom.xml  | 266 
 jstlel/pom.xml| 273 --
 pom.xml   | 170 -
 spec/pom.xml  | 176 +-
 standard-examples/pom.xml | 173 +
 7 files changed, 628 insertions(+), 710 deletions(-)

diff --git a/build-tools/pom.xml b/build-tools/pom.xml
index c7b8647..2b19750 100644
--- a/build-tools/pom.xml
+++ b/build-tools/pom.xml
@@ -33,11 +33,4 @@
 
 Build tool settings common to all Standard Taglib 
modules
 
-
-
scm:svn:http://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk/build-tools
-
scm:svn:https://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk/build-tools
-
-
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/build-tools
-
-
 
diff --git a/compat/pom.xml b/compat/pom.xml
index 513d930..6978718 100644
--- a/compat/pom.xml
+++ b/compat/pom.xml
@@ -19,167 +19,136 @@
 Generate the examples war
 Enable Cactus tests
 -->
-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/maven-v4_0_0.xsd;>
-4.0.0
-
-org.apache.taglibs
-taglibs-standard
-1.2.6-SNAPSHOT
-
-
-taglibs-standard-compat
+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/maven-v4_0_0.xsd;>
+  4.0.0
+  
+org.apache.taglibs
+taglibs-standard
 1.2.6-SNAPSHOT
-bundle
-
-Apache Standard Taglib 1.0 Compatibility
-
-2001
-
-Supports JSTL 1.0 tags using the Servlet container's EL implementation.
-
+  
 
-
-
scm:svn:http://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk/compat
-
scm:svn:https://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk/compat
-
-
http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk/compat
-
+  taglibs-standard-compat
+  1.2.6-SNAPSHOT
+  bundle
 
-
-Pierre Delisle
-Shawn Bayern
-Nathan Abramson
-Hans Bergsten
-Scott Hasse
-Justyna Horwat
-Mark Kolb
-Jan Luehe
-Glenn Nielsen
-Dmitri Plotnikov
-Felipe Leme
-Henri Yandell
-Bjorn Townsend
-
+  Apache Standard Taglib 1.0 Compatibility
 
-
-Robert Goff
-
+  
+Supports JSTL 1.0 tags using the Servlet container's EL implementation.
+  
 
-
-
-org.apache.taglibs
-taglibs-standard-spec
-1.2.6-SNAPSHOT
-
-
-org.apache.taglibs
-taglibs-standard-impl
-1.2.6-SNAPSHOT
-
+  
+
+  org.apache.taglibs
+  taglibs-standard-spec
+
+
+  org.apache.taglibs
+  taglibs-standard-impl
+
 
-
-javax.servlet
-servlet-api
-2.5
-provided
-
-
-javax.servlet.jsp
-jsp-api
-2.1
-provided
-
-
-javax.el
-el-api
-1.0
-provided
-
-
-xalan
-xalan
-2.7.1
-provided
-true
-
+
+  javax.servlet
+  servlet-api
+  2.5
+  provided
+
+
+  javax.servlet.jsp
+  jsp-api
+  2.1
+  provided
+
+
+  javax.el
+  el-api
+  1.0
+  provided
+
+
+  xalan
+  xalan
+  2.7.1
+  provided
+  true
+
 
-
-junit
-junit
-4.8.1
-test
-
-
-org.easymock
-easymock
-3.0
-test
-
-
+
+  junit
+  junit
+  test
+
+
+  org.easymock
+  easymock
+  test
+
+  
 
-
-
-
-org.apache.felix
-maven-bundle-plugin
-
-true
-
-*;version="1.2"
-
-
-
-
-org.apache.maven.plugins
-maven

[tomcat-taglibs-standard] 03/04: fix checkstyle configuration but that is too much too fix :)

2020-04-10 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 86a6e21c12c5db792c6d5b00bba78b73b75cc723
Author: olivier lamy 
AuthorDate: Fri Apr 10 18:31:37 2020 +1000

fix checkstyle configuration but that is too much too fix :)

Signed-off-by: olivier lamy 
---
 build-tools/src/main/resources/taglibs/checkstyle.xml   |  6 --
 .../main/java/org/apache/taglibs/standard/util/XmlUtil.java |  1 +
 .../apache/taglibs/standard/lang/jstl/Resources.properties  |  2 +-
 pom.xml | 13 +
 4 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/build-tools/src/main/resources/taglibs/checkstyle.xml 
b/build-tools/src/main/resources/taglibs/checkstyle.xml
index 2bebc89..52c5727 100644
--- a/build-tools/src/main/resources/taglibs/checkstyle.xml
+++ b/build-tools/src/main/resources/taglibs/checkstyle.xml
@@ -24,7 +24,9 @@
   
 
   
-  
+  
+
+  
 
   
 
@@ -61,4 +63,4 @@
 
 
   
-
\ No newline at end of file
+
diff --git a/impl/src/main/java/org/apache/taglibs/standard/util/XmlUtil.java 
b/impl/src/main/java/org/apache/taglibs/standard/util/XmlUtil.java
index 130f333..ee5ce3e 100644
--- a/impl/src/main/java/org/apache/taglibs/standard/util/XmlUtil.java
+++ b/impl/src/main/java/org/apache/taglibs/standard/util/XmlUtil.java
@@ -25,6 +25,7 @@ import java.security.PrivilegedAction;
 import java.security.PrivilegedActionException;
 import java.security.PrivilegedExceptionAction;
 import java.util.concurrent.Callable;
+
 import javax.servlet.http.HttpServletRequest;
 import javax.servlet.jsp.PageContext;
 import javax.xml.XMLConstants;
diff --git 
a/jstlel/src/main/resources/org/apache/taglibs/standard/lang/jstl/Resources.properties
 
b/jstlel/src/main/resources/org/apache/taglibs/standard/lang/jstl/Resources.properties
index 194e84b..59d9d26 100644
--- 
a/jstlel/src/main/resources/org/apache/taglibs/standard/lang/jstl/Resources.properties
+++ 
b/jstlel/src/main/resources/org/apache/taglibs/standard/lang/jstl/Resources.properties
@@ -14,7 +14,7 @@
 # limitations under the License.
 
 EXCEPTION_GETTING_BEANINFO=\
-   An Exception occurred getting the BeanInfo for class {0}
+An Exception occurred getting the BeanInfo for class {0}
 
 NULL_EXPRESSION_STRING=\
A null expression string may not be passed to the \
diff --git a/pom.xml b/pom.xml
index e186e93..fcf2f08 100644
--- a/pom.xml
+++ b/pom.xml
@@ -194,6 +194,19 @@
   
 
 
+  
+
+
+
+
+
+
+
+
+
+
+
+
   
 org.apache.rat
 apache-rat-plugin


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] branch master updated: fix scm informations

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git


The following commit(s) were added to refs/heads/master by this push:
 new 08ae31d  fix scm informations
08ae31d is described below

commit 08ae31d7225c30307ce175ef00df94b37ef92fb7
Author: olivier lamy 
AuthorDate: Fri Apr 10 13:21:29 2020 +1000

fix scm informations

Signed-off-by: olivier lamy 
---
 pom.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9a0d614..d055010 100644
--- a/pom.xml
+++ b/pom.xml
@@ -40,9 +40,9 @@
   http://tomcat.apache.org/taglibs/standard-${project.version}
 
   
-
scm:svn:http://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk
-
scm:svn:https://svn.apache.org/repos/asf/tomcat/taglibs/standard/trunk
-http://svn.apache.org/viewvc/tomcat/taglibs/standard/trunk
+
scm:git:https://github.com/apache/tomcat-taglibs-standard
+
scm:git:https://github.com/apache/tomcat-taglibs-standard
+https://github.com/apache/tomcat-taglibs-standard
   
 
   


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: reformat pom and fix scm information

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new e786aea  reformat pom and fix scm information
e786aea is described below

commit e786aea06fe6d8608069f2824ad56fe73f4379f6
Author: olivier lamy 
AuthorDate: Fri Apr 10 13:19:35 2020 +1000

reformat pom and fix scm information

Signed-off-by: olivier lamy 
---
 pom.xml | 41 +
 1 file changed, 21 insertions(+), 20 deletions(-)

diff --git a/pom.xml b/pom.xml
index d126dd1..3e0d74c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -15,7 +15,8 @@
See the License for the specific language governing permissions and
limitations under the License.
 -->
-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/maven-v4_0_0.xsd;>
+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/maven-v4_0_0.xsd;>
   4.0.0
   
 org.apache
@@ -47,9 +48,9 @@
   
 
   
-
scm:svn:http://svn.apache.org/repos/asf/tomcat/taglibs/taglibs-parent/trunk
-
scm:svn:https://svn.apache.org/repos/asf/tomcat/taglibs/taglibs-parent/trunk
-http://svn.apache.org/viewvc/tomcat/taglibs/taglibs-parent/trunk
+
scm:git:https://github.com/apache/tomcat-taglibs-parent
+
scm:git:https://github.com/apache/tomcat-taglibs-parent
+https://github.com/apache/tomcat-taglibs-parent
   
 
   
@@ -63,19 +64,19 @@
 
http://www.mail-archive.com/taglibs-user@tomcat.apache.org/
   
 
-  
-  Tomcat Dev List
-  dev-subscr...@tomcat.apache.org
-  dev-unsubscr...@tomcat.apache.org
-  dev@tomcat.apache.org
-  
http://mail-archives.apache.org/mod_mbox/tomcat-dev/
-  
-  
http://markmail.org/list/org.apache.tomcat.dev/
-  
http://www.nabble.com/Tomcat---Dev-f341.html
-  
http://www.mail-archive.com/dev@tomcat.apache.org/
-  
http://news.gmane.org/gmane.comp.tomcat.devel
-  
-  
+
+  Tomcat Dev List
+  dev-subscr...@tomcat.apache.org
+  dev-unsubscr...@tomcat.apache.org
+  dev@tomcat.apache.org
+  http://mail-archives.apache.org/mod_mbox/tomcat-dev/
+  
+
http://markmail.org/list/org.apache.tomcat.dev/
+
http://www.nabble.com/Tomcat---Dev-f341.html
+
http://www.mail-archive.com/dev@tomcat.apache.org/
+
http://news.gmane.org/gmane.comp.tomcat.devel
+  
+
 
   Old Taglibs User Archive
   
http://mail-archives.apache.org/mod_mbox/jakarta-taglibs-user/
@@ -151,7 +152,7 @@
   true
   
 http://download.oracle.com/javase/1.5.0/docs/api
-
+  
 
   
   
@@ -170,7 +171,7 @@
 org.apache.maven.plugins
 maven-jxr-plugin
 3.0.0
-
+  
   
 org.apache.maven.plugins
 maven-project-info-reports-plugin
@@ -180,7 +181,7 @@
 org.apache.maven.plugins
 maven-surefire-report-plugin
 3.0.0-M4
-
+  
 
   
 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-rdc] branch master updated: make this buildable in Jenkins

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-rdc.git


The following commit(s) were added to refs/heads/master by this push:
 new d9269f7  make this buildable in Jenkins
d9269f7 is described below

commit d9269f7b62d2568bb7f3f20ba667264fc25d8814
Author: olivier lamy 
AuthorDate: Fri Apr 10 12:33:57 2020 +1000

make this buildable in Jenkins

Signed-off-by: olivier lamy 
---
 .gitignore  |  2 ++
 Jenkinsfile | 64 +
 pom.xml | 13 +
 3 files changed, 79 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..ffac74e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+target/
+*.iml
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 000..dc0a883
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,64 @@
+#!groovy
+
+pipeline {
+  agent any
+  options {
+durabilityHint('PERFORMANCE_OPTIMIZED')
+buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '2'))
+timeout(time: 60, unit: 'MINUTES')
+  }
+  stages {
+stage( "Parallel Stage" ) {
+  parallel {
+stage( "Build / Test - JDK8" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "JDK 1.8 (latest)", "clean install" )
+script {
+  if (env.BRANCH_NAME == 'master') {
+mavenBuild( "JDK 1.8 (latest)", "deploy" )
+  }
+}
+  }
+}
+stage( "Build / Test - JDK11" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "JDK 11 (latest)", "clean install" )
+  }
+}
+  }
+}
+  }
+}
+
+
+
+/**
+ * To other developers, if you are using this method above, please use the 
following syntax.
+ *
+ * mavenBuild("", "   "
+ *
+ * @param jdk the jdk tool name (in jenkins) to use for this build
+ * @param cmdline the command line in "  "`format.
+ * @return the Jenkinsfile step representing a maven build
+ */
+def mavenBuild(jdk, cmdline) {
+  def mvnName = 'Maven 3.6.3'
+  //def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // 
".repository" //
+  //def settingsName = 'oss-settings.xml'
+  def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true'
+
+  withMaven(
+  maven: mvnName,
+  jdk: "$jdk",
+  publisherStrategy: 'EXPLICIT',
+  //globalMavenSettingsConfig: settingsName,
+  options: [junitPublisher(disabled: false)],
+  mavenOpts: mavenOpts) {
+// Some common Maven command line + provided command line
+sh "mvn -V -B -DfailIfNoTests=false -Dmaven.test.failure.ignore=true 
$cmdline"
+  }
+}
diff --git a/pom.xml b/pom.xml
index 6505dad..64ed010 100644
--- a/pom.xml
+++ b/pom.xml
@@ -143,4 +143,17 @@
  
   
 
+  
+
+  apache.snapshots
+  https://repository.apache.org/content/repositories/snapshots/
+  
+false
+  
+  
+true
+  
+
+  
+
 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-site] branch master updated: add Jenkinsfile fix pom to check snapshot dependencies

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-site.git


The following commit(s) were added to refs/heads/master by this push:
 new d214394  add Jenkinsfile fix pom to check snapshot dependencies
d214394 is described below

commit d214394c3654911b9a42616b0e16a544a6f20f0c
Author: olivier lamy 
AuthorDate: Fri Apr 10 12:29:37 2020 +1000

add Jenkinsfile fix pom to check snapshot dependencies

Signed-off-by: olivier lamy 
---
 .gitignore  |  2 ++
 Jenkinsfile | 59 +++
 pom.xml | 14 +-
 3 files changed, 74 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..ffac74e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+target/
+*.iml
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 000..e1ec02a
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,59 @@
+#!groovy
+
+pipeline {
+  agent any
+  options {
+durabilityHint('PERFORMANCE_OPTIMIZED')
+buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '2'))
+timeout(time: 60, unit: 'MINUTES')
+  }
+  stages {
+stage( "Parallel Stage" ) {
+  parallel {
+stage( "Build / Test - JDK8" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "JDK 1.8 (latest)", "clean site" )
+  }
+}
+stage( "Build / Test - JDK11" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "JDK 11 (latest)", "clean site" )
+  }
+}
+  }
+}
+  }
+}
+
+
+
+/**
+ * To other developers, if you are using this method above, please use the 
following syntax.
+ *
+ * mavenBuild("", "   "
+ *
+ * @param jdk the jdk tool name (in jenkins) to use for this build
+ * @param cmdline the command line in "  "`format.
+ * @return the Jenkinsfile step representing a maven build
+ */
+def mavenBuild(jdk, cmdline) {
+  def mvnName = 'Maven 3.6.3'
+  //def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // 
".repository" //
+  //def settingsName = 'oss-settings.xml'
+  def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true'
+
+  withMaven(
+  maven: mvnName,
+  jdk: "$jdk",
+  publisherStrategy: 'EXPLICIT',
+  //globalMavenSettingsConfig: settingsName,
+  options: [junitPublisher(disabled: false)],
+  mavenOpts: mavenOpts) {
+// Some common Maven command line + provided command line
+sh "mvn -V -B -DfailIfNoTests=false -Dmaven.test.failure.ignore=true 
$cmdline"
+  }
+}
diff --git a/pom.xml b/pom.xml
index bc95784..a6ac3af 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,6 @@
 org.apache.taglibs
 taglibs-parent
 4-SNAPSHOT
-../taglibs-parent/pom.xml
   
 
   site
@@ -93,4 +92,17 @@
 
   
 
+  
+
+  apache.snapshots
+  https://repository.apache.org/content/repositories/snapshots/
+  
+false
+  
+  
+true
+  
+
+  
+
 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] branch master updated: force using snapshot repo for parent pom dependency

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git


The following commit(s) were added to refs/heads/master by this push:
 new 1495739  force using snapshot repo for parent pom dependency
1495739 is described below

commit 1495739809cb5a98117223fe1ec63913eebae751
Author: olivier lamy 
AuthorDate: Fri Apr 10 12:25:45 2020 +1000

force using snapshot repo for parent pom dependency

Signed-off-by: olivier lamy 
---
 pom.xml | 13 +
 1 file changed, 13 insertions(+)

diff --git a/pom.xml b/pom.xml
index 4fb00c8..88e8cd1 100644
--- a/pom.xml
+++ b/pom.xml
@@ -114,4 +114,17 @@
   
 
   
+
+  
+
+  apache.snapshots
+  https://repository.apache.org/content/repositories/snapshots/
+  
+false
+  
+  
+true
+  
+
+  
 


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] branch master updated: basic .gitignore

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git


The following commit(s) were added to refs/heads/master by this push:
 new ee06059  basic .gitignore
ee06059 is described below

commit ee06059fa075e176d3f18868c0564237b7787d57
Author: olivier lamy 
AuthorDate: Fri Apr 10 11:43:09 2020 +1000

basic .gitignore

Signed-off-by: olivier lamy 
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..ffac74e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+target/
+*.iml


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] branch master updated: add Jenkinsfile

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git


The following commit(s) were added to refs/heads/master by this push:
 new 9dea49a  add Jenkinsfile
9dea49a is described below

commit 9dea49a86f9a1c62ffc0c41132a91dab96d2109f
Author: olivier lamy 
AuthorDate: Fri Apr 10 11:42:35 2020 +1000

add Jenkinsfile

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 64 +
 1 file changed, 64 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 000..dc0a883
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,64 @@
+#!groovy
+
+pipeline {
+  agent any
+  options {
+durabilityHint('PERFORMANCE_OPTIMIZED')
+buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '2'))
+timeout(time: 60, unit: 'MINUTES')
+  }
+  stages {
+stage( "Parallel Stage" ) {
+  parallel {
+stage( "Build / Test - JDK8" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "JDK 1.8 (latest)", "clean install" )
+script {
+  if (env.BRANCH_NAME == 'master') {
+mavenBuild( "JDK 1.8 (latest)", "deploy" )
+  }
+}
+  }
+}
+stage( "Build / Test - JDK11" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "JDK 11 (latest)", "clean install" )
+  }
+}
+  }
+}
+  }
+}
+
+
+
+/**
+ * To other developers, if you are using this method above, please use the 
following syntax.
+ *
+ * mavenBuild("", "   "
+ *
+ * @param jdk the jdk tool name (in jenkins) to use for this build
+ * @param cmdline the command line in "  "`format.
+ * @return the Jenkinsfile step representing a maven build
+ */
+def mavenBuild(jdk, cmdline) {
+  def mvnName = 'Maven 3.6.3'
+  //def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // 
".repository" //
+  //def settingsName = 'oss-settings.xml'
+  def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true'
+
+  withMaven(
+  maven: mvnName,
+  jdk: "$jdk",
+  publisherStrategy: 'EXPLICIT',
+  //globalMavenSettingsConfig: settingsName,
+  options: [junitPublisher(disabled: false)],
+  mavenOpts: mavenOpts) {
+// Some common Maven command line + provided command line
+sh "mvn -V -B -DfailIfNoTests=false -Dmaven.test.failure.ignore=true 
$cmdline"
+  }
+}


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: add basic .gitignore

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 2cf8474  add basic .gitignore
2cf8474 is described below

commit 2cf8474dbc5053aac89b3a21af116368a583adac
Author: olivier lamy 
AuthorDate: Fri Apr 10 11:42:15 2020 +1000

add basic .gitignore

Signed-off-by: olivier lamy 
---
 .gitignore | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000..ffac74e
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+target/
+*.iml


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix node name

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 5461bd2  fix node name
5461bd2 is described below

commit 5461bd266a34bd75a9458901f72be7146eda01aa
Author: olivier lamy 
AuthorDate: Fri Apr 10 10:59:56 2020 +1000

fix node name

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 8b26b5a..dc0a883 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,7 +11,7 @@ pipeline {
 stage( "Parallel Stage" ) {
   parallel {
 stage( "Build / Test - JDK8" ) {
-  agent { node { label 'linux' } }
+  agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
 mavenBuild( "JDK 1.8 (latest)", "clean install" )
@@ -23,7 +23,7 @@ pipeline {
   }
 }
 stage( "Build / Test - JDK11" ) {
-  agent { node { label 'linux' } }
+  agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
 mavenBuild( "JDK 11 (latest)", "clean install" )


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix jdk names

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d57248  fix jdk names
8d57248 is described below

commit 8d57248637ade2de3d034efef4c116fe762326eb
Author: olivier lamy 
AuthorDate: Fri Apr 10 10:52:44 2020 +1000

fix jdk names

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0bd3ab7..0fb0afd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -14,10 +14,10 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 1.8 (latest)", "clean install" )
 script {
   if (env.BRANCH_NAME == 'master') {
-mavenBuild( "jdk8", "deploy" )
+mavenBuild( "JDK 1.8 (latest)", "deploy" )
   }
 }
   }
@@ -26,7 +26,7 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 11 (latest)", "clean install" )
   }
 }
   }


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix jdk names

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d57248  fix jdk names
8d57248 is described below

commit 8d57248637ade2de3d034efef4c116fe762326eb
Author: olivier lamy 
AuthorDate: Fri Apr 10 10:52:44 2020 +1000

fix jdk names

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0bd3ab7..0fb0afd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -14,10 +14,10 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 1.8 (latest)", "clean install" )
 script {
   if (env.BRANCH_NAME == 'master') {
-mavenBuild( "jdk8", "deploy" )
+mavenBuild( "JDK 1.8 (latest)", "deploy" )
   }
 }
   }
@@ -26,7 +26,7 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 11 (latest)", "clean install" )
   }
 }
   }


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix more names

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 31a9f21  fix more names
31a9f21 is described below

commit 31a9f2177e60a583898c6ce5cfce05232f51306b
Author: olivier lamy 
AuthorDate: Fri Apr 10 10:57:15 2020 +1000

fix more names

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0fb0afd..8b26b5a 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -11,7 +11,7 @@ pipeline {
 stage( "Parallel Stage" ) {
   parallel {
 stage( "Build / Test - JDK8" ) {
-  agent { node { label 'ubuntu' } }
+  agent { node { label 'linux' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
 mavenBuild( "JDK 1.8 (latest)", "clean install" )
@@ -23,7 +23,7 @@ pipeline {
   }
 }
 stage( "Build / Test - JDK11" ) {
-  agent { node { label 'ubuntu' } }
+  agent { node { label 'linux' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
 mavenBuild( "JDK 11 (latest)", "clean install" )
@@ -46,7 +46,7 @@ pipeline {
  * @return the Jenkinsfile step representing a maven build
  */
 def mavenBuild(jdk, cmdline) {
-  def mvnName = 'maven3'
+  def mvnName = 'Maven 3.6.3'
   //def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // 
".repository" //
   //def settingsName = 'oss-settings.xml'
   def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true'


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix jdk names

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d57248  fix jdk names
8d57248 is described below

commit 8d57248637ade2de3d034efef4c116fe762326eb
Author: olivier lamy 
AuthorDate: Fri Apr 10 10:52:44 2020 +1000

fix jdk names

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0bd3ab7..0fb0afd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -14,10 +14,10 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 1.8 (latest)", "clean install" )
 script {
   if (env.BRANCH_NAME == 'master') {
-mavenBuild( "jdk8", "deploy" )
+mavenBuild( "JDK 1.8 (latest)", "deploy" )
   }
 }
   }
@@ -26,7 +26,7 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 11 (latest)", "clean install" )
   }
 }
   }


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix jdk names

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d57248  fix jdk names
8d57248 is described below

commit 8d57248637ade2de3d034efef4c116fe762326eb
Author: olivier lamy 
AuthorDate: Fri Apr 10 10:52:44 2020 +1000

fix jdk names

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index 0bd3ab7..0fb0afd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -14,10 +14,10 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 1.8 (latest)", "clean install" )
 script {
   if (env.BRANCH_NAME == 'master') {
-mavenBuild( "jdk8", "deploy" )
+mavenBuild( "JDK 1.8 (latest)", "deploy" )
   }
 }
   }
@@ -26,7 +26,7 @@ pipeline {
   agent { node { label 'ubuntu' } }
   options { timeout( time: 120, unit: 'MINUTES' ) }
   steps {
-mavenBuild( "jdk11", "clean install" )
+mavenBuild( "JDK 11 (latest)", "clean install" )
   }
 }
   }


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: fix typo

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


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

commit 174889109b26534ba105c9e800cdc42e39d4fa50
Author: olivier lamy 
AuthorDate: Fri Apr 10 09:43:05 2020 +1000

fix typo

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/Jenkinsfile b/Jenkinsfile
index e2b35ee..0bd3ab7 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -55,10 +55,9 @@ def mavenBuild(jdk, cmdline) {
   maven: mvnName,
   jdk: "$jdk",
   publisherStrategy: 'EXPLICIT',
-  globalMavenSettingsConfig: settingsName,
+  //globalMavenSettingsConfig: settingsName,
   options: [junitPublisher(disabled: false)],
-  mavenOpts: mavenOpts,
-  mavenLocalRepo: localRepo) {
+  mavenOpts: mavenOpts) {
 // Some common Maven command line + provided command line
 sh "mvn -V -B -DfailIfNoTests=false -Dmaven.test.failure.ignore=true 
$cmdline"
   }


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-parent] branch master updated: add Jenkinsfile

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-parent.git


The following commit(s) were added to refs/heads/master by this push:
 new c83b7e5  add Jenkinsfile
c83b7e5 is described below

commit c83b7e511e41a9f9bdb412a99bb79a38e14d452b
Author: olivier lamy 
AuthorDate: Fri Apr 10 09:41:54 2020 +1000

add Jenkinsfile

Signed-off-by: olivier lamy 
---
 Jenkinsfile | 65 +
 1 file changed, 65 insertions(+)

diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 000..e2b35ee
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,65 @@
+#!groovy
+
+pipeline {
+  agent any
+  options {
+durabilityHint('PERFORMANCE_OPTIMIZED')
+buildDiscarder(logRotator(numToKeepStr: '7', artifactNumToKeepStr: '2'))
+timeout(time: 60, unit: 'MINUTES')
+  }
+  stages {
+stage( "Parallel Stage" ) {
+  parallel {
+stage( "Build / Test - JDK8" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "jdk11", "clean install" )
+script {
+  if (env.BRANCH_NAME == 'master') {
+mavenBuild( "jdk8", "deploy" )
+  }
+}
+  }
+}
+stage( "Build / Test - JDK11" ) {
+  agent { node { label 'ubuntu' } }
+  options { timeout( time: 120, unit: 'MINUTES' ) }
+  steps {
+mavenBuild( "jdk11", "clean install" )
+  }
+}
+  }
+}
+  }
+}
+
+
+
+/**
+ * To other developers, if you are using this method above, please use the 
following syntax.
+ *
+ * mavenBuild("", "   "
+ *
+ * @param jdk the jdk tool name (in jenkins) to use for this build
+ * @param cmdline the command line in "  "`format.
+ * @return the Jenkinsfile step representing a maven build
+ */
+def mavenBuild(jdk, cmdline) {
+  def mvnName = 'maven3'
+  //def localRepo = "${env.JENKINS_HOME}/${env.EXECUTOR_NUMBER}" // 
".repository" //
+  //def settingsName = 'oss-settings.xml'
+  def mavenOpts = '-Xms2g -Xmx2g -Djava.awt.headless=true'
+
+  withMaven(
+  maven: mvnName,
+  jdk: "$jdk",
+  publisherStrategy: 'EXPLICIT',
+  globalMavenSettingsConfig: settingsName,
+  options: [junitPublisher(disabled: false)],
+  mavenOpts: mavenOpts,
+  mavenLocalRepo: localRepo) {
+// Some common Maven command line + provided command line
+sh "mvn -V -B -DfailIfNoTests=false -Dmaven.test.failure.ignore=true 
$cmdline"
+  }
+}


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-rdc] branch master created (now 5e7131b)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-rdc.git.


  at 5e7131b  upgrade some maven plugins, jdk target is now 8

This branch includes the following new commits:

 new 8bd7513  New repository initialized by cvs2svn.
 new a39a73f  Add RDC to sandbox
 new abb6cd2  Add license and various updates
 new 5bc0b6a  using commons-el instead of jasper-runtime
 new 8cd4307  fixed links
 new 9520474  Commit update from Rahul P Akolkar
 new c04afd2  servlet.jar is called servlet24.jar in the taglibs sandbox 
environment.
 new 2ef16f8  Update copyrights.  From Rahul P Akolkar.
 new d4d574d  Update from Rahul P Akolkar
 new 7b62c22  Update from Rahul P Akolkar (note: dependency is now on 
struts 1.2)
 new 557d609  Cleanup
 new e8bf715  Beta 1.0
 new 076c751  Files I missed in yesterday's commit. Author: Rahul P Akolkar
 new bba59d7  Beta 1.1 of the RDC sandbox taglib. Source: Rahul P Akolkar 

 new 0aa44a8  Beta 1.2 of the RDC sandbox taglib From: Rahul P Akolkar 

 new f5dd62f  Beta 1.3 of the RDC sandbox taglib Author: Rahul P Akolkar 

 new 9b9a829  minor update to the Beta 1.3 Author: Rahul P Akolkar
 new 1a5ca59  Another minor update to Beta 1.3 Author: Rahul P Akolkar 

 new b88f21c  Cosmetic changes only, for the RDC taglib home page within 
the Jakarta Taglibs website.
 new 80dcb54  Update the RDC version in documentation to 1.0.0. RESULT 
thread of 1.0 VOTE begins here [ 
http://marc.theaimsgroup.com/?l=taglibs-dev=112101824805166=2 ]. Added news 
item and revision history for RDC taglib web pages.
 new 783bef1  Moving RDC taglib from jakarta taglibs sandbox to jakarta 
taglibs proper
 new 2b5cf81  1) No need for config attribute of group to be rtexprvalue 
false. 2) Add ASL to package.html files. 3) Many minor cosmetic changes.
 new f84f871  Summary: Adding an alpha implementation of an SCXML (State 
Chart XML) engine and an alpha version of a SCXML dialog management strategy 
for the RDC group container.
 new fdee10a  Completing yesterday's commit of the SCXML alphas.
 new 6d8dd92  1) Modified taglibs website "menu" to list RDC under 
supported (rather than sandbox) 2) Reverted taglibs.xsl as indicated in r225448 
3) Modified RDC webpage to point to official builds 4) Corrected typo in 
binarydist.xml
 new 61ea81a  1) Brush up documentation 2) Add graceful exit attributes to 
newer components
 new 4531337  1) Sorted tagtoc 2) Renamed a helper tag
 new 1001b20  1) Few code style changes 2) Added, a somewhat belated, news 
item about completion of RDC migration to Proper
 new 838bc35  Towards Commons Sandbox, a cleaner RDC - SCXML separation.
 new 69f74cd  Help tooling by renaming impl to match tag name
 new 6f335fc  Modified TLD in accordance with change in r230949.
 new 5eb4fa2  Resolved BZ# 35024 [Submitted by Mitch Warner] Thanks Mitch!
 new 553398d  Resolved BZ# 35490 [Submitted by Elam Birnbaum] Thanks Elam!
 new f6fcc77  1) Tabs -> spaces 2) Localizing resources used by composites
 new 063193f  A fix for BZ# 36168
 new 3b15105  Corrected documentation to reflect deployment procedure on 
JSP 2.0 containers, and updated dependencies information.
 new 8f45f78  Deprecate DialogManager#confirm(), see short diff below for 
reason.
 new 45b81bd  For rdc:group, cache DM strategy instance, use a better 
classloading scheme and provide more informative error messages.
 new 16389d5  Revision history for 1.1 snapshots.
 new b888a1d  Improve rdc:template documentation for grammar attribute.
 new 59153f5  Add subdialog support for atomic RDCs.
 new 1f74aba  Enhance rdc:select1 functionality when the option elements 
are constructed programmatically.
 new 4380640  Changelog.
 new e277d66  1) Restore backward compatibility in rendering of option 
elements (change made last night differed in the rendering of "accept" 
attribute). 2) Change attribute default values to empty string
 new 1ef3781  Sync up the validation sections of the configuration and the 
meta-data files.
 new 79935b2  Minor javadoc updates.
 new 1f1f924  Remove the SCXML bits now that Commons SCXML 0.5 is available
 new c61b159  Update package names, API to match Commons SCXML 0.5
 new 09db32b  New dependency for RDC taglib: Commons SCXML 0.5 Update 
copyright in SCXMLDialog.java
 new 14edb8e  Changelog.
 new 6186f55  Update dependency information on main page.
 new e03ba48  Updated dependency docs.
 new 45b557d  The RDC build now produces two jars: taglibs-rdc.jar and 
taglibs-rdc-sampleapps.jar
 new 2b445b0  Update license headers per: 
http://www.apache.org/legal/src-headers.html Add a separate NOTICE file in the 
rdc directory so we can store RDC taglib specific copyright dates.

[tomcat-taglibs-site] branch master created (now e354693)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-site.git.


  at e354693  Happy New Year 2017

This branch includes the following new commits:

 new c6c39b6  First stab at a new m2 based site. Missing bits.
 new 543c549  Adjusting menus more. Using the Commons l Hooking in 
download page.
 new dc62883  Updating the menu
 new a14501d  Inlining the current custom bug.html page as 
issue-tracking.html. Modified to point to the local mail-list.html page.
 new e6c91f4  Making the pom a child of the taglibs-parent. Wondering if 
there's any reason for keeping the site separate.
 new 3ac45e7  Pulled in the binarydist and sourcedist pages from the old 
site as using.xml and building.xml
 new b6baa3a  Pulled over the tutorial page from the old site
 new 7f73887  Copied the news in from the html output of the old site. 
Needs spinning out into its own page with only recent headlines on the front 
page.
 new 3c1f39a  Fixing left over noise from copying page from Commons site
 new 03dd9ba  Adding spec section as helpful links, creating a news archive 
and moving the data over.
 new 4c272c2  Creating released, sandbox and deprecated pages
 new 6fd1fd6  Rewriting the front page a bit. Didn't like the old one.
 new 87d0e48  Making the home link relative. May or may not work out - is a 
bit odd locally.
 new 787c29f  Killing the link to adding a taglib. We have the Incubator 
nowadays, though there is good info in addtaglib.xml to extract. The building 
page needs a rewrite given we don't build in that anymore - maybe keep it for 
legacy builds.
 new 73a211c  Making the site.xml shared between all components
 new d632654  Renaming
 new 92b8094  Makes sense, I believe, for index.xml to be in the parent 
while site itself is a child. Gonna be interesting.
 new bb1b013  Setting the url, which is a subsite of 'site' and adjusting a 
few pages that need to look up a directory
 new e2ce661  For the site's purposes, Jakarta Taglibs. ie) ditch the Site
 new 57782d9  taglibs-site to site
 new c69f154  Moving site into proper rather than hiding in trunks-proper. 
Still no need for tags/branches
 new 1b7e3ff  Moving the index back to the site now that I've figured 
things out
 new d39f2f2  Making the site live at the top level, but moving most of the 
files down into a site subdirectory
 new b9753de  Copying logos over
 new aaf0a77  Missed the hidden guidelines page
 new f383589  Killing the link to the addtaglib page
 new 0611068  Putting the images in the right place to be picked up by the 
maven site plugin
 new bc6b1bf  Fixing the initial copyright date
 new d2903f7  Setting today's date in the news about m2 conversions
 new 93964a4  Moving issue tracking up a directory, else it won't override 
the default one
 new a3d941e  Can call this 'Site' again now I'm not trying to use variables
 new 798017b  Adding distributionManagement section for site deploys
 new d0ff346  scpexe works better
 new d0528c4  Moving the new maven subsites 'live'
 new 4aeb032  Moving the building page to a legacy location
 new e5c3b2e  Writing a new building page
 new f919de2  Fixing url to the site. It has no trunk
 new 834aabd  Point to new m2 site.
 new 7321e17  Ignore Thumbs.db for images directory.
 new ec6a998  JSTL 1.2, not 2.0
 new 6cb90d8  Updating Dormant page to show download link or svn; this 
allows us to delete the websites
 new d27e169  Pointing the site to the index rather than the intro for 
dormant libraries
 new 30400cd  Fixing links to image and jmstags svn
 new e7a870c  Moving datetime, i18n and random to deprecated
 new c5ca4ae  News on deprecation
 new 3ba85c1  Moving the Taglib site over to Tomcat
 new 1e0add5  Fixing svn location post move
 new 6a74916  Rebrand to Apache Taglibs
 new 63d4405  Updating news
 new 3622a93  Minor update to text as part of Jakarta->Tomcat
 new dc505ab  Jakarta -> Apache
 new e6751f4  Fixing link to Standard taglib
 new 359e410  Reordering the JSTL paragraph to mention the Apache taglib 
first and JSTL second
 new 035ca86  Adjusting links for old taglibs to point to Jakarta
 new ed299b5  Removing dead pages
 new 81a4116  Adding a section on formerly being Jakarta Taglibs so older 
taglibs may be found
 new d49b922  Commenting out jsp spec section. Not sure why it's there.
 new 1efa322  Update copyright year for TC tagslibs trunk.
 new 3f54ea6  Updating retired taglibs link to point to the new location 
for the page (attic)
 new 48396e4  Update copyright year.
 new bb35119  fix parent path
 new 31617c3  add basic svn ignore
 new c5628f2  s/2011/2012/g
 new ac78201  Removing link to Jakarta download pag
 new e

[tomcat-taglibs-standard] tag taglibs-standard-1.2.5 created (now 1d75ebc)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.5
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 1d75ebc  (commit)
This tag includes the following new commits:

 new 1d75ebc  [maven-release-plugin]  copy for tag taglibs-standard-1.2.5

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: [maven-release-plugin] copy for tag taglibs-standard-1.2.5

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.5
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 1d75ebc2f0c5e1fbf7b96c657a1b4783b35d0f8d
Author: Jeremy Boynes 
AuthorDate: Tue Mar 10 16:10:58 2015 +

[maven-release-plugin]  copy for tag taglibs-standard-1.2.5


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: [maven-release-plugin] copy for tag taglibs-standard-1.2.4

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.4
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit b3db883bba3ad481f85b29e3b0dffa3ec1970858
Author: Jeremy Boynes 
AuthorDate: Tue Mar 10 15:33:51 2015 +

[maven-release-plugin]  copy for tag taglibs-standard-1.2.4


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag taglibs-standard-1.2.0 created (now e0a03f3)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.0
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at e0a03f3  (commit)
This tag includes the following new commits:

 new e0a03f3  [maven-release-plugin]  copy for tag taglibs-standard-1.2.0

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-112
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit e8d6d36e15a545dcbd353202242ac0fecbf2f0d0
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-111_01
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 29657b1dadf8f53551a028079cba5ee3fa4c37f8
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: [maven-release-plugin] copy for tag taglibs-standard-1.2.1

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.1
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 12cf7cf13ddeba7d204aade5715139d4dbdbeb1c
Author: Jeremy Boynes 
AuthorDate: Thu Nov 14 02:47:18 2013 +

[maven-release-plugin]  copy for tag taglibs-standard-1.2.1


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: [maven-release-plugin] copy for tag taglibs-standard-1.2.2

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.2
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 1a24aa56efbf0a20932459a3477fc0d024d80b00
Author: Jeremy Boynes 
AuthorDate: Mon Jan 26 16:58:26 2015 +

[maven-release-plugin]  copy for tag taglibs-standard-1.2.2


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-111 created (now 97fc20c)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-111
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 97fc20c  (commit)
This tag includes the following new commits:

 new 1aed317  This commit was manufactured by cvs2svn to create tag 
'standard-111'.
 new 97fc20c  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-111'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-111
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 1aed31707dd14f7ea03be90b9f9e386fe1931e84
Author: no_author 
AuthorDate: Mon Jul 19 20:57:16 2004 +

This commit was manufactured by cvs2svn to create tag 'standard-111'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: Try tagging a 1.2.6 RC1.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.6-RC1
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit c2ea99504083849d457b4ca5bb9fc234011ed8bf
Author: Remy Maucherat 
AuthorDate: Tue May 16 15:15:58 2017 +

Try tagging a 1.2.6 RC1.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-112 created (now e8d6d36)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-112
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at e8d6d36  (commit)
This tag includes the following new commits:

 new b5cb23d  This commit was manufactured by cvs2svn to create tag 
'standard-112'.
 new e8d6d36  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: [maven-release-plugin] copy for tag taglibs-standard-1.2.3

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.3
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 85382d64a51e9643c6ac1a2ff6567ab1a2dedff1
Author: Jeremy Boynes 
AuthorDate: Wed Feb 11 04:17:25 2015 +

[maven-release-plugin]  copy for tag taglibs-standard-1.2.3


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/01: [maven-release-plugin] copy for tag taglibs-standard-1.2.0

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag taglibs-standard-1.2.0
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit e0a03f3ddb62ae49f10c4ed02316f32f382cbace
Author: Jeremy Boynes 
AuthorDate: Sat Nov 9 23:22:40 2013 +

[maven-release-plugin]  copy for tag taglibs-standard-1.2.0


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag taglibs-standard-1.2.3 created (now 85382d6)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.3
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 85382d6  (commit)
This tag includes the following new commits:

 new 85382d6  [maven-release-plugin]  copy for tag taglibs-standard-1.2.3

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag taglibs-standard-1.2.4 created (now b3db883)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.4
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at b3db883  (commit)
This tag includes the following new commits:

 new b3db883  [maven-release-plugin]  copy for tag taglibs-standard-1.2.4

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag taglibs-standard-1.2.1 created (now 12cf7cf)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.1
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 12cf7cf  (commit)
This tag includes the following new commits:

 new 12cf7cf  [maven-release-plugin]  copy for tag taglibs-standard-1.2.1

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-111
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 97fc20c38b5805a88b02732905c0fb9685476fce
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag taglibs-standard-1.2.2 created (now 1a24aa5)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.2
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 1a24aa5  (commit)
This tag includes the following new commits:

 new 1a24aa5  [maven-release-plugin]  copy for tag taglibs-standard-1.2.2

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag taglibs-standard-1.2.6-RC1 created (now c2ea995)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag taglibs-standard-1.2.6-RC1
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at c2ea995  (commit)
This tag includes the following new commits:

 new c2ea995  Try tagging a 1.2.6 RC1.

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-111_01'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-111_01
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit c352f11f57d776234a7ef06940c3eef305754ded
Author: no_author 
AuthorDate: Fri Sep 3 17:09:59 2004 +

This commit was manufactured by cvs2svn to create tag
'standard-111_01'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-112'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-112
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit b5cb23d03e720703a01b461146f627c4dfdfbe9d
Author: no_author 
AuthorDate: Mon Oct 25 20:19:41 2004 +

This commit was manufactured by cvs2svn to create tag 'standard-112'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-111_01 created (now 29657b1)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-111_01
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 29657b1  (commit)
This tag includes the following new commits:

 new c352f11  This commit was manufactured by cvs2svn to create tag 
'standard-111_01'.
 new 29657b1  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_FINAL created (now 3228b9f)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_FINAL
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 3228b9f  (commit)
This tag includes the following new commits:

 new 060fb54  This commit was manufactured by cvs2svn to create tag 
'standard-110_FINAL'.
 new 3228b9f  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_FINAL'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_FINAL
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 060fb54b277b4465cfded006bd5b32e4d1042810
Author: no_author 
AuthorDate: Fri Jan 30 20:16:26 2004 +

This commit was manufactured by cvs2svn to create tag
'standard-110_FINAL'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_FINAL
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 3228b9ffbe88ad623baabd8abed5f51712f03c6d
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_16
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit b3ef3236d17b3747eaf57e0b5c8d63e0aff7669d
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_FCS_2
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit beac2d89705a4b09a1d6e0b740504aec44c1f4ca
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_14'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_14
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 0c64867b2f12d57a5cf7c82ce23bf21358f40cc7
Author: no_author 
AuthorDate: Mon Aug 25 22:14:01 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_14'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_14
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 0673e240ebba96b5661cd794db9cccffc8576998
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_15 created (now 88f9452)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_15
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 88f9452  (commit)
This tag includes the following new commits:

 new 0824d68  This commit was manufactured by cvs2svn to create tag 
'standard-110_15'.
 new 88f9452  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_FCS created (now 5775987)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_FCS
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 5775987  (commit)
This tag includes the following new commits:

 new 186e155  This commit was manufactured by cvs2svn to create tag 
'standard-110_FCS'.
 new 5775987  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_13
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 0e0de7bb39766e9a19d9b31704069ee3725be2f3
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_13'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_13
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 620aa181d5bd6eb53f5f50aba44318eeb6c47573
Author: no_author 
AuthorDate: Tue Aug 19 02:37:57 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_13'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_15'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_15
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 0824d68ab0153da91392651f203dc46d7d388a57
Author: no_author 
AuthorDate: Thu Aug 28 16:35:42 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_15'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_16'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_16
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit a38b2092686fd219fb8ac231326b332c27b388c1
Author: no_author 
AuthorDate: Wed Sep 10 22:00:08 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_16'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_14 created (now 0673e24)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_14
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 0673e24  (commit)
This tag includes the following new commits:

 new 0c64867  This commit was manufactured by cvs2svn to create tag 
'standard-110_14'.
 new 0673e24  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_12 created (now ee6b638)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_12
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at ee6b638  (commit)
This tag includes the following new commits:

 new 94f81e2  This commit was manufactured by cvs2svn to create tag 
'standard-110_12'.
 new ee6b638  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_12'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_12
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 94f81e23492d1e7f358daff875168d35b69e50f9
Author: no_author 
AuthorDate: Wed Aug 6 20:45:23 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_12'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_13 created (now 0e0de7b)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_13
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 0e0de7b  (commit)
This tag includes the following new commits:

 new 620aa18  This commit was manufactured by cvs2svn to create tag 
'standard-110_13'.
 new 0e0de7b  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_FCS_2 created (now beac2d8)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_FCS_2
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at beac2d8  (commit)
This tag includes the following new commits:

 new abd519b  This commit was manufactured by cvs2svn to create tag 
'standard-110_FCS_2'.
 new beac2d8  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_16 created (now b3ef323)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_16
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at b3ef323  (commit)
This tag includes the following new commits:

 new a38b209  This commit was manufactured by cvs2svn to create tag 
'standard-110_16'.
 new b3ef323  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_12
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit ee6b638cbe81f6a01af06795ab57a5275e051f4c
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_FCS_2'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_FCS_2
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit abd519ba2a3f4f58be1ccfe7363d3f3ecb7483d7
Author: no_author 
AuthorDate: Fri Jan 23 01:21:51 2004 +

This commit was manufactured by cvs2svn to create tag
'standard-110_FCS_2'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_FCS'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_FCS
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 186e15597cd667ee86000fbc1c5efb67f487510c
Author: no_author 
AuthorDate: Tue Jan 20 21:57:08 2004 +

This commit was manufactured by cvs2svn to create tag
'standard-110_FCS'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_FCS
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 577598711921e269c8df03c7c2ac896d4759f453
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_15
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 88f9452455f65318a6844a8dec04233435a7bb92
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_11
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 14bf2f76a4bf8269f13175570a0438cc3f80c62a
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_05
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 15f7fe83668546e36b0e84ad177a49f90b9ccbb2
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_10'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_10
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit d6a8484f7910428e654fca87f01467260f6a8f2e
Author: no_author 
AuthorDate: Fri May 9 00:41:04 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_10'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_07'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_07
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit c0d29fdd40f42380cc771d649fac0216ec585514
Author: no_author 
AuthorDate: Sat Apr 5 23:39:34 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_07'.
---
 src/javax/servlet/jsp/jstl/.cvsignore | 2 --
 src/org/apache/taglibs/standard/tag/common/.cvsignore | 2 --
 src/org/apache/taglibs/standard/tag/el/.cvsignore | 2 --
 src/org/apache/taglibs/standard/tag/rt/.cvsignore | 2 --
 4 files changed, 8 deletions(-)

diff --git a/src/javax/servlet/jsp/jstl/.cvsignore 
b/src/javax/servlet/jsp/jstl/.cvsignore
deleted file mode 100644
index 0fe373a..000
--- a/src/javax/servlet/jsp/jstl/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!
-
diff --git a/src/org/apache/taglibs/standard/tag/common/.cvsignore 
b/src/org/apache/taglibs/standard/tag/common/.cvsignore
deleted file mode 100644
index 0fe373a..000
--- a/src/org/apache/taglibs/standard/tag/common/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!
-
diff --git a/src/org/apache/taglibs/standard/tag/el/.cvsignore 
b/src/org/apache/taglibs/standard/tag/el/.cvsignore
deleted file mode 100644
index 0fe373a..000
--- a/src/org/apache/taglibs/standard/tag/el/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!
-
diff --git a/src/org/apache/taglibs/standard/tag/rt/.cvsignore 
b/src/org/apache/taglibs/standard/tag/rt/.cvsignore
deleted file mode 100644
index 0fe373a..000
--- a/src/org/apache/taglibs/standard/tag/rt/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-!
-


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_08
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 04f6a8d356b0cf12036a03fbf33f677b5fd33d1d
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_04'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_04
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit e54d201047584eaa314858e63813dcc84d6ebeb0
Author: no_author 
AuthorDate: Wed Apr 2 05:46:55 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_04'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_06'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_06
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 0d2a0cb9ee553cfdc6f5b7a4a008dfbb6a4cc842
Author: no_author 
AuthorDate: Sat Apr 5 23:39:34 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_06'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_11'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_11
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 2f6d4b9eb57c8fd98848ec14ccba79c80a4687ba
Author: no_author 
AuthorDate: Wed May 21 00:30:27 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_11'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_09'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_09
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit be3d7f3d89a9d16cd25edb31450d07a498d098f6
Author: no_author 
AuthorDate: Thu May 1 00:06:21 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_09'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_06 created (now e71ab4e)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_06
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at e71ab4e  (commit)
This tag includes the following new commits:

 new 0d2a0cb  This commit was manufactured by cvs2svn to create tag 
'standard-110_06'.
 new e71ab4e  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_05 created (now 15f7fe8)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_05
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 15f7fe8  (commit)
This tag includes the following new commits:

 new 0de4b97  This commit was manufactured by cvs2svn to create tag 
'standard-110_05'.
 new 15f7fe8  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_11 created (now 14bf2f7)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_11
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 14bf2f7  (commit)
This tag includes the following new commits:

 new 2f6d4b9  This commit was manufactured by cvs2svn to create tag 
'standard-110_11'.
 new 14bf2f7  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_04
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit e840d5d4106decba43357db34d9c2e3f35210550
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_09
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit cd1930333dc9f10ab14451848bedc77e8a237757
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_08'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_08
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit a47aa51e960fa2b216f7584a968f9d2bfe36eb42
Author: no_author 
AuthorDate: Thu Apr 10 08:09:15 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_08'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_09 created (now cd19303)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_09
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at cd19303  (commit)
This tag includes the following new commits:

 new be3d7f3  This commit was manufactured by cvs2svn to create tag 
'standard-110_09'.
 new cd19303  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_08 created (now 04f6a8d)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_08
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 04f6a8d  (commit)
This tag includes the following new commits:

 new a47aa51  This commit was manufactured by cvs2svn to create tag 
'standard-110_08'.
 new 04f6a8d  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_07
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 8e5d27a01cb8e35d6f154768e94b4aff072c5248
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_10
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 06ee50f13aeac8e74d82fcb40bcc9c8de88b8cd3
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_05'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_05
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 0de4b97648c0033e5a1cc06ab016828cbb673327
Author: no_author 
AuthorDate: Thu Apr 3 18:34:37 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_05'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_10 created (now 06ee50f)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_10
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 06ee50f  (commit)
This tag includes the following new commits:

 new d6a8484  This commit was manufactured by cvs2svn to create tag 
'standard-110_10'.
 new 06ee50f  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 02/02: Moving the Standard taglib over to Tomcat

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_06
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit e71ab4ebae0e22e0fab4921b0d9b936fc842bf14
Author: Henri Yandell 
AuthorDate: Mon Aug 17 04:16:09 2009 +

Moving the Standard taglib over to Tomcat


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] tag standard-110_07 created (now 8e5d27a)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-110_07
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at 8e5d27a  (commit)
This tag includes the following new commits:

 new c0d29fd  This commit was manufactured by cvs2svn to create tag 
'standard-110_07'.
 new 8e5d27a  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-105'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-105
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit 09b9dd7c7bd5601779bcf06e2c933efb34da8d98
Author: no_author 
AuthorDate: Mon Jan 26 23:24:52 2004 +

This commit was manufactured by cvs2svn to create tag 'standard-105'.
---
 build.xml  |   4 +-
 doc/web/ReleaseNotes.html  |  96 +++-
 examples/conf/jstl-examples.tld|  37 +
 .../jsptl/examples/taglib/DefaultLocaleTag.java|  38 ++---
 .../taglibs/jsptl/examples/taglib/LocalesTag.java  |  71 ++---
 examples/web/format/Demo.jsp   | 116 ++
 examples/web/format/index.html |   3 +
 examples/web/index.html|   3 +-
 examples/web/iterators/Extensability.jsp   |  45 ++
 examples/web/iterators/index.html  |   9 +-
 .../jsp/jstl/core/ConditionalTagSupport.java   |   4 +-
 src/javax/servlet/jsp/jstl/core/Config.java|  13 +-
 src/javax/servlet/jsp/jstl/sql/ResultImpl.java |  13 +-
 src/org/apache/taglibs/standard/Version.java   | 169 +
 .../standard/tag/common/core/OutSupport.java   |   1 +
 .../tag/common/fmt/FormatNumberSupport.java|   7 +-
 .../standard/tag/common/fmt/MessageSupport.java|  40 +++--
 .../standard/tag/common/fmt/SetLocaleSupport.java  |   4 +-
 .../standard/tag/common/sql/QueryTagSupport.java   |   1 +
 .../taglibs/standard/tag/el/fmt/MessageTag.java|  18 +--
 .../taglibs/standard/tag/rt/fmt/MessageTag.java|   4 +-
 .../apache/taglibs/standard/tlv/JstlBaseTLV.java   |  47 +++---
 .../apache/taglibs/standard/tlv/JstlCoreTLV.java   |  10 +-
 .../apache/taglibs/standard/tlv/JstlFmtTLV.java|  10 +-
 .../apache/taglibs/standard/tlv/JstlSqlTLV.java|  13 +-
 .../apache/taglibs/standard/tlv/JstlXmlTLV.java|  10 +-
 xml/intro.xml  |  35 +++--
 27 files changed, 678 insertions(+), 143 deletions(-)

diff --git a/build.xml b/build.xml
index 80a6e6b..b3eaffd 100644
--- a/build.xml
+++ b/build.xml
@@ -3,7 +3,7 @@
 
 
 
-
+
 
 
 
@@ -52,7 +52,7 @@
 
 

-   
+   
 
 
 
diff --git a/doc/web/ReleaseNotes.html b/doc/web/ReleaseNotes.html
index d4e761b..2fe8a64 100644
--- a/doc/web/ReleaseNotes.html
+++ b/doc/web/ReleaseNotes.html
@@ -9,24 +9,65 @@
 
 Standard: An Implementation of the JSP Standard Tag Library (JSTL)
 
-Version: 1.0.4-dev (In Development)
+Version: 1.0.5
 Release Notes
 
 
 
-The Standard 1.0.4-dev release is a minor update to the Standard 1.0.3
+The Standard 1.0.5 release is a minor update to the Standard 1.0.4
 release, which builds on the Standard 1.0 FCS release, an 
 implementation of the final http://java.sun.com/products/jstl;>JSTL 
1.0 Specification. The Standard
-1.0.4-dev release includes many bug fixes and updates. An official release of
-JSTL 1.0.4 should happen once important bugs have been fixed and the release is
-stable.
+1.0.5 release includes many bug fixes and updates.
 
 The Standard Taglib, which is hosted at Apache, is used as the source 
repository for the http://java.sun.com/products/jstl;>JSTL 1.0 
reference implementation supplied by Sun Microsystems, Inc.
 
 
 Release History
 
-As of Today  Standard 1.0.4-dev nightly
+Somewhere in  2004  Standard 1.0.5
+Bugs fixed since Standard 1.0.4 Taglib release:
+
+  
+
+  
+
+  Bug Id
+
+Summary
+  
+  
+
+  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=15703;>15703
+
+Illegal scope attribute without var in 
"fmt:setLocale" tag
+  
+  
+
+  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24892;>24892
+
+ResultImpl should implement 
java.io.Serializable
+  
+  
+
+  http://nagoya.apache.org/bugzilla/show_bug.cgi?id=25637;>25637
+
+IteratorTagSupport example is missing 
+  
+
+  
+
+
+ 
+  Other changes and additions:
+  
+Regarding bug #24892, it's important to note that relying on the 
serializability of Result objects might not be portable across different 
implementations of the JSTL spec. Also, ResultImpl will be serializable only if 
the values returned by the ResultSet are serializable too, which depends on the 
JDBC driver being used.
+  
+
+
+September 2003  Standard 1.0.4
 Bugs fixed since Standard 1.0.3 Taglib release:
 
   
@@ -40,20 +81,59 @@ stable.
   
 
   http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16069;>16912
+href="http://nagoya.apache.org/bugzilla/show_bug.cgi?id=16912;>16912
 
 
 We take advantage of the new method URLEncoder.encode(String,String) 
if running on J2SE

[tomcat-taglibs-standard] tag standard-103_03 created (now b7359eb)

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a change to tag standard-103_03
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git.


  at b7359eb  (commit)
This tag includes the following new commits:

 new 38bd2c5  This commit was manufactured by cvs2svn to create tag 
'standard-103_03'.
 new b7359eb  Moving the Standard taglib over to Tomcat

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.



-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat-taglibs-standard] 01/02: This commit was manufactured by cvs2svn to create tag 'standard-110_02'.

2020-04-09 Thread olamy
This is an automated email from the ASF dual-hosted git repository.

olamy pushed a commit to tag standard-110_02
in repository https://gitbox.apache.org/repos/asf/tomcat-taglibs-standard.git

commit af4492340e5d08e082930a51ebafab1ff853c8de
Author: no_author 
AuthorDate: Wed Mar 26 20:43:06 2003 +

This commit was manufactured by cvs2svn to create tag
'standard-110_02'.


-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



  1   2   3   4   5   6   7   8   9   10   >