[Bug 64112] New: RewriteValve rules not applied in HTTPS

2020-02-03 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64112

Bug ID: 64112
   Summary: RewriteValve rules not applied in HTTPS
   Product: Tomcat 9
   Version: 9.0.16
  Hardware: PC
OS: Linux
Status: NEW
  Severity: normal
  Priority: P2
 Component: Catalina
  Assignee: dev@tomcat.apache.org
  Reporter: hzhang1...@gmail.com
  Target Milestone: -

It is about org.apache.catalina.valves.rewrite.RewriteValve.

When website is opened in HTTPS, the rules in RewriteValve are not applied.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



[tomcat] branch master updated: Share more configuration between HTTP/1.1 and nested HTTP/2

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

remm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
 new 2aa5f6b  Share more configuration between HTTP/1.1 and nested HTTP/2
2aa5f6b is described below

commit 2aa5f6bbb4a88b5d806b4289430ce9025ca5c75e
Author: remm 
AuthorDate: Mon Feb 3 21:53:29 2020 +0100

Share more configuration between HTTP/1.1 and nested HTTP/2

maxHeaderCount and maxTrailerCount attributes remain on the HTTP/2
UpgradeProtocol element as the functionality is not present in HTTP/1.1.
Maybe this could be added at some point.
---
 TOMCAT-NEXT.txt|   2 -
 .../coyote/http11/AbstractHttp11Protocol.java  |   3 +
 java/org/apache/coyote/http2/Http2Protocol.java| 110 ++---
 test/org/apache/coyote/http2/Http2TestBase.java|   2 +
 .../org/apache/coyote/http2/TestAbortedUpload.java |   3 +-
 test/org/apache/coyote/http2/TestHttp2Limits.java  |  12 +--
 .../apache/coyote/http2/TestHttp2Section_8_1.java  |   4 +-
 webapps/docs/changelog.xml |   5 +
 webapps/docs/config/http2.xml  |  90 ++---
 9 files changed, 36 insertions(+), 195 deletions(-)

diff --git a/TOMCAT-NEXT.txt b/TOMCAT-NEXT.txt
index 332bc9b..95d6376 100644
--- a/TOMCAT-NEXT.txt
+++ b/TOMCAT-NEXT.txt
@@ -49,8 +49,6 @@ New items for 10.0.0.x onwards:
 
  8. Consider disabling the AJP connector by default.
 
- 9. Share configuration between HTTP/1.1 and nested HTTP/2 rather than 
duplicating.
-
 
 Deferred until 10.0.x:
 
