buildbot failure in on tomcat-trunk

2020-10-10 Thread buildbot
The Buildbot has detected a new failure on builder tomcat-trunk while building 
tomcat. Full details are available at:
https://ci.apache.org/builders/tomcat-trunk/builds/5496

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

Buildslave for this Build: asf946_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-commit' 
triggered this build
Build Source Stamp: [branch master] d6e5d838a9565c0c4bfeca4396e6266d21a80288
Blamelist: Igal Sapir 

BUILD FAILED: failed compile

Sincerely,
 -The Buildbot




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



[tomcat] branch master updated: Added Javadoc comments for Java 15

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

isapir 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 d6e5d83  Added Javadoc comments for Java 15
d6e5d83 is described below

commit d6e5d838a9565c0c4bfeca4396e6266d21a80288
Author: Igal Sapir 
AuthorDate: Sat Oct 10 21:19:03 2020 -0700

Added Javadoc comments for Java 15
---
 java/jakarta/servlet/AsyncContext.java| 64 ++-
 java/jakarta/servlet/GenericFilter.java   |  2 +-
 java/jakarta/servlet/http/HttpFilter.java |  5 +++
 3 files changed, 69 insertions(+), 2 deletions(-)

diff --git a/java/jakarta/servlet/AsyncContext.java 
b/java/jakarta/servlet/AsyncContext.java
index 31d5ca5..252dd96 100644
--- a/java/jakarta/servlet/AsyncContext.java
+++ b/java/jakarta/servlet/AsyncContext.java
@@ -17,27 +17,61 @@
 package jakarta.servlet;
 
 /**
- * TODO SERVLET3 - Add comments
+ * Provides the context for asynchronous request handling
+ *  
  * @since Servlet 3.0
  */
 public interface AsyncContext {
+
+/**
+ * The attribute name for the URI of the async request
+ */
 public static final String ASYNC_REQUEST_URI =
 "jakarta.servlet.async.request_uri";
+
+/**
+ * The attribute name for the Context Path of the async request
+ */
 public static final String ASYNC_CONTEXT_PATH  =
 "jakarta.servlet.async.context_path";
+
+/**
+ * The attribute name for the Mapping of the async request
+ */
 public static final String ASYNC_MAPPING =
 "jakarta.servlet.async.mapping";
+
+/**
+ * The attribute name for the Path Info of the async request
+ */
 public static final String ASYNC_PATH_INFO =
 "jakarta.servlet.async.path_info";
+
+/**
+ * The attribute name for the Servlet Path of the async request
+ */
 public static final String ASYNC_SERVLET_PATH =
 "jakarta.servlet.async.servlet_path";
+
+/**
+ * The attribute name for the Query String of the async request
+ */
 public static final String ASYNC_QUERY_STRING =
 "jakarta.servlet.async.query_string";
 
+/**
+ * @return a reference to the ServletRequest object
+ */
 ServletRequest getRequest();
 
+/**
+ * @return a reference to the ServletResponse object
+ */
 ServletResponse getResponse();
 
+/**
+ * @return true if the Request and Response are the original ones
+ */
 boolean hasOriginalRequestAndResponse();
 
 /**
@@ -79,15 +113,43 @@ public interface AsyncContext {
  */
 void dispatch(ServletContext context, String path);
 
+/**
+ * Completes the async request processing and closes the response stream
+ */
 void complete();
 
+/**
+ * Starts a new thread to process the asynchronous request
+ * 
+ * @param run a Runnable that the new thread will run
+ */
 void start(Runnable run);
 
+/**
+ * Adds an event listener that will be called for different AsyncEvents 
fire
+ * 
+ * @param listener an AsyncListener that will be called with AsyncEvent 
objects
+ */
 void addListener(AsyncListener listener);
 
+/**
+ * Adds an event listener that will be called when different AsyncEvents 
fire
+ * 
+ * @param listener an AsyncListener that will be called with AsyncEvent 
objects
+ * @param request the ServletRequest that will be passed with the 
AsyncEvent
+ * @param response the ServletResponse that will be passed with the 
AsyncEvent
+ */
 void addListener(AsyncListener listener, ServletRequest request,
 ServletResponse response);
 
+/**
+ * Creates and returns an AsyncListener object 
+ * 
+ * @param  
+ * @param clazz
+ * @return the newly created AsyncListener object
+ * @throws ServletException
+ */
  T createListener(Class clazz)
 throws ServletException;
 
diff --git a/java/jakarta/servlet/GenericFilter.java 
b/java/jakarta/servlet/GenericFilter.java
index f2585d0..210c225 100644
--- a/java/jakarta/servlet/GenericFilter.java
+++ b/java/jakarta/servlet/GenericFilter.java
@@ -20,7 +20,7 @@ import java.io.Serializable;
 import java.util.Enumeration;
 
 /**
- * Provides a base class the implements the Filter and FilterConfig interfaces
+ * Provides a base class that implements the Filter and FilterConfig interfaces
  * to reduce boilerplate when writing new filters.
  *
  * @see jakarta.servlet.Filter
diff --git a/java/jakarta/servlet/http/HttpFilter.java 
b/java/jakarta/servlet/http/HttpFilter.java
index 2cc08df..7124cd6 100644
--- a/java/jakarta/servlet/http/HttpFilter.java
+++ b/java/jakarta/servlet/http/HttpFilter.java
@@ -24,6 +24,11 @@ import jakarta.servlet.ServletException;
 import jakarta.servlet.ServletRequest;
 import jakarta.servlet.ServletResponse;
 
+/**
+ * Provides a 

[Bug 64797] Align manager.xml template file in Host-Manager with context.xml of real Manager web application.

2020-10-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64797

Igal Sapir  changed:

   What|Removed |Added

 OS||All

--- Comment #1 from Igal Sapir  ---
Would it make sense to copy webapps/manager/META-INF/context.xml to
webapps/host-manager/manager.xml as part of the build script (i.e. in
build.xml)?

-- 
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 8.5.x updated: Use SVG logo for a more modern and consistent look

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

isapir 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 c085c48  Use SVG logo for a more modern and consistent look
c085c48 is described below

commit c085c48700c4a86e4475a163ac56ffc09c5cdd34
Author: Igal Sapir 
AuthorDate: Sat Oct 10 13:07:56 2020 -0700

Use SVG logo for a more modern and consistent look

Also removed unused images and obsolete CSS styles
---
 webapps/ROOT/index.jsp|   3 +--
 webapps/ROOT/tomcat-power.gif | Bin 2376 -> 0 bytes
 webapps/ROOT/tomcat.css   |   9 ++---
 webapps/ROOT/tomcat.gif   | Bin 2066 -> 0 bytes
 webapps/ROOT/tomcat.png   | Bin 5103 -> 0 bytes
 5 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/webapps/ROOT/index.jsp b/webapps/ROOT/index.jsp
index 1d3d46d..5149594 100644
--- a/webapps/ROOT/index.jsp
+++ b/webapps/ROOT/index.jsp
@@ -28,7 +28,6 @@ request.setAttribute("tomcatExamplesUrl", "/examples/");
 
 <%=request.getServletContext().getServerInfo() %>
 
-
 
 
 
@@ -52,7 +51,7 @@ request.setAttribute("tomcatExamplesUrl", "/examples/");
 If you're seeing this, you've successfully installed 
Tomcat. Congratulations!
 
 
-
+
 
 Recommended Reading:
 Security Considerations 
How-To
diff --git a/webapps/ROOT/tomcat-power.gif b/webapps/ROOT/tomcat-power.gif
deleted file mode 100644
index 01c400b..000
Binary files a/webapps/ROOT/tomcat-power.gif and /dev/null differ
diff --git a/webapps/ROOT/tomcat.css b/webapps/ROOT/tomcat.css
index 6995838..87af4a9 100644
--- a/webapps/ROOT/tomcat.css
+++ b/webapps/ROOT/tomcat.css
@@ -94,11 +94,14 @@ a img {
 min-width: 720px;
 max-width: 1000px;
 }
+
 .curved {
 border-radius: 10px;
--moz-border-radius: 10px;
--webkit-border-radius: 10px;
--khtml-border-radius: 10px;
+}
+
+#tomcat-logo {
+width: 150px;
+height: 106px;
 }
 
 #navigation {
diff --git a/webapps/ROOT/tomcat.gif b/webapps/ROOT/tomcat.gif
deleted file mode 100644
index f2aa6f8..000
Binary files a/webapps/ROOT/tomcat.gif and /dev/null differ
diff --git a/webapps/ROOT/tomcat.png b/webapps/ROOT/tomcat.png
deleted file mode 100644
index 209b07f..000
Binary files a/webapps/ROOT/tomcat.png and /dev/null differ


-
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: Use SVG logo for a more modern and consistent look

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

isapir 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 26ccce6  Use SVG logo for a more modern and consistent look
26ccce6 is described below

commit 26ccce6d4845120419d50f591e3e4f01eb4bc87f
Author: Igal Sapir 
AuthorDate: Sat Oct 10 13:07:56 2020 -0700

Use SVG logo for a more modern and consistent look

Also removed unused images and obsolete CSS styles
---
 webapps/ROOT/index.jsp|   3 +--
 webapps/ROOT/tomcat-power.gif | Bin 2376 -> 0 bytes
 webapps/ROOT/tomcat.css   |   9 ++---
 webapps/ROOT/tomcat.gif   | Bin 2066 -> 0 bytes
 webapps/ROOT/tomcat.png   | Bin 5103 -> 0 bytes
 5 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/webapps/ROOT/index.jsp b/webapps/ROOT/index.jsp
index 1d3d46d..5149594 100644
--- a/webapps/ROOT/index.jsp
+++ b/webapps/ROOT/index.jsp
@@ -28,7 +28,6 @@ request.setAttribute("tomcatExamplesUrl", "/examples/");
 
 <%=request.getServletContext().getServerInfo() %>
 
-
 
 
 
@@ -52,7 +51,7 @@ request.setAttribute("tomcatExamplesUrl", "/examples/");
 If you're seeing this, you've successfully installed 
Tomcat. Congratulations!
 
 
-
+
 
 Recommended Reading:
 Security Considerations 
How-To
diff --git a/webapps/ROOT/tomcat-power.gif b/webapps/ROOT/tomcat-power.gif
deleted file mode 100644
index 01c400b..000
Binary files a/webapps/ROOT/tomcat-power.gif and /dev/null differ
diff --git a/webapps/ROOT/tomcat.css b/webapps/ROOT/tomcat.css
index 6995838..87af4a9 100644
--- a/webapps/ROOT/tomcat.css
+++ b/webapps/ROOT/tomcat.css
@@ -94,11 +94,14 @@ a img {
 min-width: 720px;
 max-width: 1000px;
 }
+
 .curved {
 border-radius: 10px;
--moz-border-radius: 10px;
--webkit-border-radius: 10px;
--khtml-border-radius: 10px;
+}
+
+#tomcat-logo {
+width: 150px;
+height: 106px;
 }
 
 #navigation {
diff --git a/webapps/ROOT/tomcat.gif b/webapps/ROOT/tomcat.gif
deleted file mode 100644
index f2aa6f8..000
Binary files a/webapps/ROOT/tomcat.gif and /dev/null differ
diff --git a/webapps/ROOT/tomcat.png b/webapps/ROOT/tomcat.png
deleted file mode 100644
index 209b07f..000
Binary files a/webapps/ROOT/tomcat.png and /dev/null differ


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



[Bug 64799] Missing css and image in Host Manager web application

2020-10-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64799

Igal Sapir  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from Igal Sapir  ---
Tomcat 10 : 7a7ffc20b4fa812acf779524c5794e991e677ce2
Tomcat 9  : 9f58fc91c4fc62baca19c10a41b6844cb3dc4165
Tomcat 8.5: c66a77ba824d05ed03bcdd489757cd749decae49

Tomcat 7 is not affected by this regression

-- 
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: Use SVG logo for a more modern and consistent look

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

isapir 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 466d1a5  Use SVG logo for a more modern and consistent look
466d1a5 is described below

commit 466d1a5a281973e8a12721f0fe4b4c72cc4fa07d
Author: Igal Sapir 
AuthorDate: Sat Oct 10 13:07:56 2020 -0700

Use SVG logo for a more modern and consistent look

Also removed unused images and obsolete CSS styles
---
 webapps/ROOT/index.jsp|   3 +--
 webapps/ROOT/tomcat-power.gif | Bin 2376 -> 0 bytes
 webapps/ROOT/tomcat.css   |   9 ++---
 webapps/ROOT/tomcat.gif   | Bin 2066 -> 0 bytes
 webapps/ROOT/tomcat.png   | Bin 5103 -> 0 bytes
 5 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/webapps/ROOT/index.jsp b/webapps/ROOT/index.jsp
index 1d3d46d..5149594 100644
--- a/webapps/ROOT/index.jsp
+++ b/webapps/ROOT/index.jsp
@@ -28,7 +28,6 @@ request.setAttribute("tomcatExamplesUrl", "/examples/");
 
 <%=request.getServletContext().getServerInfo() %>
 
-
 
 
 
@@ -52,7 +51,7 @@ request.setAttribute("tomcatExamplesUrl", "/examples/");
 If you're seeing this, you've successfully installed 
Tomcat. Congratulations!
 
 
-
+
 
 Recommended Reading:
 Security Considerations 
How-To
diff --git a/webapps/ROOT/tomcat-power.gif b/webapps/ROOT/tomcat-power.gif
deleted file mode 100644
index 01c400b..000
Binary files a/webapps/ROOT/tomcat-power.gif and /dev/null differ
diff --git a/webapps/ROOT/tomcat.css b/webapps/ROOT/tomcat.css
index 6995838..87af4a9 100644
--- a/webapps/ROOT/tomcat.css
+++ b/webapps/ROOT/tomcat.css
@@ -94,11 +94,14 @@ a img {
 min-width: 720px;
 max-width: 1000px;
 }
+
 .curved {
 border-radius: 10px;
--moz-border-radius: 10px;
--webkit-border-radius: 10px;
--khtml-border-radius: 10px;
+}
+
+#tomcat-logo {
+width: 150px;
+height: 106px;
 }
 
 #navigation {
diff --git a/webapps/ROOT/tomcat.gif b/webapps/ROOT/tomcat.gif
deleted file mode 100644
index f2aa6f8..000
Binary files a/webapps/ROOT/tomcat.gif and /dev/null differ
diff --git a/webapps/ROOT/tomcat.png b/webapps/ROOT/tomcat.png
deleted file mode 100644
index 209b07f..000
Binary files a/webapps/ROOT/tomcat.png and /dev/null differ


-
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: BZ-64799 Added changelog entry

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

isapir 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 dcd2426  BZ-64799 Added changelog entry
dcd2426 is described below

commit dcd242684a60f2f9f7f56441728bccd50eb05060
Author: Igal Sapir 
AuthorDate: Sat Oct 10 11:50:45 2020 -0700

BZ-64799 Added changelog entry
---
 webapps/docs/changelog.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 2d5388c..7b35ae9 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -89,6 +89,13 @@
   
 
   
+  
+
+  
+64799: Added missing resources to host-manager web app. 
(isapir)
+  
+
+  
 
 
   


-
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: BZ-64799 Added changelog entry

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

isapir 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 69073f3  BZ-64799 Added changelog entry
69073f3 is described below

commit 69073f3c0261fcf00d8e9d017e4219c568adee1b
Author: Igal Sapir 
AuthorDate: Sat Oct 10 11:49:04 2020 -0700

BZ-64799 Added changelog entry
---
 webapps/docs/changelog.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 7b4f6a0..ce0a2f0 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -78,6 +78,13 @@
   
 
   
+  
+
+  
+64799: Added missing resources to host-manager web app. 
(isapir)
+  
+
+  
 
 
   


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



[tomcat] branch master updated: BZ-64799 Added changelog entry

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

isapir 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 6a04393  BZ-64799 Added changelog entry
6a04393 is described below

commit 6a043936f0497a9e5c266cc75cc397f8b50dac45
Author: Igal Sapir 
AuthorDate: Sat Oct 10 11:46:23 2020 -0700

BZ-64799 Added changelog entry
---
 webapps/docs/changelog.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index 8450b0b..55b5251 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -89,6 +89,13 @@
   
 
   
+  
+
+  
+64799: Added missing resources to host-manager web app. 
(isapir)
+  
+
+  
 
 
   


-
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: BZ-64799 Added missing resources to host-manager webapp

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

isapir 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 c66a77b  BZ-64799 Added missing resources to host-manager webapp
c66a77b is described below

commit c66a77ba824d05ed03bcdd489757cd749decae49
Author: Igal Sapir 
AuthorDate: Sat Oct 10 11:03:15 2020 -0700

BZ-64799 Added missing resources to host-manager webapp
---
 webapps/host-manager/css/manager.css   | 141 +
 webapps/host-manager/images/tomcat.gif | Bin 2066 -> 0 bytes
 webapps/host-manager/images/tomcat.svg | 967 +
 3 files changed, 1108 insertions(+)

diff --git a/webapps/host-manager/css/manager.css 
b/webapps/host-manager/css/manager.css
new file mode 100644
index 000..5b50738
--- /dev/null
+++ b/webapps/host-manager/css/manager.css
@@ -0,0 +1,141 @@
+/*
+ * 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.
+ */
+
+body {
+font-family: Tahoma, Arial, sans-serif;
+}
+
+h1,
+h2,
+h3,
+b {
+color   : white;
+background-color: #525D76;
+}
+
+h1 {
+font-size: 22px;
+}
+
+h2 {
+font-size: 16px;
+}
+
+h3 {
+font-size: 14px;
+}
+
+p {
+font-size: 12px;
+}
+
+a {
+color: black;
+}
+
+.line {
+height  : 1px;
+background-color: #525D76;
+border  : none;
+}
+
+table {
+width: 100%;
+}
+
+td.page-title {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: white;
+color : black;
+}
+
+td.title {
+text-align: left;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-style: italic;
+font-weight   : bold;
+background: #D2A41C;
+}
+
+td.header-left {
+text-align: left;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+td.header-center {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+td.row-left {
+text-align: left;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+td.row-center {
+text-align: center;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+td.row-right {
+text-align: right;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+TH {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+TD {
+text-align: center;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+form {
+margin: 1;
+}
+
+form.inline {
+display: inline;
+}
+
+img.tomcat-logo {
+height: 92px;
+float : left;
+}
\ No newline at end of file
diff --git a/webapps/host-manager/images/tomcat.gif 
b/webapps/host-manager/images/tomcat.gif
deleted file mode 100644
index f2aa6f8..000
Binary files a/webapps/host-manager/images/tomcat.gif and /dev/null differ
diff --git a/webapps/host-manager/images/tomcat.svg 
b/webapps/host-manager/images/tomcat.svg
new file mode 100644
index 000..8823f79
--- /dev/null
+++ b/webapps/host-manager/images/tomcat.svg
@@ -0,0 +1,967 @@
+
+
+
+http://ns.adobe.com/xap/1.0/g/img/;
+   xmlns:xap="http://ns.adobe.com/xap/1.0/;
+   xmlns:ns0="http://ns.adobe.com/SaveForWeb/1.0/;
+   xmlns:ns="http://ns.adobe.com/Variables/1.0/;
+   xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/;
+   xmlns:x="adobe:ns:meta/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   

[tomcat] branch 9.0.x updated: BZ-64799 Added missing resources to host-manager webapp

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

isapir 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 9f58fc9  BZ-64799 Added missing resources to host-manager webapp
 new d48a792  Merge branch '9.0.x' of github.com:apache/tomcat into 9.0.x
9f58fc9 is described below

commit 9f58fc91c4fc62baca19c10a41b6844cb3dc4165
Author: Igal Sapir 
AuthorDate: Sat Oct 10 11:03:15 2020 -0700

BZ-64799 Added missing resources to host-manager webapp
---
 webapps/host-manager/css/manager.css   | 141 +
 webapps/host-manager/images/tomcat.gif | Bin 2066 -> 0 bytes
 webapps/host-manager/images/tomcat.svg | 967 +
 3 files changed, 1108 insertions(+)

diff --git a/webapps/host-manager/css/manager.css 
b/webapps/host-manager/css/manager.css
new file mode 100644
index 000..5b50738
--- /dev/null
+++ b/webapps/host-manager/css/manager.css
@@ -0,0 +1,141 @@
+/*
+ * 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.
+ */
+
+body {
+font-family: Tahoma, Arial, sans-serif;
+}
+
+h1,
+h2,
+h3,
+b {
+color   : white;
+background-color: #525D76;
+}
+
+h1 {
+font-size: 22px;
+}
+
+h2 {
+font-size: 16px;
+}
+
+h3 {
+font-size: 14px;
+}
+
+p {
+font-size: 12px;
+}
+
+a {
+color: black;
+}
+
+.line {
+height  : 1px;
+background-color: #525D76;
+border  : none;
+}
+
+table {
+width: 100%;
+}
+
+td.page-title {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: white;
+color : black;
+}
+
+td.title {
+text-align: left;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-style: italic;
+font-weight   : bold;
+background: #D2A41C;
+}
+
+td.header-left {
+text-align: left;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+td.header-center {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+td.row-left {
+text-align: left;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+td.row-center {
+text-align: center;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+td.row-right {
+text-align: right;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+TH {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+TD {
+text-align: center;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+form {
+margin: 1;
+}
+
+form.inline {
+display: inline;
+}
+
+img.tomcat-logo {
+height: 92px;
+float : left;
+}
\ No newline at end of file
diff --git a/webapps/host-manager/images/tomcat.gif 
b/webapps/host-manager/images/tomcat.gif
deleted file mode 100644
index f2aa6f8..000
Binary files a/webapps/host-manager/images/tomcat.gif and /dev/null differ
diff --git a/webapps/host-manager/images/tomcat.svg 
b/webapps/host-manager/images/tomcat.svg
new file mode 100644
index 000..8823f79
--- /dev/null
+++ b/webapps/host-manager/images/tomcat.svg
@@ -0,0 +1,967 @@
+
+
+
+http://ns.adobe.com/xap/1.0/g/img/;
+   xmlns:xap="http://ns.adobe.com/xap/1.0/;
+   xmlns:ns0="http://ns.adobe.com/SaveForWeb/1.0/;
+   xmlns:ns="http://ns.adobe.com/Variables/1.0/;
+   xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/;
+   xmlns:x="adobe:ns:meta/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   

[tomcat] branch master updated: BZ-64799 Added missing resources to host-manager webapp

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

isapir 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 7a7ffc2  BZ-64799 Added missing resources to host-manager webapp
7a7ffc2 is described below

commit 7a7ffc20b4fa812acf779524c5794e991e677ce2
Author: Igal Sapir 
AuthorDate: Sat Oct 10 11:03:15 2020 -0700

BZ-64799 Added missing resources to host-manager webapp
---
 webapps/host-manager/css/manager.css   | 141 +
 webapps/host-manager/images/tomcat.gif | Bin 2066 -> 0 bytes
 webapps/host-manager/images/tomcat.svg | 967 +
 3 files changed, 1108 insertions(+)

diff --git a/webapps/host-manager/css/manager.css 
b/webapps/host-manager/css/manager.css
new file mode 100644
index 000..5b50738
--- /dev/null
+++ b/webapps/host-manager/css/manager.css
@@ -0,0 +1,141 @@
+/*
+ * 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.
+ */
+
+body {
+font-family: Tahoma, Arial, sans-serif;
+}
+
+h1,
+h2,
+h3,
+b {
+color   : white;
+background-color: #525D76;
+}
+
+h1 {
+font-size: 22px;
+}
+
+h2 {
+font-size: 16px;
+}
+
+h3 {
+font-size: 14px;
+}
+
+p {
+font-size: 12px;
+}
+
+a {
+color: black;
+}
+
+.line {
+height  : 1px;
+background-color: #525D76;
+border  : none;
+}
+
+table {
+width: 100%;
+}
+
+td.page-title {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: white;
+color : black;
+}
+
+td.title {
+text-align: left;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-style: italic;
+font-weight   : bold;
+background: #D2A41C;
+}
+
+td.header-left {
+text-align: left;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+td.header-center {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+td.row-left {
+text-align: left;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+td.row-center {
+text-align: center;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+td.row-right {
+text-align: right;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+TH {
+text-align: center;
+vertical-align: top;
+font-family   : sans-serif, Tahoma, Arial;
+font-weight   : bold;
+background: #FFDC75;
+}
+
+TD {
+text-align: center;
+vertical-align: middle;
+font-family   : sans-serif, Tahoma, Arial;
+color : black;
+}
+
+form {
+margin: 1;
+}
+
+form.inline {
+display: inline;
+}
+
+img.tomcat-logo {
+height: 92px;
+float : left;
+}
\ No newline at end of file
diff --git a/webapps/host-manager/images/tomcat.gif 
b/webapps/host-manager/images/tomcat.gif
deleted file mode 100644
index f2aa6f8..000
Binary files a/webapps/host-manager/images/tomcat.gif and /dev/null differ
diff --git a/webapps/host-manager/images/tomcat.svg 
b/webapps/host-manager/images/tomcat.svg
new file mode 100644
index 000..8823f79
--- /dev/null
+++ b/webapps/host-manager/images/tomcat.svg
@@ -0,0 +1,967 @@
+
+
+
+http://ns.adobe.com/xap/1.0/g/img/;
+   xmlns:xap="http://ns.adobe.com/xap/1.0/;
+   xmlns:ns0="http://ns.adobe.com/SaveForWeb/1.0/;
+   xmlns:ns="http://ns.adobe.com/Variables/1.0/;
+   xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/;
+   xmlns:x="adobe:ns:meta/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   

[Bug 64799] Missing css and image in Host Manager web application

2020-10-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64799

Igal Sapir  changed:

   What|Removed |Added

 OS||All

--- Comment #1 from Igal Sapir  ---
I must have broke it when I refactored the resources of the Manager app. 
Didn't realize the host-manager uses the same resources.

Fixing ASAP.

-- 
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



[Bug 64799] New: Missing css and image in Host Manager web application

2020-10-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64799

Bug ID: 64799
   Summary: Missing css and image in Host Manager web application
   Product: Tomcat 9
   Version: 9.0.39
  Hardware: PC
Status: NEW
  Severity: regression
  Priority: P2
 Component: Manager
  Assignee: dev@tomcat.apache.org
  Reporter: knst.koli...@gmail.com
  Target Milestone: -

Smoke-testing Host Manager web application in Tomcat 9.0.39, the following
files are missing (error 404):

/host-manager/css/manager.css
/host-manager/images/tomcat.svg

Workaround: copy the missing files from the Manager web application.

-- 
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



[Bug 64797] New: Align manager.xml template file in Host-Manager with context.xml of real Manager web application.

2020-10-10 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=64797

Bug ID: 64797
   Summary: Align manager.xml template file in Host-Manager with
context.xml of real Manager web application.
   Product: Tomcat 10
   Version: 10.0.0-M9
  Hardware: PC
Status: NEW
  Severity: normal
  Priority: P2
 Component: Manager
  Assignee: dev@tomcat.apache.org
  Reporter: knst.koli...@gmail.com
  Target Milestone: --

In Host Manager there is a file "manager.xml". It is used to configure an copy
of Manager webapp when a new virtual host is created via Host Manager.

As time goes, it became different from a META-INF/context.xml file of a real
Manager application.

E.g. the following commit added a CookieProcessor configuration to the Manager
web application, but "manager.xml" file has not been updated.

https://github.com/apache/tomcat/commit/3405dec9efb027252ddba005d6e44dda4c9f43df

-- 
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