This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat-training.git
The following commit(s) were added to refs/heads/main by this push:
new ecbfa3c Fix background
ecbfa3c is described below
commit ecbfa3cd46734c278a729a0df16a04e5e1326cda
Author: Mark Thomas <[email protected]>
AuthorDate: Mon Feb 10 11:18:40 2025 +0000
Fix background
---
modules/intro-markt.html | 8 +++--
modules/tomcat-11-jakarta-ee-11.html | 52 ++++++++++++++++++++++--------
modules/wrap-up-presentation.html | 12 +++++--
presentations/tomcat-11-jakarta-ee-11.html | 26 ++-------------
4 files changed, 57 insertions(+), 41 deletions(-)
diff --git a/modules/intro-markt.html b/modules/intro-markt.html
index ac07d1b..7912ede 100644
--- a/modules/intro-markt.html
+++ b/modules/intro-markt.html
@@ -14,14 +14,18 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Introduction</h3>
<p>Mark Thomas</p>
<p>[email protected]</p>
<p>Hosted at GitHub in the <a
href="https://github.com/apache/tomcat-training">tomcat-training</a>
repository</p>
<p>Pull requests welcome</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<p>Tomcat since 2003<br/>Committer, PMC member</p>
<p>Commons - Daemon, Pool, DBCP, BCEL<br>Committer, PMC member</p>
<p>ASF member, ASF security team, ASF infrastructure team,<br/>Director
2016-19, VP Brand Management since 2018</p>
diff --git a/modules/tomcat-11-jakarta-ee-11.html
b/modules/tomcat-11-jakarta-ee-11.html
index 7bca10e..07be3ca 100644
--- a/modules/tomcat-11-jakarta-ee-11.html
+++ b/modules/tomcat-11-jakarta-ee-11.html
@@ -14,21 +14,27 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Agenda</h3>
<p>Overview<p>
<p>Changes</p>
<p>Tomcat 11</p>
<p>Questions</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Overview - Versioning</h3>
<p>Tomcat major versions aligned with Servlet specification releases<p>
<p>Servlet specification releases aligned with and Jakarta EE releases</p>
<p>Tomcat 11 - Servlet 6.1 - Jakarta EE 11</p>
<p>Hope to keep Tomcat major version and Jakarta EE version aligned</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Jakarta EE 11 - Tomcat 11</h3>
<p>42 individual specifications - Tomcat implements 6</p>
<p>Those 6 are complete and released</p>
@@ -37,7 +43,9 @@
<p>Daily testing against 5 TCKs</p>
<p>Authentication TCK uses different framework - work in progress</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Overview - Timing</h3>
<p>Jakarta EE 10 was released Q3 2022</p>
<p>Jakarta EE 11 originally planned for Q1 2024</p>
@@ -46,12 +54,16 @@
<p>Tomcat 11.0.0-M1 2022-12-05</p>
<p>Tomcat 11.0.0 2024-10-09</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Jakarta EE 11 Platform</h3>
<p>Requires a minimum of Java 17</p>
<p>No SecurityManager support</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Jakarta Servlet - 6.1</h3>
<p>Safe HTTP session access for WebSocket</p>
<pre>
@@ -67,29 +79,39 @@ public interface HttpSession {
</code>
</pre>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Jakarta Servlet - 6.1</h3>
<p>Invalid request parameters will always trigger an exception</p>
<p>HTTP/2 server push is deprecated
<p>Lots of clarifications</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Jakarta Pages - 4.0</h3>
<p>Depreacted classes and methods have been removed</p>
<p>Updated ErrorData to support the new request attribute
jakarta.servlet.error.query_string
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Jakarta WebSocket - 2.2</h3>
<p>Clarifed the responsibility for sending Ping messages</p>
<p>Added getSession() method to SendResult</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Expression Language - 6.0</h3>
<p>Remove all deprecated classes and methods</p>
<p>Dependency on JavaBeans API is now optional</p>
<p>Added support for java.util.Optional via OptionalELResolver</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Changes - Tomcat 11</h3>
<p>Specification / RFC updates</p>
<p>RFC 9218 - HTTP/2 priority frame support</p>
@@ -98,13 +120,17 @@ public interface HttpSession {
<p>Added virtual thread support</p>
<p>Added TLSCertificateReloadListener</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Tomcat 11</h3>
<p>First stable release will be on Wednesday</p>
<p>25th anniversary of first Tomcat commit at the ASF</p>
<p>Join us for cake</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Tomcat 11</h3>
<p>Major versions are supported for ~10 years</p>
<p>Regular monthly release cycle</p>
diff --git a/modules/wrap-up-presentation.html
b/modules/wrap-up-presentation.html
index 50e70d2..bb006ad 100644
--- a/modules/wrap-up-presentation.html
+++ b/modules/wrap-up-presentation.html
@@ -14,10 +14,14 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Questions?</h3>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Tomcat Resources</h3>
<p>Web site: <a
href="https://tomcat.apache.org">https://tomcat.apache.org</a></p>
<p>Mailing lists: <a
href="https://tomcat.apache.org/lists.html">https://tomcat.apache.org/lists.html</a></p>
@@ -25,6 +29,8 @@
<p>Issue tracker: <a
href="https://bz.apache.org/bugzilla">https://bz.apache.org/bugzilla</a>
<p>Stack overflow</p>
</section>
-<section>
+<section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h3>Thank you</h3>
</section>
diff --git a/presentations/tomcat-11-jakarta-ee-11.html
b/presentations/tomcat-11-jakarta-ee-11.html
index 17a5be4..4be42be 100644
--- a/presentations/tomcat-11-jakarta-ee-11.html
+++ b/presentations/tomcat-11-jakarta-ee-11.html
@@ -29,33 +29,13 @@
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="../plugin/highlight/monokai.css">
- <!-- Override default styles -->
- <style>
- <!-- Transparent background image on all slides -->
- body {
- position: relative;
- z-index: 1;
- }
- body::before {
- content: "";
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: .15;
- z-index: -1;
- background: url( '../images/tomcat.svg' );
- background-position: center;
- background-size: 100%;
- background-repeat: no-repeat;
- }
- </style>
</head>
<body>
<div class="reveal">
<div class="slides">
- <section>
+ <section data-background-image="../images/tomcat.svg"
+ data-background-size="contain"
+ data-background-opacity="0.15">
<h1>Tomcat 11 &<br/>Jakarta EE 11</h1>
</section>
<section data-external-replace="../modules/intro-markt.html">
</section>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]