diff --git a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java 
b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java
index 58b05a3..fd3ab74 100644
--- a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java
+++ b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java
@@ -414,6 +414,9 @@ public abstract class AbstractHttp11Protocol extends 
AbstractProtocol {
 protected Set getAllowedTrailerHeadersInternal() {
 return allowedTrailerHeaders;
 }
+public boolean isTrailerHeaderAllowed(String headerName) {
+return allowedTrailerHeaders.contains(headerName);
+}
 public String getAllowedTrailerHeaders() {
 // Chances of a size change between these lines are small enough that a
 // sync is unnecessary.
diff --git a/java/org/apache/coyote/http2/Http2Protocol.java 
b/java/org/apache/coyote/http2/Http2Protocol.java
index aab980c..56cb8e1 100644
--- a/java/org/apache/coyote/http2/Http2Protocol.java
+++ b/java/org/apache/coyote/http2/Http2Protocol.java
@@ -17,27 +17,18 @@
 package org.apache.coyote.http2;
 
 import java.nio.charset.StandardCharsets;
-import java.util.ArrayList;
-import java.util.Collections;
 import java.util.Enumeration;
-import java.util.HashSet;
-import java.util.List;
-import java.util.Locale;
-import java.util.Set;
-import java.util.concurrent.ConcurrentHashMap;
-import java.util.regex.Pattern;
 
 import org.apache.coyote.AbstractProtocol;
 import org.apache.coyote.Adapter;
-import org.apache.coyote.CompressionConfig;
 import org.apache.coyote.Processor;
 import org.apache.coyote.Request;
 import org.apache.coyote.Response;
 import org.apache.coyote.UpgradeProtocol;
 import org.apache.coyote.UpgradeToken;
+import org.apache.coyote.http11.AbstractHttp11Protocol;
 import org.apache.coyote.http11.upgrade.InternalHttpUpgradeHandler;
 import org.apache.coyote.http11.upgrade.UpgradeProcessorInternal;
-import org.apache.tomcat.util.buf.StringUtils;
 import org.apache.tomcat.util.net.SocketWrapperBase;
 
 public class Http2Protocol implements UpgradeProtocol {
@@ -77,12 +68,8 @@ public class Http2Protocol implements UpgradeProtocol {
 // change the default defined in ConnectionSettingsBase.
 private int initialWindowSize = 
ConnectionSettingsBase.DEFAULT_INITIAL_WINDOW_SIZE;
 // Limits
-private Set allowedTrailerHeaders =
-Collections.newSetFromMap(new ConcurrentHashMap());
 private int maxHeaderCount = Constants.DEFAULT_MAX_HEADER_COUNT;
-private int maxHeaderSize = Constants.DEFAULT_MAX_HEADER_SIZE;
 private int maxTrailerCount = Constants.DEFAULT_MAX_TRAILER_COUNT;
-private int maxTrailerSize = Constants.DEFAULT_MAX_TRAILER_SIZE;
 private int overheadCountFactor = DEFAULT_OVERHEAD_COUNT_FACTOR;
 private int overheadContinuationThreshold = 
DEFAULT_OVERHEAD_CONTINUATION_THRESHOLD;
 private int overheadDataThreshold = DEFAULT_OVERHEAD_DATA_THRESHOLD;
@@ -90,10 +77,8 @@ public class Http2Protocol implements UpgradeProtocol {
 
 private boolean initiatePingDisabled = false;
 private boolean useSendfile = true;
-// Compression
-private final CompressionConfig compressionConfig = new 
CompressionConfig();
 // Reference to HTTP/1.1 protocol that this instance is configured under
-private Abstrac

svn commit: r1873539 - in /tomcat/site/trunk: docs/presentations.html xdocs/presentations.xml

2020-02-03 Thread markt
Author: markt
Date: Mon Feb  3 15:52:11 2020
New Revision: 1873539

URL: http://svn.apache.org/viewvc?rev=1873539&view=rev
Log:
Add link to recording

Modified:
tomcat/site/trunk/docs/presentations.html
tomcat/site/trunk/xdocs/presentations.xml

Modified: tomcat/site/trunk/docs/presentations.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/presentations.html?rev=1873539&r1=1873538&r2=1873539&view=diff
==
--- tomcat/site/trunk/docs/presentations.html (original)
+++ tomcat/site/trunk/docs/presentations.html Mon Feb  3 15:52:11 2020
@@ -272,6 +272,23 @@ li.targeted {
 
 
 
+Webinar Series 2020
+
+
+
+  
+
+Tomcat 10 and Jakarta EE 9 - Mark Thomas,
+https://www.youtube.com/watch?v=Vwj0XG-4Nos";>video
+  
+
+
+
+
+
+
+
+
 ApacheCon Europe 2019
 
 

Modified: tomcat/site/trunk/xdocs/presentations.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/presentations.xml?rev=1873539&r1=1873538&r2=1873539&view=diff
==
--- tomcat/site/trunk/xdocs/presentations.xml (original)
+++ tomcat/site/trunk/xdocs/presentations.xml Mon Feb  3 15:52:11 2020
@@ -44,6 +44,14 @@ li.targeted {
   transition:ease-in-out 1s;
 }
 
+
+
+  
+Tomcat 10 and Jakarta EE 9 - Mark Thomas,
+https://www.youtube.com/watch?v=Vwj0XG-4Nos";>video
+  
+
+
 
 
   



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



[Bug 64111] New: Exception while processing an asynchronous request NullPointerException at org.apache.catalina.core.AsyncContextImpl.timeout

2020-02-03 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64111

Bug ID: 64111
   Summary: Exception while processing an asynchronous request
NullPointerException at
org.apache.catalina.core.AsyncContextImpl.timeout
   Product: Tomcat 9
   Version: 9.0.30
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: Connectors
  Assignee: dev@tomcat.apache.org
  Reporter: f.jans...@blueriq.com
  Target Milestone: -

Created attachment 36990
  --> https://bz.apache.org/bugzilla/attachment.cgi?id=36990&action=edit
Project used to reproduce the issue

I have a Spring Boot application that offers asynchronous endpoints with
project reactor. I deploy the application as a war file on Tomcat.

When I stop Tomcat while a client is connected to such a request, a
NullPointerException is printed upon shutdown:

03-Feb-2020 16:07:46.104 INFO [main] org.apache.coyote.AbstractProtocol.stop
Stopping ProtocolHandler ["http-nio-8080"]
03-Feb-2020 16:07:46.108 SEVERE [http-nio-8080-exec-5]
org.apache.catalina.connector.CoyoteAdapter.asyncDispatch Exception while
processing an asynchronous request
java.lang.NullPointerException
at
org.apache.catalina.core.AsyncContextImpl.timeout(AsyncContextImpl.java:146)
at
org.apache.catalina.connector.CoyoteAdapter.asyncDispatch(CoyoteAdapter.java:153)
at
org.apache.coyote.AbstractProcessor.dispatch(AbstractProcessor.java:237)
at
org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:59)
at
org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:860)
at
org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1598)
at
org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49)
at
java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at
java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at
org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.base/java.lang.Thread.run(Thread.java:834)

I attached a very simple project to demonstrate the issue:
* Build the attached project with maven
* Deploy the war file on Tomcat (with Java 11 as JRE)
* Connect a browser to http://://push-messages
* Shut Tomcat down while the request is active
* Check the logs to see the Exception + stack trace

-- 
You are receiving this mail because:
You are the assignee for the bug.
-
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org



svn commit: r1873531 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2020-02-03 Thread markt
Author: markt
Date: Mon Feb  3 11:24:55 2020
New Revision: 1873531

URL: http://svn.apache.org/viewvc?rev=1873531&view=rev
Log:
Larry is still on the PMC

Modified:
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/whoweare.xml

Modified: tomcat/site/trunk/docs/whoweare.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whoweare.html?rev=1873531&r1=1873530&r2=1873531&view=diff
==
--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Mon Feb  3 11:24:55 2020
@@ -327,6 +327,11 @@ short bios for some of them.
 
 
 
+David Lawrence Isaacs (larryi at 
apache.org)
+
+
+
+
 Jim Jagielski (jim at apache.org)
 
 
@@ -503,7 +508,6 @@ Emeritus is defined in the Apache gl
 Vasile Gaburici (gaburici at apache.org),
 Petr Jiricka (jiricka at apache.org),
 Pierre Delisle (pierred at apache.org),
-David Lawrence Isaacs (larryi at apache.org),
 Arieh Markel (arieh at apache.org),
 Marc A. Saegesser (marcsaeg at apache.org),
 Dan Milstein (danmil at apache.org),

Modified: tomcat/site/trunk/xdocs/whoweare.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/whoweare.xml?rev=1873531&r1=1873530&r2=1873531&view=diff
==
--- tomcat/site/trunk/xdocs/whoweare.xml (original)
+++ tomcat/site/trunk/xdocs/whoweare.xml Mon Feb  3 11:24:55 2020
@@ -88,6 +88,9 @@ A complete list of all the Apache Commit
 Jacob Hookom (jhook at apache.org)
 
 
+David Lawrence Isaacs (larryi at apache.org)
+
+
 Jim Jagielski (jim at apache.org)
 
 
@@ -204,7 +207,6 @@ Emeritus is defined in the Apache gl
 Vasile Gaburici (gaburici at apache.org),
 Petr Jiricka (jiricka at apache.org),
 Pierre Delisle (pierred at apache.org),
-David Lawrence Isaacs (larryi at apache.org),
 Arieh Markel (arieh at apache.org),
 Marc A. Saegesser (marcsaeg at apache.org),
 Dan Milstein (danmil at apache.org),



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



svn commit: r1873530 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2020-02-03 Thread markt
Author: markt
Date: Mon Feb  3 11:20:20 2020
New Revision: 1873530

URL: http://svn.apache.org/viewvc?rev=1873530&view=rev
Log:
Add as emeritus PMC members, those people who were on the original PMC when the 
project was formed but have since left.

Modified:
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/whoweare.xml

Modified: tomcat/site/trunk/docs/whoweare.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whoweare.html?rev=1873530&r1=1873529&r2=1873530&view=diff
==
--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Mon Feb  3 11:20:20 2020
@@ -441,17 +441,33 @@ Emeritus is defined in the Apache gl
 
 
 
+Kin-man Chung (kinman at apache.org)
+
+
+
 Ian Darwin (idarwin at apache.org)
 
 
 
-Yoav Shapira (yoavs at apache.org)
+Jan Luehe (luehe at apache.org)
+
+
+
+Kurt Miller (truk at apache.org)
 
 
 
 Glenn Nielsen (glenn at apache.org)
 
 
+
+Amy Roh (amyroh at apache.org)
+
+
+
+Yoav Shapira (yoavs at apache.org)
+
+
 
 Emeritus 
Committers
 

Modified: tomcat/site/trunk/xdocs/whoweare.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/whoweare.xml?rev=1873530&r1=1873529&r2=1873530&view=diff
==
--- tomcat/site/trunk/xdocs/whoweare.xml (original)
+++ tomcat/site/trunk/xdocs/whoweare.xml Mon Feb  3 11:20:20 2020
@@ -158,7 +158,12 @@ A complete list of all the Apache Commit
 http://www.apache.org/foundation/glossary.html#Emeritus";>
 Emeritus is defined in the Apache glossary.
 
+Kin-man Chung (kinman at apache.org)
 Ian Darwin (idarwin at apache.org)
+Jan Luehe (luehe at apache.org)
+Kurt Miller (truk at apache.org)
+Glenn Nielsen (glenn at apache.org)
+Amy Roh (amyroh at apache.org)
 Yoav Shapira (yoavs at apache.org)
 
-Glenn Nielsen (glenn at apache.org)
 
 
 



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



Re: Glenn Nielsen (was: Updating Tomcat site)

2020-02-03 Thread Mark Thomas
On 03/02/2020 10:33, Mark Thomas wrote:



> Glenn requested to go emeritus from the Tomcat project in 2009.
> 
> That his name is missing from the who we are page seems like an
> oversight. I'll get that fixed.

Hmm.

Looking at "whoweare" there are quite a few differences compared to the
official records. I'll go through and do a full check.

Mark

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



svn commit: r1873529 - in /tomcat/site/trunk: docs/whoweare.html xdocs/whoweare.xml

2020-02-03 Thread markt
Author: markt
Date: Mon Feb  3 10:51:49 2020
New Revision: 1873529

URL: http://svn.apache.org/viewvc?rev=1873529&view=rev
Log:
Add glenn@ to the emeritus PMC list

Modified:
tomcat/site/trunk/docs/whoweare.html
tomcat/site/trunk/xdocs/whoweare.xml

Modified: tomcat/site/trunk/docs/whoweare.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whoweare.html?rev=1873529&r1=1873528&r2=1873529&view=diff
==
--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Mon Feb  3 10:51:49 2020
@@ -441,17 +441,17 @@ Emeritus is defined in the Apache gl
 
 
 
-
-
-Ian Darwin (idarwin at 
apache.org)
-
-
+Ian Darwin (idarwin at apache.org)
 
 
 
 Yoav Shapira (yoavs at apache.org)
 
 
+
+Glenn Nielsen (glenn at apache.org)
+
+
 
 Emeritus 
Committers
 

Modified: tomcat/site/trunk/xdocs/whoweare.xml
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/xdocs/whoweare.xml?rev=1873529&r1=1873528&r2=1873529&view=diff
==
--- tomcat/site/trunk/xdocs/whoweare.xml (original)
+++ tomcat/site/trunk/xdocs/whoweare.xml Mon Feb  3 10:51:49 2020
@@ -158,10 +158,7 @@ A complete list of all the Apache Commit
 http://www.apache.org/foundation/glossary.html#Emeritus";>
 Emeritus is defined in the Apache glossary.
 
-
 Ian Darwin (idarwin at apache.org)
-
-
 Yoav Shapira (yoavs at apache.org)
 
+Glenn Nielsen (glenn at apache.org)
 
 
 



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



Re: Updating Tomcat site

2020-02-03 Thread Martin Grigorov
On Mon, Feb 3, 2020 at 11:44 AM Konstantin Kolinko 
wrote:

> пн, 3 февр. 2020 г. в 10:23, Martin Grigorov :
> >
> > Hi,
> >
> > I want to update https://tomcat.apache.org/ci.html to mention the
> testing on TravisCI on ARM64 architecture.
> >
> > I've checked out https://svn.apache.org/repos/asf/tomcat/site/trunk.
> > Before doing any changes executing 'ant' produces huge diff because the
> current version has stripped leading spaces, e.g.:
> >
> > [...]
> >
> > I don't see anything in build.xml & build.properties.default that
> controls this behavior.
>
> Intending is turned on with
>  indent="yes"
> in tomcat-site.xsl
>
> The actual indenting depends on the version of Java that is used to
> run Apache Ant.
>
> > Should I make a no-changes commit just to update the docs/** with the
> white spaces or should I do some post-processing to keep the whitespaces
> out ?
>
> It does not matter much. Maybe a separate commit for "xdocs" and one for
> "docs".
>

Thanks!
I've updated the site!

But I noticed that the Gump links do not work. For example
http://vmgump.apache.org/tomcat-trunk/
It seems http://vmgump.apache.org is down.
Does someone know how to bring it up ?

Martin


> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>


Re: Glenn Nielsen (was: Updating Tomcat site)

2020-02-03 Thread Mark Thomas
On 03/02/2020 09:51, Konstantin Kolinko wrote:
> пн, 3 февр. 2020 г. в 10:23, Martin Grigorov :
>>
>> Hi,
>>
>> I want to update https://tomcat.apache.org/ci.html to mention the testing on 
>> TravisCI on ARM64 architecture.
>>
>> [...]
>>
>> P.S. Who is Glenn L. Nielsen ?
>>  
> 
> Just some quick search
> 
> - I do not see him at our "whoweare" page.
> 
> - I do not see him in the list of active committers, members or
> emeritus members of the ASF.

Glenn is an emeritus member of the ASF.

> - (As he was a committer, his ICLA should be in the records. I have
> not looked there.)

Yes, there is an ICLA on file.

> Searching through mailing list archives
> 1) E.g. one of release announcements for mod_jk was sent by him:
> https://tomcat.markmail.org/thread/sx4arghwi5c2bbpb

If you search for his Apache ID you get a lot more messages. The most
recent I found was late 2005.

He was actively involved in Tomcat (and other projects) back when Tomcat
was part of Jakarta.

Glenn requested to go emeritus from the Tomcat project in 2009.

That his name is missing from the who we are page seems like an
oversight. I'll get that fixed.

Mark

> 
> 2) I see the following commit to Jakarta web site
> http://svn.apache.org/viewvc?view=revision&revision=1059704
> 
> The commit removed the following text from
> jakarta/site/xdocs/site/whoweare.xml
> 
> [quote]
>
>  Glenn Nielsen (glenn at apache.org)
>  
>  Glenn is the Unix Programming Coordinator for the Missouri Research
>  and Education Network (http://www.more.net/";>MOREnet),
>  part of the University of Missouri System.  Major contributions
>  include implementation of the Java SecurityManager in Tomcat and five
>  JSP tag libraries.  He is a member of the specification group to
>  develop a standard tag library for JSP pages.
>  
> [/quote]
> 
> 
> Best regards,
> Konstantin Kolinko
> 
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
> 


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



svn commit: r1873528 - in /tomcat/site/trunk: docs/ci.html xdocs/ci.xml

2020-02-03 Thread mgrigorov
Author: mgrigorov
Date: Mon Feb  3 10:31:02 2020
New Revision: 1873528

URL: http://svn.apache.org/viewvc?rev=1873528&view=rev
Log:
Add TravisCI to the list of CI servers used to build & test Tomcat

TravisCI is used to build and test on ARM64 architecture.

Also use HTTPS instead of HTTP for BuildBot links


Modified:
tomcat/site/trunk/docs/ci.html
tomcat/site/trunk/xdocs/ci.xml

Modified: tomcat/site/trunk/docs/ci.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/ci.html?rev=1873528&r1=1873527&r2=1873528&view=diff
==
--- tomcat/site/trunk/docs/ci.html (original)
+++ tomcat/site/trunk/docs/ci.html Mon Feb  3 10:31:02 2020
@@ -234,6 +234,9 @@
 
 Jenkins
 
+
+TravisCI
+
 
 
 
@@ -261,6 +264,10 @@ Apache Software Foundation. In short, th
 
 Jenkins
 
+  
+
+TravisCI
+
 
 
 
@@ -284,7 +291,11 @@ prepared and published by ASF Buildbot,
 
   
 
-http://ci.apache.org/projects/tomcat/tomcat9/docs/index.html"; 
rel="nofollow">Tomcat 9.0.x (trunk)
+http://ci.apache.org/projects/tomcat/tomcat10/docs/index.html"; 
rel="nofollow">Tomcat 10.0.x (master)
+
+  
+
+http://ci.apache.org/projects/tomcat/tomcat9/docs/index.html"; 
rel="nofollow">Tomcat 9.0.x
 
   
 
@@ -325,7 +336,7 @@ prepared and published by ASF Buildbot,
 
   
 
-http://ci.apache.org/builders/tomcat-trunk";>Build status page for 
tomcat-trunk
+https://ci.apache.org/builders/tomcat-trunk";>Build status page for 
tomcat-trunk
 
 This builder 
is triggered after each commit. It does a release build and runs tests (using 
multiple parallel threads).
 
@@ -337,7 +348,7 @@ prepared and published by ASF Buildbot,
 
   
 
-http://ci.apache.org/projects/tomcat/tomcat9/"; rel="nofollow">Published 
files:
+https://ci.apache.org/projects/tomcat/tomcat9/"; rel="nofollow">Published 
files:
 
 
   
@@ -970,6 +981,25 @@ prepared and published by ASF Buildbot,
 
 
 
+
+
+
+
+
+TravisCI
+
+
+
+https://travis-ci.org/";>Travis CI is used to test Tomcat builds on 
ARM64 architecture
+
+
+
+  
+
+https://travis-ci.org/apache/tomcat";>Tomcat mast

buildbot success in on tomcat-9-trunk

2020-02-03 Thread buildbot
The Buildbot has detected a restored build on builder tomcat-9-trunk while 
building tomcat. Full details are available at:
https://ci.apache.org/builders/tomcat-9-trunk/builds/25

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: asf946_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-9-commit' 
triggered this build
Build Source Stamp: [branch 9.0.x] efde3381c23e7c04b3a1333d0ddc1d50ac225ca5
Blamelist: Martin Tzvetanov Grigorov 

Build succeeded!

Sincerely,
 -The Buildbot




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



Re: buildbot failure in on tomcat-9-trunk

2020-02-03 Thread Martin Grigorov
On Mon, Feb 3, 2020 at 11:56 AM Rémy Maucherat  wrote:

> On Mon, Feb 3, 2020 at 8:38 AM Martin Grigorov 
> wrote:
>
>> Hi,
>>
>> The build failure is not related to my changes.
>> Similar failure has happened few weeks ago:
>> https://ci.apache.org/builders/tomcat-9-trunk/builds/12/
>>
>
> Due to the series of random test failures problems with HTTP/2 and NIO2 in
> the past, I now have the habit of always checking every single failure. So
> you don't need to put out a "not my fault" email in that case, it's not
> you. It is a "known" recurrent failure with multicast it seems, I don't get
> it personally.
>

I've sent the email so that the team knows that I've checked the build
failure, i.e. that I care that my changes don't break something else :-)

Thanks for all your work on Tomcat, Rémy!


> Rémy
>
>
>>
>> Martin
>>
>> On Mon, Feb 3, 2020 at 9:20 AM  wrote:
>>
>>> The Buildbot has detected a new failure on builder tomcat-9-trunk while
>>> building tomcat. Full details are available at:
>>> https://ci.apache.org/builders/tomcat-9-trunk/builds/24
>>>
>>> Buildbot URL: https://ci.apache.org/
>>>
>>> Buildslave for this Build: asf946_ubuntu
>>>
>>> Build Reason: The AnyBranchScheduler scheduler named
>>> 'on-tomcat-9-commit' triggered this build
>>> Build Source Stamp: [branch 9.0.x]
>>> 58a490bfa7429d33cd3437b8470569daa7d9be30
>>> Blamelist: Martin Tzvetanov Grigorov 
>>>
>>> BUILD FAILED: failed compile_1
>>>
>>> Sincerely,
>>>  -The Buildbot
>>>
>>>
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
>>> For additional commands, e-mail: dev-h...@tomcat.apache.org
>>>
>>>


Re: [PROPOSAL] Tomcat 10: rename language bundles

2020-02-03 Thread Rémy Maucherat
On Mon, Feb 3, 2020 at 10:13 AM Konstantin Kolinko 
wrote:

> сб, 1 февр. 2020 г. в 16:31, Michael Osipov :
> >
> > Am 2020-01-30 um 18:41 schrieb Konstantin Kolinko:
> > > ср, 29 янв. 2020 г. в 00:08, Michael Osipov :
> > >
> > > [...]
> > >
> > > (Being too strict about language is a barrier that may reject people.)
> >
> > For those who don't know both, they don't care. For those who know care
> > to make it right/consistent. I see no downsides to make it right.
> >
> > This has nothing to do with American, British, You Name It English. It
> > is simply about consistent naming.
>
> I see no positive sides in the proposed renaming,
> and I do not feel it to be a right thing.
>

It's hard to argue the usefulness of the fix is limited. I'm not going to
-1 it though since the problem might be my fault (can't remember, that's
convenient :) ).

Rémy


>
> Some downsides were already mentioned by others. I will write down a
> more complete list below.
>
> > For those who don't know both, they don't care.
>
> "i18n" is a more widely known and widely used word.
>
> Familiar words make people feel more comfortable.
>
> > > 2. In multi-module projects built with Apache Maven, one widely used
> > > naming convention is to name artifacts produced by the nested modules
> > > as -.
> > >
> > > E.g., a discussion:
> > >
> https://stackoverflow.com/questions/9435460/maven-naming-conventions-for-hierarchical-multiple-module-projects
> > >
> > > I mean that the current artifact names of "tomcat-i18n-" can
> > > be interpreted as module "" in a parent project "tomcat-i18n".
> > > It means that those artifacts are part of internationalization effort
> > > in Tomcat.
> >
> > I don't see how this is related?! Nor did I bring up to do any migration
> > to Maven or its naming scheme.
>
> I mean that "tomcat-i18n" is the base name.
>
> It is not "tomcat" + "-i18n-de",  but "tomcat-i18n" + "-de", as an example.
>
> The current names are not wrong.
>
>
> > > 3. Overall, my vote for this proposal is -0.5.
> > >
> > > It is not a veto, but I do not like it.
> >
> > So you generally do not object, but don't see a need for?
>
> I really object.
> I just do not veto, I do not end the discussion here at once.
>
>
> If there were other reasons to justify the change (e.g. some
> reorganization of packaging), ...
>
> (E.g. all translation files could be packaged into a single jar.)
>
> > I see no downsides ...
>
> To make it clear, the following are externally visible consequences of
> such a change:
>
> 1. Renaming of artifacts in Maven
> 2. Renaming of libraries in ${catalina.base}/lib
> 3. Change of configuration in conf/catalina.properties file (the
> libraries are mentioned in a jarsToSkip pattern).
>
> The following are internal changes:
> 4. Changes in build procedure (in build.xml, res/maven/mvn-pub.xml).
> 5. Changes in documentation (class-loader-howto.xml mentions the files).
>
> ##1-3 are the downsides that downstream consumers of Tomcat would have
> to adapt to.
>
> I certainly would have to change some of my scripts that I use with
> Tomcat and some configuration settings.
>
> ##4-5 are our internal matter.
>
> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>


Re: [tomcat] branch master updated: Add ASLv2 header to the new Travis CI related files

2020-02-03 Thread Martin Grigorov
On Mon, Feb 3, 2020 at 11:46 AM Konstantin Kolinko 
wrote:

> > --- a/res/rat/rat-excludes.txt
> > +++ b/res/rat/rat-excludes.txt
> > @@ -55,6 +55,8 @@
> >
> >- Temporary cache files used by Checkstle
> >
> > +  - Configuration files for third party Continuous Integration systems
> like Travis CI
> > +
> >
> >  output/build/logs/*
> >  output/test-tmp/**
> > @@ -184,3 +186,6 @@ output/dist/temp/safeToDelete.tmp
> >  **/*.md
> >
> >  output/res/checkstyle/*
> > +
> > +.travis.yml
> > +.travis/antTest.sh
>
> Excluded are files that do not have proper license headers.
> If a file has a license header, there is no need to exclude it.
>

Removed them from rat-excludes.txt!

Thanks for watching over!

Martin


>
> Links to RAT reports are available here:
> https://tomcat.apache.org/ci.html
>
> Best regards,
> Konstantin Kolinko
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>
>


[tomcat] branch master updated: Do not exclude TravisCI files from RAT.

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

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
 new 18a7536  Do not exclude TravisCI files from RAT.
18a7536 is described below

commit 18a75363d9307c7ef5a462c4e6e1e72fb180bcac
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Feb 3 11:54:41 2020 +0200

Do not exclude TravisCI files from RAT.

They have ASLv2 headers

(cherry picked from commit 39b0a966611ca4e229e8640b6dc3a5c7a057ac31)
---
 res/rat/rat-excludes.txt | 2 --
 1 file changed, 2 deletions(-)

diff --git a/res/rat/rat-excludes.txt b/res/rat/rat-excludes.txt
index ab82a2b..2bafb4e 100644
--- a/res/rat/rat-excludes.txt
+++ b/res/rat/rat-excludes.txt
@@ -187,5 +187,3 @@ output/dist/temp/safeToDelete.tmp
 
 output/res/checkstyle/*
 
-.travis.yml
-.travis/antTest.sh


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



Re: buildbot failure in on tomcat-9-trunk

2020-02-03 Thread Rémy Maucherat
On Mon, Feb 3, 2020 at 8:38 AM Martin Grigorov  wrote:

> Hi,
>
> The build failure is not related to my changes.
> Similar failure has happened few weeks ago:
> https://ci.apache.org/builders/tomcat-9-trunk/builds/12/
>

Due to the series of random test failures problems with HTTP/2 and NIO2 in
the past, I now have the habit of always checking every single failure. So
you don't need to put out a "not my fault" email in that case, it's not
you. It is a "known" recurrent failure with multicast it seems, I don't get
it personally.

Rémy


>
> Martin
>
> On Mon, Feb 3, 2020 at 9:20 AM  wrote:
>
>> The Buildbot has detected a new failure on builder tomcat-9-trunk while
>> building tomcat. Full details are available at:
>> https://ci.apache.org/builders/tomcat-9-trunk/builds/24
>>
>> Buildbot URL: https://ci.apache.org/
>>
>> Buildslave for this Build: asf946_ubuntu
>>
>> Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-9-commit'
>> triggered this build
>> Build Source Stamp: [branch 9.0.x]
>> 58a490bfa7429d33cd3437b8470569daa7d9be30
>> Blamelist: Martin Tzvetanov Grigorov 
>>
>> BUILD FAILED: failed compile_1
>>
>> Sincerely,
>>  -The Buildbot
>>
>>
>>
>>
>> -
>> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
>> For additional commands, e-mail: dev-h...@tomcat.apache.org
>>
>>


[tomcat] branch 9.0.x updated: Do not exclude TravisCI files from RAT.

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

mgrigorov pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
 new f4cc6e1  Do not exclude TravisCI files from RAT.
f4cc6e1 is described below

commit f4cc6e1a81abb657ca3f9235be02aeb01f85e969
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Feb 3 11:54:41 2020 +0200

Do not exclude TravisCI files from RAT.

They have ASLv2 headers

(cherry picked from commit 39b0a966611ca4e229e8640b6dc3a5c7a057ac31)
---
 res/rat/rat-excludes.txt | 2 --
 1 file changed, 2 deletions(-)

diff --git a/res/rat/rat-excludes.txt b/res/rat/rat-excludes.txt
index 5aeb94e..a6ed2b1 100644
--- a/res/rat/rat-excludes.txt
+++ b/res/rat/rat-excludes.txt
@@ -187,5 +187,3 @@ output/dist/temp/safeToDelete.tmp
 
 output/res/checkstyle/*
 
-.travis.yml
-.travis/antTest.sh


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



[tomcat] branch 8.5.x updated: Do not exclude TravisCI files from RAT.

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

mgrigorov pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
 new 39b0a96  Do not exclude TravisCI files from RAT.
39b0a96 is described below

commit 39b0a966611ca4e229e8640b6dc3a5c7a057ac31
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Feb 3 11:54:41 2020 +0200

Do not exclude TravisCI files from RAT.

They have ASLv2 headers
---
 res/rat/rat-excludes.txt | 2 --
 1 file changed, 2 deletions(-)

diff --git a/res/rat/rat-excludes.txt b/res/rat/rat-excludes.txt
index 48f0937..520c94a 100644
--- a/res/rat/rat-excludes.txt
+++ b/res/rat/rat-excludes.txt
@@ -185,5 +185,3 @@ output/dist/temp/safeToDelete.tmp
 
 output/res/checkstyle/*
 
-.travis.yml
-.travis/antTest.sh


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



svn commit: r1873527 [27/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/security-taglibs.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-taglibs.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/security-taglibs.html (original)
+++ tomcat/site/trunk/docs/security-taglibs.html Mon Feb  3 09:51:13 2020
@@ -1,284 +1,286 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Taglibs vulnerabilities
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Taglibs vulnerabilities
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-  
-
-
-Apache Taglibs vulnerabilities
-
-
-Fixed in Apache Standard 
Taglib 1.2.3
-
-
-
-
-Apache Taglibs vulnerabilities
-
-  
-This page lists all security vulnerabilities fixed in released versions
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+ 

svn commit: r1873527 [25/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/security-9.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-9.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/security-9.html (original)
+++ tomcat/site/trunk/docs/security-9.html Mon Feb  3 09:51:13 2020
@@ -1,311 +1,315 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Tomcat 9 vulnerabilities
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Tomcat 9 vulnerabilities
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-Apache Tomcat 9.x 
vulnerabilities
-
-
-Fixed in Apache Tomcat 9.0.30
-
-
-Fixed in Apache Tomcat 9.0.29
-
-
-Fixed in Apache Tomcat 9.0.20
-
-
-Fixed in Apache Tomcat 9.0.19
-
-
-Fixed in Apache Tomcat 9.0.16
-
-
-Fixed in Apache Tomcat 9.0.12
-
-
-Fixed in Apache Tomcat 9.0.10
-
-
-Fixed in Apache Tomcat 9.0.9
-
-
-Fixed in Apache Tomcat 9.0.8
-
-
-Fixed in Apache Tomcat 9.0.5
-
-
-Fixed in Apache Tomcat 9.0.2
-
-
-Fixed in Apache Tomcat 9.0.1
-
-
-Fixed in Apache Tomcat 
9.0.0.M22
-
-
-Fixed in Apache Tomcat 
9.0.0.M21
-
-
-Fixed in Apache Tomcat 
9.0.0.M19
-
-
-Fixed in Apache Tomcat 
9.0.0.M18
-
-
-Fixed in Apache Tomcat 
9.0.0.M17
-
-
-Fixed in Apache Tomcat 
9.0.0.M15
-
-
-Fixed in Apache Tomcat 
9.0.0.M13
-
-
-Fixed in Apache Tomcat 
9.0.0.M10
-
-
-Fixed in Apache Tomcat 9.0.0.M8
-
-
-Fixed in Apache Tomcat 9.0.0.M3
-
-
-
-
-Apache Tomcat 9.x 
vulnerabilities
-
-
-This page lists all security vulner

svn commit: r1873527 [23/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/security-6.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-6.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/security-6.html (original)
+++ tomcat/site/trunk/docs/security-6.html Mon Feb  3 09:51:13 2020
@@ -1,624 +1,602 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Tomcat 6 vulnerabilities
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Tomcat 6 vulnerabilities
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-Apache Tomcat 6.x 
vulnerabilities
-
-
-Fixed in Apache Tomcat 6.0.53
-
-
-Fixed in Apache Tomcat 6.0.50
-
-
-Fixed in Apache Tomcat 6.0.48
-
-
-Fixed in Apache Tomcat 6.0.47
-
-
-Fixed in Apache Tomcat 6.0.45
-
-
-Fixed in Apache Tomcat 6.0.44
-
-
-Fixed in Apache Tomcat 6.0.43
-
-
-Fixed in Apache Tomcat 6.0.41
-
-
-Fixed in Apache Tomcat 6.0.39
-
-
-Fixed in Apache Tomcat 6.0.37
-
-
-Fixed in Apache Tomcat 6.0.36
-
-
-Fixed in Apache Tomcat 6.0.35
-
-
-Fixed in Apache Tomcat 6.0.33
-
-
-Fixed in Apache Tomcat 6.0.32
-
-
-Fixed in Apache Tomcat 6.0.30
-
-
-Fixed in Apache Tomcat 6.0.28
-
-
-Fixed in Apache Tomcat 6.0.24
-
-
-Fixed in Apache Tomcat 6.0.20
-
-
-Fixed in Apache Tomcat 6.0.18
-
-
-Fixed in Apache Tomcat 6.0.16
-
-
-Fixed in Apache Tomcat 6.0.14
-
-
-Fixed in Apache Tomcat 6.0.11
-
-
-Fixed in Apache Tomcat 6.0.10
-
-
-Fixed in Apache Tomcat 6.0.9
-
-
-Fixed in Apache Tomcat 6.0.6
-
-
-Not a vulne

svn commit: r1873527 [17/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews-2014.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2014.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews-2014.html (original)
+++ tomcat/site/trunk/docs/oldnews-2014.html Mon Feb  3 09:51:13 2020
@@ -1,1053 +1,1083 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news!
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news!
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Other news
-
-
-Announcements from other years can be found here:
-
-
-  
-
-year 2019
-
-  
-
-year 2018
-
-  
-
-year 2017
-
-  
-
-year 2016
-
-  
-
-year 2015
-
-  
-year 2014
-  
-
-year 2013
-
-  
-
-year 2012
-
-  
-
-year 2011
-
-  
-
-year 2010
-
-
-
-
-
-
-2014-11-22 Tomcat 6.0.43 Released
-
- 
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+

svn commit: r1873527 [18/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews-2016.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2016.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews-2016.html (original)
+++ tomcat/site/trunk/docs/oldnews-2016.html Mon Feb  3 09:51:13 2020
@@ -1,1615 +1,1626 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news!
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news!
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Older news
-
-
-Announcements from previous years can be found here:
-
-
-  
-
-year 2019
-
-  
-
-year 2018
-
-  
-
-year 2017
-
-  
-year 2016
-  
-
-year 2015
-
-  
-
-year 2014
-
-  
-
-year 2013
-
-  
-
-year 2012
-
-  
-
-year 2011
-
-  
-
-year 2010
-
-
-
-
-
-
-2016-12-08 Tomcat 8.5.9 Released
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+   

Glenn Nielsen (was: Updating Tomcat site)

2020-02-03 Thread Konstantin Kolinko
пн, 3 февр. 2020 г. в 10:23, Martin Grigorov :
>
> Hi,
>
> I want to update https://tomcat.apache.org/ci.html to mention the testing on 
> TravisCI on ARM64 architecture.
>
> [...]
>
> P.S. Who is Glenn L. Nielsen ?
>  

Just some quick search

- I do not see him at our "whoweare" page.

- I do not see him in the list of active committers, members or
emeritus members of the ASF.

- (As he was a committer, his ICLA should be in the records. I have
not looked there.)

Searching through mailing list archives
1) E.g. one of release announcements for mod_jk was sent by him:
https://tomcat.markmail.org/thread/sx4arghwi5c2bbpb

2) I see the following commit to Jakarta web site
http://svn.apache.org/viewvc?view=revision&revision=1059704

The commit removed the following text from
jakarta/site/xdocs/site/whoweare.xml

[quote]
   
 Glenn Nielsen (glenn at apache.org)
 
 Glenn is the Unix Programming Coordinator for the Missouri Research
 and Education Network (http://www.more.net/";>MOREnet),
 part of the University of Missouri System.  Major contributions
 include implementation of the Java SecurityManager in Tomcat and five
 JSP tag libraries.  He is a member of the specification group to
 develop a standard tag library for JSP pages.
 
[/quote]


Best regards,
Konstantin Kolinko

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



svn commit: r1873527 [11/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/migration-8.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-8.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/migration-8.html (original)
+++ tomcat/site/trunk/docs/migration-8.html Mon Feb  3 09:51:13 2020
@@ -1,369 +1,367 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Migration Guide - Tomcat 8.0.x
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Migration Guide - Tomcat 8.0.x
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-General
-
-
-Migrating from 7.0.x to 8.0.x
-
-
-Java 7 required
-
-
-Specification APIs
-
-
-Servlet 3.1 API
-
-
-JavaServer Pages 2.3
-
-
-Jar Scanning
-
-
-Default connector 
implementation
-
-
-Default URL encoding
-
-
-Realms
-
-
-Web application resources
-
-
-Database Connection Pooling
-
-
-Clustering
-
-
-Debugging
-
-
-Internal APIs
-
-
-Deployment
-
-
-
-
-Upgrading 8.0.x
-
-
-Tomcat 8.0.x noteable changes
-
-
-Tomcat 8.0.x 
configuration file differences
-
-
-
-
-
-
-General
-
-
-
-Please read general Migration Guide page first,
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+

svn commit: r1873527 [21/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/resources.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/resources.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/resources.html (original)
+++ tomcat/site/trunk/docs/resources.html Mon Feb  3 09:51:13 2020
@@ -1,388 +1,376 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Resources
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Resources
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Third party tools and add-ons
-
-
-  
-A https://cwiki.apache.org/confluence/display/TOMCAT/AddOns";>list
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+Which version?
+

svn commit: r1873527 [15/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews-2011.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2011.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews-2011.html (original)
+++ tomcat/site/trunk/docs/oldnews-2011.html Mon Feb  3 09:51:13 2020
@@ -1,786 +1,822 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news! - 2011
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news! - 2011
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Other news
-
-
-Announcements from other years can be found here:
-
-
-  
-
-year 2019
-
-  
-
-year 2018
-
-  
-
-year 2017
-
-  
-
-year 2016
-
-  
-
-year 2015
-
-  
-
-year 2014
-
-  
-
-year 2013
-
-  
-
-year 2012
-
-  
-year 2011
-  
-
-year 2010
-
-
-
-
-
-
-2011-12-05 Tomcat 6.0.35 Released
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+   

svn commit: r1873527 [22/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/security-5.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-5.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/security-5.html (original)
+++ tomcat/site/trunk/docs/security-5.html Mon Feb  3 09:51:13 2020
@@ -1,484 +1,481 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Tomcat 5 vulnerabilities
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Tomcat 5 vulnerabilities
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-Apache Tomcat 5.x 
vulnerabilities
-
-
-Fixed in Apache Tomcat 5.5.36
-
-
-Fixed in Apache Tomcat 5.5.35
-
-
-Fixed in Apache Tomcat 5.5.34
-
-
-Fixed in Apache Tomcat 5.5.32
-
-
-Fixed in Apache Tomcat 5.5.30
-
-
-Fixed in Apache Tomcat 5.5.29
-
-
-Fixed in Apache Tomcat 5.5.28
-
-
-Fixed in Apache Tomcat 5.5.27
-
-
-Fixed in Apache Tomcat 5.5.26
-
-
-Fixed in Apache Tomcat 
5.5.25, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.24, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.23, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.22, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.21, 5.0.SVN
-
-
-Fixed in Apache Tomcat 5.5.21
-
-
-Fixed in Apache Tomcat 
5.5.18, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.17, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.16, 5.0.SVN
-
-
-Fixed in Apache Tomcat 
5.5.13, 5.0.SVN
-
-
-Fixed in Apache Tomcat 5.5.7, 
5.0.SVN
-
-
-Fixed in Apache Tomcat 5.5.1
-
-
-Not a vulnerability in Tomcat
-
-
-
-
-Apache Tomca

svn commit: r1873527 [10/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/migration-7.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-7.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/migration-7.html (original)
+++ tomcat/site/trunk/docs/migration-7.html Mon Feb  3 09:51:13 2020
@@ -1,688 +1,707 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Migration Guide - Tomcat 7.0.x
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Migration Guide - Tomcat 7.0.x
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-General
-
-
-Migrating from 6.0.x to 7.0.x
-
-
-Java 6 required
-
-
-Servlet 3.0 API
-
-
-Regular expressions
-
-
-Deployment
-
-
-Manager application
-
-
-Host Manager application
-
-
-Session manager configuration
-
-
-Session cookie configuration
-
-
-Cookies
-
-
-Request attributes
-
-
-Comet
-
-
-XML validation
-
-
-System properties
-
-
-Processing of conf/web.xml file
-
-
-Welcome files processing
-
-
-Annotation scanning
-
-
-TLD processing
-
-
-Internal APIs
-
-
-JSP compiler
-
-
-
-
-Upgrading 7.0.x
-
-
-Tomcat 7.0.x noteable changes
-
-
-Tomcat 7.0.x 
configuration file differences
-
-
-
-
-
-
-General
-
-
-
-Please read general Migration Guide page first,
+
+
+
+Apache Tomcat
+
+
+

svn commit: r1873527 [7/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/heritage.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/heritage.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/heritage.html (original)
+++ tomcat/site/trunk/docs/heritage.html Mon Feb  3 09:51:13 2020
@@ -1,250 +1,257 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Heritage
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Heritage
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-The Tomcat Story
-
-
-The Tomcat projects started at http://www.sun.com"; rel="nofollow">
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+Which version?
+  

svn commit: r1873527 [4/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/download-80.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-80.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/download-80.html (original)
+++ tomcat/site/trunk/docs/download-80.html Mon Feb  3 09:51:13 2020
@@ -1,243 +1,249 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Tomcat 8 Software Downloads
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Tomcat 8 Software Downloads
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Tomcat 8 Software Downloads
-
-
-Welcome to the Apache Tomcat® 8.x software download page.
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+ 

svn commit: r1873527 [24/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/security-8.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-8.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/security-8.html (original)
+++ tomcat/site/trunk/docs/security-8.html Mon Feb  3 09:51:13 2020
@@ -1,371 +1,375 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Tomcat 8 vulnerabilities
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Tomcat 8 vulnerabilities
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-Apache Tomcat 8.x 
vulnerabilities
-
-
-Fixed in Apache Tomcat 8.5.50
-
-
-Fixed in Apache Tomcat 8.5.49
-
-
-Fixed in Apache Tomcat 8.5.41
-
-
-Fixed in Apache Tomcat 8.5.40
-
-
-Fixed in Apache Tomcat 8.5.38
-
-
-Fixed in Apache Tomcat 8.5.34
-
-
-Fixed in Apache Tomcat 8.0.53
-
-
-Fixed in Apache Tomcat 8.5.32
-
-
-Fixed in Apache Tomcat 8.0.52
-
-
-Fixed in Apache Tomcat 8.5.31
-
-
-Fixed in Apache Tomcat 8.0.50
-
-
-Fixed in Apache Tomcat 8.5.28
-
-
-Fixed in Apache Tomcat 8.0.48
-
-
-Fixed in Apache Tomcat 8.5.24
-
-
-Fixed in Apache Tomcat 8.0.47
-
-
-Fixed in Apache Tomcat 8.5.23
-
-
-Fixed in Apache Tomcat 8.0.45
-
-
-Fixed in Apache Tomcat 8.5.16
-
-
-Fixed in Apache Tomcat 8.0.44
-
-
-Fixed in Apache Tomcat 8.5.15
-
-
-Fixed in Apache Tomcat 8.0.43
-
-
-Fixed in Apache Tomcat 8.5.13
-
-
-Fixed in Apache Tomcat 8.0.42
-
-
-Fixed in Apache Tomcat 8.5.12
-
-
-Fixed in Apache Tomcat 8.0.41
-
-
-Fixed in 

svn commit: r1873527 [16/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews-2012.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2012.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews-2012.html (original)
+++ tomcat/site/trunk/docs/oldnews-2012.html Mon Feb  3 09:51:13 2020
@@ -1,896 +1,930 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news! - 2012
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news! - 2012
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Other news
-
-
-Announcements from other years can be found here:
-
-
-  
-
-year 2019
-
-  
-
-year 2018
-
-  
-
-year 2017
-
-  
-
-year 2016
-
-  
-
-year 2015
-
-  
-
-year 2014
-
-  
-
-year 2013
-
-  
-year 2012
-  
-
-year 2011
-
-  
-
-year 2010
-
-
-
-
-
-
-2012-12-12 Tomcat 7.0.34 Released
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+   

svn commit: r1873527 [26/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/security-jk.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/security-jk.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/security-jk.html (original)
+++ tomcat/site/trunk/docs/security-jk.html Mon Feb  3 09:51:13 2020
@@ -1,289 +1,290 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Tomcat JK Connectors vulnerabilities
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Tomcat JK Connectors 
vulnerabilities
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-Apache Tomcat JK 
Connectors vulnerabilities
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.46
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.43
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.42
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.41
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.27
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.23
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.21
-
-
-Fixed in Apache Tomcat 
JK Connector 1.2.16
-
-
-
-
-Apache Tomcat JK 
Connectors vulnerabilities
-
-
-This page lists all security vulnerabilities fixed in released versions
+
+
+
+Apache Tomcat
+
+
+Home
+
+ 

svn commit: r1873527 [19/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews-2018.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2018.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews-2018.html (original)
+++ tomcat/site/trunk/docs/oldnews-2018.html Mon Feb  3 09:51:13 2020
@@ -1,1602 +1,1621 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news!
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news!
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Older news
-
-
-Announcements from previous years can be found here:
-
-
-  
-
-year 2019
-
-  
-year 2018
-  
-
-year 2017
-
-  
-
-year 2016
-
-  
-
-year 2015
-
-  
-
-year 2014
-
-  
-
-year 2013
-
-  
-
-year 2012
-
-  
-
-year 2011
-
-  
-
-year 2010
-
-
-
-
-
-
-2018-12-18 Tomcat 8.5.37 Released
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+  

svn commit: r1873527 [9/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/maven-plugin.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/maven-plugin.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/maven-plugin.html (original)
+++ tomcat/site/trunk/docs/maven-plugin.html Mon Feb  3 09:51:13 2020
@@ -1,290 +1,298 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Tomcat Maven Plugin
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Tomcat Maven Plugin
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Maven Plugin
-
-
-  
-
-The Apache Tomcat Maven Plugin provides goals to manipulate WAR
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+  

svn commit: r1873527 [29/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/whichversion.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whichversion.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/whichversion.html (original)
+++ tomcat/site/trunk/docs/whichversion.html Mon Feb  3 09:51:13 2020
@@ -1,236 +1,237 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Which Version Do I Want?
-
-
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Which Version Do I Want?
+
+
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Apache Tomcat Versions
-
-
-Apache Tomcat® is an open source software implementation of 
the Java Servlet
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+

svn commit: r1873527 [12/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/migration-85.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-85.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/migration-85.html (original)
+++ tomcat/site/trunk/docs/migration-85.html Mon Feb  3 09:51:13 2020
@@ -1,389 +1,387 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Migration Guide - Tomcat 8.5.x
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Migration Guide - Tomcat 8.5.x
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-General
-
-
-Migrating from 8.0.x to 8.5.x
-
-
-BIO connector removed
-
-
-HTTP connector changes
-
-
-Comet support removed
-
-
-HTTP/2 support added
-
-
-TLS 
virtual hosting and multiple certificate support added
-
-
-Internal APIs
-
-
-JSR-77 implementation removed
-
-
-Clustering
-
-
-InstanceListener removed
-
-
-SessionManager
-
-
-Cookies
-
-
-Web applications
-
-
-Context configurations
-
-
-
-
-Upgrading 8.5.x
-
-
-Tomcat 8.5.x noteable changes
-
-
-Tomcat 8.5.x 
configuration file differences
-
-
-
-
-
-
-General
-
-
-
-Please read general Migration Guide page first,
+
+
+
+Apache Tomcat
+
+
+Home
+
+   

svn commit: r1873527 [5/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/download-connectors.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-connectors.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/download-connectors.html (original)
+++ tomcat/site/trunk/docs/download-connectors.html Mon Feb  3 09:51:13 2020
@@ -1,249 +1,255 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Tomcat Connectors (mod_jk) Downloads
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Tomcat Connectors (mod_jk) 
Downloads
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Tomcat Connectors (mod_jk) 
Downloads
-
-
-  
-Use the links below to download the Apache Tomcat® Connectors
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+

svn commit: r1873527 [3/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/conference.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/conference.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/conference.html (original)
+++ tomcat/site/trunk/docs/conference.html Mon Feb  3 09:51:13 2020
@@ -1,323 +1,315 @@
 
 
-
-
-
-
-
-Apache Tomcat® - TomcatCon
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - TomcatCon
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-TomcatCon
-
-
-
-TomcatCon is the place for all users of Tomcat to expand their Tomcat
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+Which version?
+   

svn commit: r1873527 [13/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/migration-9.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/migration-9.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/migration-9.html (original)
+++ tomcat/site/trunk/docs/migration-9.html Mon Feb  3 09:51:13 2020
@@ -1,509 +1,493 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Migration Guide - Tomcat 9.0.x
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Migration Guide - Tomcat 9.0.x
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-General
-
-
-Migrating from 8.0.x or 
8.5.x to 9.0.x
-
-
-Java 8 required
-
-
-Specification APIs
-
-
-Servlet 4.0 API
-
-
-JavaServer Pages 2.4
-
-
-Expression Language 3.1
-
-
-WebSocket 2.0
-
-
-BIO connector removed
-
-
-Comet support removed
-
-
-HTTP/2 support added
-
-
-TLS 
virtual hosting and multiple certificate support added
-
-
-Internal APIs
-
-
-JSR-77 implementation removed
-
-
-Clustering
-
-
-InstanceListener removed
-
-
-SessionManager
-
-
-Cookies
-
-
-Web applications
-
-
-Engine and Host configurations
-
-
-Context configurations
-
-
-Logging
-
-
-
-
-Upgrading 9.0.x
-
-
-Tomcat 9.0.x 
configuration file differences
-
-
-
-
-
-
-General
-
-
-
-Please read general Migration Guide page first,
+
+
+
+Apache Tomcat
+
+ 

svn commit: r1873527 [6/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/download-taglibs.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-taglibs.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/download-taglibs.html (original)
+++ tomcat/site/trunk/docs/download-taglibs.html Mon Feb  3 09:51:13 2020
@@ -1,237 +1,241 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Apache Taglibs Downloads
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Apache Taglibs Downloads
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Apache Taglibs Downloads
-
-
-Welcome to the Apache Taglibs download page. This page provides download
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+ 

svn commit: r1873527 [2/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/ci.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/ci.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/ci.html (original)
+++ tomcat/site/trunk/docs/ci.html Mon Feb  3 09:51:13 2020
@@ -1,939 +1,994 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Continuous Integration
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Continuous Integration
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Table of Contents
-
-
-
-
-Overview
-
-
-Documentation snapshots
-
-
-Build results
-
-
-Buildbot
-
-
-Gump
-
-
-Jenkins
-
-
-
-
-
-
-Overview
-
-
-Apache Tomcat project uses several
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+ 

svn commit: r1873527 [8/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/legal.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/legal.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/legal.html (original)
+++ tomcat/site/trunk/docs/legal.html Mon Feb  3 09:51:13 2020
@@ -1,227 +1,227 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Legal Stuff They Make Us Say
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Legal Stuff They Make Us Say
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Legal Stuff They Make Us Say
-
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+Which version?
+
+ 

svn commit: r1873527 [28/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/tomcat-55-eol.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-55-eol.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/tomcat-55-eol.html (original)
+++ tomcat/site/trunk/docs/tomcat-55-eol.html Mon Feb  3 09:51:13 2020
@@ -1,278 +1,279 @@
 
 
-
-
-
-
-
-Apache Tomcat® - End of life for Apache Tomcat 5.5.x
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - End of life for Apache Tomcat 5.5.x
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-
-2011-08-10 End of life for Apache Tomcat 
5.5.x
-
-
-The Apache Tomcat team announces that support for Apache Tomcat 5.5.x
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+   

svn commit: r1873527 [20/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews.html (original)
+++ tomcat/site/trunk/docs/oldnews.html Mon Feb  3 09:51:13 2020
@@ -1,1201 +1,1207 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news!
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news!
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Older news
-
-
-Announcements from previous years can be found here:
-
-
-  
-year 2019
-  
-
-year 2018
-
-  
-
-year 2017
-
-  
-
-year 2016
-
-  
-
-year 2015
-
-  
-
-year 2014
-
-  
-
-year 2013
-
-  
-
-year 2012
-
-  
-
-year 2011
-
-  
-
-year 2010
-
-
-
-
-
-
-2019-11-21 Tomcat 9.0.29 Released
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+  

svn commit: r1873527 [30/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/whoweare.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/whoweare.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/whoweare.html (original)
+++ tomcat/site/trunk/docs/whoweare.html Mon Feb  3 09:51:13 2020
@@ -1,230 +1,232 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Who We Are
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Who We Are
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Who We Are
-
-
-
-The Apache Tomcat Project operates on a meritocracy: the more you do,
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+
+
+Download
+
+
+Which version?
+

svn commit: r1873527 [14/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Modified: tomcat/site/trunk/docs/oldnews-2010.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/oldnews-2010.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/oldnews-2010.html (original)
+++ tomcat/site/trunk/docs/oldnews-2010.html Mon Feb  3 09:51:13 2020
@@ -1,298 +1,304 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Old news! - 2010
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Old news! - 2010
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/download-taglibs.cgi";>Taglibs
-
-
-https://archive.apache.org/dist/tomcat/";>Archives
-
-
-
-
-Documentation
-
-
-Tomcat 9.0
-
-
-Tomcat 8.5
-
-
-Tomcat 7.0
-
-
-Tomcat Connectors
-
-
-Tomcat Native
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT";>Wiki
-
-
-Migration Guide
-
-
-Presentations
-
-
-
-
-Problems?
-
-
-Security Reports
-
-
-Find help
-
-
-https://cwiki.apache.org/confluence/display/TOMCAT/FAQ";>FAQ
-
-
-Mailing Lists
-
-
-Bug Database
-
-
-IRC
-
-
-
-
-Get Involved
-
-
-Overview
-
-
-Source code
-
-
-Buildbot
-
-
-https://cwiki.apache.org/confluence/x/vIPzBQ";>Translations
-
-
-Tools
-
-
-
-
-Media
-
-
-https://twitter.com/theapachetomcat";>Twitter
-
-
-https://www.youtube.com/c/ApacheTomcatOfficial";>YouTube
-
-
-https://blogs.apache.org/tomcat/";>Blog
-
-
-
-
-Misc
-
-
-Who We Are
-
-
-https://www.redbubble.com/people/comdev/works/30885254-apache-tomcat";>Swag
-
-
-Heritage
-
-
-http://www.apache.org";>Apache Home
-
-
-Resources
-
-
-Contact
-
-
-Legal
-
-
-https://www.apache.org/foundation/contributing.html";>Support 
Apache
-
-
-https://www.apache.org/foundation/sponsorship.html";>Sponsorship
-
-
-http://www.apache.org/foundation/thanks.html";>Thanks
-
-
-http://www.apache.org/licenses/";>License
-
-
-
-
-
-
-
-
-Content
-Other news
-
-
-Announcements from other years can be found here:
-
-
-  
-
-year 2019
-
-  
-
-year 2018
-
-  
-
-year 2017
-
-  
-
-year 2016
-
-  
-
-year 2015
-
-  
-
-year 2014
-
-  
-
-year 2013
-
-  
-
-year 2012
-
-  
-
-year 2011
-
-  
-year 2010
-
-
-
-
-
-2010-12-01 Tomcat 7.0.5 Released
-
-
-
+
+
+
+Apache Tomcat
+
+
+Home
+
+
+Taglibs
+
+
+Maven Plugin
+
+
+

svn commit: r1873527 [1/30] - /tomcat/site/trunk/docs/

2020-02-03 Thread mgrigorov
Author: mgrigorov
Date: Mon Feb  3 09:51:13 2020
New Revision: 1873527

URL: http://svn.apache.org/viewvc?rev=1873527&view=rev
Log:
Re-generate the site docs

The only change is that the generated HTML is indented.


Modified:
tomcat/site/trunk/docs/bugreport.html
tomcat/site/trunk/docs/ci.html
tomcat/site/trunk/docs/conference.html
tomcat/site/trunk/docs/contact.html
tomcat/site/trunk/docs/download-70.html
tomcat/site/trunk/docs/download-80.html
tomcat/site/trunk/docs/download-90.html
tomcat/site/trunk/docs/download-connectors.html
tomcat/site/trunk/docs/download-native.html
tomcat/site/trunk/docs/download-taglibs.html
tomcat/site/trunk/docs/findhelp.html
tomcat/site/trunk/docs/getinvolved.html
tomcat/site/trunk/docs/heritage.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/irc.html
tomcat/site/trunk/docs/legal.html
tomcat/site/trunk/docs/lists.html
tomcat/site/trunk/docs/maven-plugin.html
tomcat/site/trunk/docs/migration-6.html
tomcat/site/trunk/docs/migration-7.html
tomcat/site/trunk/docs/migration-8.html
tomcat/site/trunk/docs/migration-85.html
tomcat/site/trunk/docs/migration-9.html
tomcat/site/trunk/docs/migration.html
tomcat/site/trunk/docs/oldnews-2010.html
tomcat/site/trunk/docs/oldnews-2011.html
tomcat/site/trunk/docs/oldnews-2012.html
tomcat/site/trunk/docs/oldnews-2014.html
tomcat/site/trunk/docs/oldnews-2016.html
tomcat/site/trunk/docs/oldnews-2018.html
tomcat/site/trunk/docs/oldnews.html
tomcat/site/trunk/docs/resources.html
tomcat/site/trunk/docs/security-3.html
tomcat/site/trunk/docs/security-5.html
tomcat/site/trunk/docs/security-6.html
tomcat/site/trunk/docs/security-8.html
tomcat/site/trunk/docs/security-9.html
tomcat/site/trunk/docs/security-jk.html
tomcat/site/trunk/docs/security-native.html
tomcat/site/trunk/docs/security-taglibs.html
tomcat/site/trunk/docs/source.html
tomcat/site/trunk/docs/taglibs.html
tomcat/site/trunk/docs/tomcat-55-eol.html
tomcat/site/trunk/docs/tomcat-60-eol.html
tomcat/site/trunk/docs/tools.html
tomcat/site/trunk/docs/whichversion.html
tomcat/site/trunk/docs/whoweare.html

Modified: tomcat/site/trunk/docs/bugreport.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/bugreport.html?rev=1873527&r1=1873526&r2=1873527&view=diff
==
--- tomcat/site/trunk/docs/bugreport.html (original)
+++ tomcat/site/trunk/docs/bugreport.html Mon Feb  3 09:51:13 2020
@@ -1,589 +1,597 @@
 
 
-
-
-
-
-
-Apache Tomcat® - Reporting Bugs
-
-
-
-
-
-
-
-
-
-http://tomcat.apache.org/";>
-Apache Tomcat®
-
-
-https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
-
-
-
-
-
-
-
-https://www.google.com/search"; method="get">
-
-GO
-
-
-
-https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
-  Save the date!
+
+
+
+
+
+Apache Tomcat® - Reporting Bugs
+
+
+
+
+
+
+
+
+
+http://tomcat.apache.org/";>
+
+Apache Tomcat®
+
+
+https://www.apache.org/foundation/contributing.html"; target="_blank" 
class="pull-left">https://www.apache.org/images/SupportApache-small.png"; class="support-asf" 
alt="Support Apache">http://www.apache.org/"; target="_blank" 
class="pull-left">
+
+
+
+
+
+
+
+https://www.google.com/search"; 
method="get">
+
+GO
+
+
+
+https://www.apache.org/events/current-event.html";>https://www.apache.org/events/current-event-234x60.png"; alt="Next ASF 
event">
+
+  Save the date!
 
-
-
-
-Apache Tomcat
-
-
-Home
-
-
-Taglibs
-
-
-Maven Plugin
-
-
-
-
-Download
-
-
-Which version?
-
-
-https://tomcat.apache.org/download-90.cgi";>Tomcat 9
-
-
-https://tomcat.apache.org/download-80.cgi";>Tomcat 8
-
-
-https://tomcat.apache.org/download-70.cgi";>Tomcat 7
-
-
-https://tomcat.apache.org/download-connectors.cgi";>Tomcat 
Connectors
-
-
-https://tomcat.apache.org/download-native.cgi";>Tomcat Native
-
-
-https://tomcat.apache.org/do

Re: [tomcat] branch 9.0.x updated: Test Tomcat on ARM64 at TravisCI

2020-02-03 Thread Martin Grigorov
Thanks for the review, Konstantin!

On Mon, Feb 3, 2020 at 10:31 AM Konstantin Kolinko 
wrote:

> Where is the license header?
> (maybe the yml file cannot have it, but a sh file must have it)
>

I've added the licence header to both files. If the one in the .yml file
breaks Travis then I will revert it but I think it should be OK.


>
> Where are exclusion rules for Apache RAT checks?
> (The configuration file is res/rat/rat-excludes.txt)
> https://creadur.apache.org/rat/


Added them to ./res/rat/rat-excludes.txt !


>
>
> How these files are packaged in source distributions?
> (LF <-> CRLF conversion shall be configured in build.xml)
>

I think those files are not needed in the source distribution.
"ant dist-static" does not put them in output/dist/ at the moment. Same for
"ant " - the files are not
in output/release/vVERSION-dev/bin/apache-tomcat-VERSION-dev.tar.gz
build.xml is also not copied in those.


>
>
> пн, 3 февр. 2020 г. в 09:45, :
> >
> > This is an automated email from the ASF dual-hosted git repository.
> >
> > mgrigorov pushed a commit to branch 9.0.x
> > in repository https://gitbox.apache.org/repos/asf/tomcat.git
> >
> >
> > The following commit(s) were added to refs/heads/9.0.x by this push:
> >  new 58a490b  Test Tomcat on ARM64 at TravisCI
> > 58a490b is described below
> >
> > commit 58a490bfa7429d33cd3437b8470569daa7d9be30
> > Author: Martin Tzvetanov Grigorov 
> > AuthorDate: Thu Jan 23 11:53:22 2020 +0200
> >
> > Test Tomcat on ARM64 at TravisCI
> >
> > (cherry picked from commit e6ebd2346850a14c3ff59a2372169a167958e024)
> > ---
> >  .travis.yml| 67
> ++
> >  .travis/antTest.sh |  8 +++
> >  2 files changed, 75 insertions(+)
> >
> > diff --git a/.travis.yml b/.travis.yml
> > new file mode 100644
> > index 000..04a14c9
> > --- /dev/null
> > +++ b/.travis.yml
> > @@ -0,0 +1,67 @@
> > +dist: bionic
> > +language: java
> > +jdk: oraclejdk8
> > +arch: arm64
> > +
> > +addons:
> > +apt:
> > +  packages:
> > +- ant
> > +- build-essential
> > +- automake
> > +- autoconf
> > +- tar
> > +- libssl-dev
> > +- subversion
> > +- git
> > +- libtool-bin
> > +
> > +install:
> > +- ARCH=`uname -p`
> > +- echo $ARCH
> > +- JDK_X64="
> https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u242b08.tar.gz
> "
> > +- JDK_ARM64="
> https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u232-b09/OpenJDK8U-jdk_aarch64_linux_hotspot_8u232b09.tar.gz
> "
> > +- if test "X$ARCH" = "Xaarch64"; then JDK_URL=$JDK_ARM64; else
> JDK_URL=$JDK_X64; fi
> > +- wget -q $JDK_URL && tar xzf OpenJDK*.tar.gz
> > +- mv jdk8* jdk
> > +- export JAVA_HOME=`pwd`/jdk
> > +- wget -q
> http://mirrors.netix.net/apache/ant/binaries/apache-ant-1.10.7-bin.tar.gz
> && tar xzf apache-ant-*-bin.tar.gz
> > +- export ANT_HOME=`pwd`/apache-ant-1.10.7
> > +- export PATH="$JAVA_HOME/bin:$ANT_HOME/bin:$PATH"
> > +- java -version
> > +- ant -version
> > +- rm -rf $HOME/tmp
> > +- export CURR_PWD=`pwd`
> > +- svn co -q
> https://svn.apache.org/repos/asf/apr/apr/branches/1.6.x/ $HOME/tmp/apr
> > +- cd $HOME/tmp/apr
> > +- ./buildconf
> > +- ./configure --prefix=$HOME/tmp/apr-build
> > +- make
> > +- make install
> > +- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/tmp/apr-build/lib"
> > +- git clone -q https://github.com/apache/tomcat-native.git
> $HOME/tmp/tomcat-native
> > +- cd $HOME/tmp/tomcat-native/native
> > +- sh buildconf --with-apr=$HOME/tmp/apr
> > +- ./configure --with-apr=$HOME/tmp/apr --with-java-home=$JAVA_HOME
> --with-ssl=yes --prefix=$HOME/tmp/tomcat-native-build
> > +- make
> > +- make install
> > +- cd $CURR_PWD
> > +- yes | cp build.properties.default build.properties
> > +- echo "test.threads=16" >> build.properties
> > +- echo "test.relaxTiming=true" >> build.properties
> > +- echo "test.excludePerformance=true" >> build.properties
> > +- echo "test.openssl.path=/dev/null/openssl" >> build.properties
> > +- echo "test.apr.loc=$HOME/tmp/tomcat-native-build/lib" >>
> build.properties
> > +
> > +
> > +script:
> > +- ant -q clean
> > +- travis_wait 60 "./.travis/antTest.sh"
> > +
> > +after_failure:
> > +- tail -n 5000 ant-test.log
> > +- ls -laR $HOME/tomcat-build-libs
> > +
> > +notifications:
> > +email:
> > +  - dev@tomcat.apache.org
> > \ No newline at end of file
> > diff --git a/.travis/antTest.sh b/.travis/antTest.sh
> > new file mode 100755
> > index 000..155004c
> > --- /dev/null
> > +++ b/.travis/antTest.sh
> > @@ -0,0 +1,8 @@
> > +#!/usr/bin/env bash
> > +
> > +# A helper script for TravisCI builds that saves the std
> > +# out and err streams in a log file. This is needed
> > +# because otherwise TravisCI complains t

Re: [tomcat] branch master updated: Add ASLv2 header to the new Travis CI related files

2020-02-03 Thread Konstantin Kolinko
> --- a/res/rat/rat-excludes.txt
> +++ b/res/rat/rat-excludes.txt
> @@ -55,6 +55,8 @@
>
>- Temporary cache files used by Checkstle
>
> +  - Configuration files for third party Continuous Integration systems like 
> Travis CI
> +
>
>  output/build/logs/*
>  output/test-tmp/**
> @@ -184,3 +186,6 @@ output/dist/temp/safeToDelete.tmp
>  **/*.md
>
>  output/res/checkstyle/*
> +
> +.travis.yml
> +.travis/antTest.sh

Excluded are files that do not have proper license headers.
If a file has a license header, there is no need to exclude it.

Links to RAT reports are available here:
https://tomcat.apache.org/ci.html

Best regards,
Konstantin Kolinko

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



Re: Updating Tomcat site

2020-02-03 Thread Konstantin Kolinko
пн, 3 февр. 2020 г. в 10:23, Martin Grigorov :
>
> Hi,
>
> I want to update https://tomcat.apache.org/ci.html to mention the testing on 
> TravisCI on ARM64 architecture.
>
> I've checked out https://svn.apache.org/repos/asf/tomcat/site/trunk.
> Before doing any changes executing 'ant' produces huge diff because the 
> current version has stripped leading spaces, e.g.:
>
> [...]
>
> I don't see anything in build.xml & build.properties.default that controls 
> this behavior.

Intending is turned on with
   Should I make a no-changes commit just to update the docs/** with the white 
> spaces or should I do some post-processing to keep the whitespaces out ?

It does not matter much. Maybe a separate commit for "xdocs" and one for "docs".

Best regards,
Konstantin Kolinko

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



[tomcat] branch 8.5.x updated: Add ASLv2 header to the new Travis CI related files

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

mgrigorov pushed a commit to branch 8.5.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/8.5.x by this push:
 new ef6d17e  Add ASLv2 header to the new Travis CI related files
ef6d17e is described below

commit ef6d17e4172047fcc701f88cf8445a73835374f1
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Feb 3 11:29:40 2020 +0200

Add ASLv2 header to the new Travis CI related files

Also add those files to rat-excludes.txt

(cherry picked from commit 7951df58bbcabdc842b0010e77ed1150df0d875d)
---
 .travis.yml  | 17 -
 .travis/antTest.sh   | 15 +++
 res/rat/rat-excludes.txt |  5 +
 3 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 04a14c9..526a1ea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 dist: bionic
 language: java
 jdk: oraclejdk8
@@ -64,4 +79,4 @@ after_failure:
 
 notifications:
 email:
-  - dev@tomcat.apache.org
\ No newline at end of file
+  - dev@tomcat.apache.org
diff --git a/.travis/antTest.sh b/.travis/antTest.sh
index 155004c..22ce104 100755
--- a/.travis/antTest.sh
+++ b/.travis/antTest.sh
@@ -1,5 +1,20 @@
 #!/usr/bin/env bash
 
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # A helper script for TravisCI builds that saves the std
 # out and err streams in a log file. This is needed
 # because otherwise TravisCI complains that there is too
diff --git a/res/rat/rat-excludes.txt b/res/rat/rat-excludes.txt
index de252c8..48f0937 100644
--- a/res/rat/rat-excludes.txt
+++ b/res/rat/rat-excludes.txt
@@ -55,6 +55,8 @@
 
   - Temporary cache files used by Checkstle
 
+  - Configuration files for third party Continuous Integration systems like 
Travis CI
+
 
 output/build/logs/*
 output/test-tmp/**
@@ -182,3 +184,6 @@ output/dist/temp/safeToDelete.tmp
 **/*.md
 
 output/res/checkstyle/*
+
+.travis.yml
+.travis/antTest.sh


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



[tomcat] branch 9.0.x updated: Add ASLv2 header to the new Travis CI related files

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

mgrigorov pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
 new efde338  Add ASLv2 header to the new Travis CI related files
efde338 is described below

commit efde3381c23e7c04b3a1333d0ddc1d50ac225ca5
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Feb 3 11:29:40 2020 +0200

Add ASLv2 header to the new Travis CI related files

Also add those files to rat-excludes.txt

(cherry picked from commit 7951df58bbcabdc842b0010e77ed1150df0d875d)
---
 .travis.yml  | 17 -
 .travis/antTest.sh   | 15 +++
 res/rat/rat-excludes.txt |  5 +
 3 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 04a14c9..526a1ea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 dist: bionic
 language: java
 jdk: oraclejdk8
@@ -64,4 +79,4 @@ after_failure:
 
 notifications:
 email:
-  - dev@tomcat.apache.org
\ No newline at end of file
+  - dev@tomcat.apache.org
diff --git a/.travis/antTest.sh b/.travis/antTest.sh
index 155004c..22ce104 100755
--- a/.travis/antTest.sh
+++ b/.travis/antTest.sh
@@ -1,5 +1,20 @@
 #!/usr/bin/env bash
 
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # A helper script for TravisCI builds that saves the std
 # out and err streams in a log file. This is needed
 # because otherwise TravisCI complains that there is too
diff --git a/res/rat/rat-excludes.txt b/res/rat/rat-excludes.txt
index 6e338f2..5aeb94e 100644
--- a/res/rat/rat-excludes.txt
+++ b/res/rat/rat-excludes.txt
@@ -55,6 +55,8 @@
 
   - Temporary cache files used by Checkstle
 
+  - Configuration files for third party Continuous Integration systems like 
Travis CI
+
 
 output/build/logs/*
 output/test-tmp/**
@@ -184,3 +186,6 @@ output/dist/temp/safeToDelete.tmp
 **/*.md
 
 output/res/checkstyle/*
+
+.travis.yml
+.travis/antTest.sh


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



[tomcat] branch master updated: Add ASLv2 header to the new Travis CI related files

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

mgrigorov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
 new 7951df5  Add ASLv2 header to the new Travis CI related files
7951df5 is described below

commit 7951df58bbcabdc842b0010e77ed1150df0d875d
Author: Martin Tzvetanov Grigorov 
AuthorDate: Mon Feb 3 11:29:40 2020 +0200

Add ASLv2 header to the new Travis CI related files

Also add those files to rat-excludes.txt
---
 .travis.yml  | 17 -
 .travis/antTest.sh   | 15 +++
 res/rat/rat-excludes.txt |  5 +
 3 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 04a14c9..526a1ea 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,3 +1,18 @@
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 dist: bionic
 language: java
 jdk: oraclejdk8
@@ -64,4 +79,4 @@ after_failure:
 
 notifications:
 email:
-  - dev@tomcat.apache.org
\ No newline at end of file
+  - dev@tomcat.apache.org
diff --git a/.travis/antTest.sh b/.travis/antTest.sh
index 155004c..22ce104 100755
--- a/.travis/antTest.sh
+++ b/.travis/antTest.sh
@@ -1,5 +1,20 @@
 #!/usr/bin/env bash
 
+# Licensed to the Apache Software Foundation (ASF) under one or more
+# contributor license agreements.  See the NOTICE file distributed with
+# this work for additional information regarding copyright ownership.
+# The ASF licenses this file to You under the Apache License, Version 2.0
+# (the "License"); you may not use this file except in compliance with
+# the License.  You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
 # A helper script for TravisCI builds that saves the std
 # out and err streams in a log file. This is needed
 # because otherwise TravisCI complains that there is too
diff --git a/res/rat/rat-excludes.txt b/res/rat/rat-excludes.txt
index a27cd4e..ab82a2b 100644
--- a/res/rat/rat-excludes.txt
+++ b/res/rat/rat-excludes.txt
@@ -55,6 +55,8 @@
 
   - Temporary cache files used by Checkstle
 
+  - Configuration files for third party Continuous Integration systems like 
Travis CI
+
 
 output/build/logs/*
 output/test-tmp/**
@@ -184,3 +186,6 @@ output/dist/temp/safeToDelete.tmp
 **/*.md
 
 output/res/checkstyle/*
+
+.travis.yml
+.travis/antTest.sh


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



Re: [PROPOSAL] Tomcat 10: rename language bundles

2020-02-03 Thread Konstantin Kolinko
сб, 1 февр. 2020 г. в 16:31, Michael Osipov :
>
> Am 2020-01-30 um 18:41 schrieb Konstantin Kolinko:
> > ср, 29 янв. 2020 г. в 00:08, Michael Osipov :
> >
> > [...]
> >
> > (Being too strict about language is a barrier that may reject people.)
>
> For those who don't know both, they don't care. For those who know care
> to make it right/consistent. I see no downsides to make it right.
>
> This has nothing to do with American, British, You Name It English. It
> is simply about consistent naming.

I see no positive sides in the proposed renaming,
and I do not feel it to be a right thing.

Some downsides were already mentioned by others. I will write down a
more complete list below.

> For those who don't know both, they don't care.

"i18n" is a more widely known and widely used word.

Familiar words make people feel more comfortable.

> > 2. In multi-module projects built with Apache Maven, one widely used
> > naming convention is to name artifacts produced by the nested modules
> > as -.
> >
> > E.g., a discussion:
> > https://stackoverflow.com/questions/9435460/maven-naming-conventions-for-hierarchical-multiple-module-projects
> >
> > I mean that the current artifact names of "tomcat-i18n-" can
> > be interpreted as module "" in a parent project "tomcat-i18n".
> > It means that those artifacts are part of internationalization effort
> > in Tomcat.
>
> I don't see how this is related?! Nor did I bring up to do any migration
> to Maven or its naming scheme.

I mean that "tomcat-i18n" is the base name.

It is not "tomcat" + "-i18n-de",  but "tomcat-i18n" + "-de", as an example.

The current names are not wrong.


> > 3. Overall, my vote for this proposal is -0.5.
> >
> > It is not a veto, but I do not like it.
>
> So you generally do not object, but don't see a need for?

I really object.
I just do not veto, I do not end the discussion here at once.


If there were other reasons to justify the change (e.g. some
reorganization of packaging), ...

(E.g. all translation files could be packaged into a single jar.)

> I see no downsides ...

To make it clear, the following are externally visible consequences of
such a change:

1. Renaming of artifacts in Maven
2. Renaming of libraries in ${catalina.base}/lib
3. Change of configuration in conf/catalina.properties file (the
libraries are mentioned in a jarsToSkip pattern).

The following are internal changes:
4. Changes in build procedure (in build.xml, res/maven/mvn-pub.xml).
5. Changes in documentation (class-loader-howto.xml mentions the files).

##1-3 are the downsides that downstream consumers of Tomcat would have
to adapt to.

I certainly would have to change some of my scripts that I use with
Tomcat and some configuration settings.

##4-5 are our internal matter.

Best regards,
Konstantin Kolinko

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



Re: [tomcat] branch 9.0.x updated: Test Tomcat on ARM64 at TravisCI

2020-02-03 Thread Konstantin Kolinko
Where is the license header?
(maybe the yml file cannot have it, but a sh file must have it)

Where are exclusion rules for Apache RAT checks?
(The configuration file is res/rat/rat-excludes.txt)
https://creadur.apache.org/rat/

How these files are packaged in source distributions?
(LF <-> CRLF conversion shall be configured in build.xml)


пн, 3 февр. 2020 г. в 09:45, :
>
> This is an automated email from the ASF dual-hosted git repository.
>
> mgrigorov pushed a commit to branch 9.0.x
> in repository https://gitbox.apache.org/repos/asf/tomcat.git
>
>
> The following commit(s) were added to refs/heads/9.0.x by this push:
>  new 58a490b  Test Tomcat on ARM64 at TravisCI
> 58a490b is described below
>
> commit 58a490bfa7429d33cd3437b8470569daa7d9be30
> Author: Martin Tzvetanov Grigorov 
> AuthorDate: Thu Jan 23 11:53:22 2020 +0200
>
> Test Tomcat on ARM64 at TravisCI
>
> (cherry picked from commit e6ebd2346850a14c3ff59a2372169a167958e024)
> ---
>  .travis.yml| 67 
> ++
>  .travis/antTest.sh |  8 +++
>  2 files changed, 75 insertions(+)
>
> diff --git a/.travis.yml b/.travis.yml
> new file mode 100644
> index 000..04a14c9
> --- /dev/null
> +++ b/.travis.yml
> @@ -0,0 +1,67 @@
> +dist: bionic
> +language: java
> +jdk: oraclejdk8
> +arch: arm64
> +
> +addons:
> +apt:
> +  packages:
> +- ant
> +- build-essential
> +- automake
> +- autoconf
> +- tar
> +- libssl-dev
> +- subversion
> +- git
> +- libtool-bin
> +
> +install:
> +- ARCH=`uname -p`
> +- echo $ARCH
> +- 
> JDK_X64="https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u242-b08/OpenJDK8U-jdk_x64_linux_hotspot_8u242b08.tar.gz";
> +- 
> JDK_ARM64="https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u232-b09/OpenJDK8U-jdk_aarch64_linux_hotspot_8u232b09.tar.gz";
> +- if test "X$ARCH" = "Xaarch64"; then JDK_URL=$JDK_ARM64; else 
> JDK_URL=$JDK_X64; fi
> +- wget -q $JDK_URL && tar xzf OpenJDK*.tar.gz
> +- mv jdk8* jdk
> +- export JAVA_HOME=`pwd`/jdk
> +- wget -q 
> http://mirrors.netix.net/apache/ant/binaries/apache-ant-1.10.7-bin.tar.gz && 
> tar xzf apache-ant-*-bin.tar.gz
> +- export ANT_HOME=`pwd`/apache-ant-1.10.7
> +- export PATH="$JAVA_HOME/bin:$ANT_HOME/bin:$PATH"
> +- java -version
> +- ant -version
> +- rm -rf $HOME/tmp
> +- export CURR_PWD=`pwd`
> +- svn co -q https://svn.apache.org/repos/asf/apr/apr/branches/1.6.x/ 
> $HOME/tmp/apr
> +- cd $HOME/tmp/apr
> +- ./buildconf
> +- ./configure --prefix=$HOME/tmp/apr-build
> +- make
> +- make install
> +- export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:$HOME/tmp/apr-build/lib"
> +- git clone -q https://github.com/apache/tomcat-native.git 
> $HOME/tmp/tomcat-native
> +- cd $HOME/tmp/tomcat-native/native
> +- sh buildconf --with-apr=$HOME/tmp/apr
> +- ./configure --with-apr=$HOME/tmp/apr --with-java-home=$JAVA_HOME 
> --with-ssl=yes --prefix=$HOME/tmp/tomcat-native-build
> +- make
> +- make install
> +- cd $CURR_PWD
> +- yes | cp build.properties.default build.properties
> +- echo "test.threads=16" >> build.properties
> +- echo "test.relaxTiming=true" >> build.properties
> +- echo "test.excludePerformance=true" >> build.properties
> +- echo "test.openssl.path=/dev/null/openssl" >> build.properties
> +- echo "test.apr.loc=$HOME/tmp/tomcat-native-build/lib" >> 
> build.properties
> +
> +
> +script:
> +- ant -q clean
> +- travis_wait 60 "./.travis/antTest.sh"
> +
> +after_failure:
> +- tail -n 5000 ant-test.log
> +- ls -laR $HOME/tomcat-build-libs
> +
> +notifications:
> +email:
> +  - dev@tomcat.apache.org
> \ No newline at end of file
> diff --git a/.travis/antTest.sh b/.travis/antTest.sh
> new file mode 100755
> index 000..155004c
> --- /dev/null
> +++ b/.travis/antTest.sh
> @@ -0,0 +1,8 @@
> +#!/usr/bin/env bash
> +
> +# A helper script for TravisCI builds that saves the std
> +# out and err streams in a log file. This is needed
> +# because otherwise TravisCI complains that there is too
> +# much logging on stdout
> +
> +ant -q test 2>&1 > ant-test.log
>
>
> -
> To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
> For additional commands, e-mail: dev-h...@tomcat.apache.org
>

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