- Add a html file in case the user goes to the wrong place in the examples.
authorremm <remm@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 5 Dec 2006 13:53:47 +0000 (13:53 +0000)
committerremm <remm@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 5 Dec 2006 13:53:47 +0000 (13:53 +0000)
- Changelog update.

git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@482651 13f79535-47bb-0310-9956-ffa450edef68

webapps/docs/changelog.xml
webapps/docs/config/ajp.xml
webapps/docs/config/http.xml
webapps/examples/index.html [new file with mode: 0644]

index 0d3a31e..0abbaa2 100644 (file)
         Fix logic of sameSameObjects used to determine correct wrapping of request and
         response objects (fhanik)
       </fix>
+      <fix>
+        Update TLD scan lists, and disable caching for now (remm)
+      </fix>
+      <update>
+        Add system property to WebappClassLoader to allow disabling setting references
+        to null when stopping it (remm)
+      </update>
     </changelog>
   </subsection>
   <subsection name="Coyote">
       <fix>
         MessageBytes.setString(null) will remove the String value. (remm)
       </fix>
+      <fix>
+        <bug>41057</bug>: Caching large strings is not useful and takes too much
+        memory, so don't cache these (remm)
+      </fix>
+      <update>
+        Add keepAliveTimeout attribute to most connectors (mturk, remm)
+      </update>
+    </changelog>
+  </subsection>
+  <subsection name="Jasper">
+    <changelog>
+      <fix>
+        Relax EL type validation for litterals. (remm)
+      </fix>
+      <fix>
+        Update some version numbers to 2.1. (funkman, remm)
+      </fix>
+      <fix>
+        Add xsds for JSP 2.1 (remm)
+      </fix>
+      <fix>
+        <bug>41106</bug>: Update validation checks for EL to also include 
+        legacy 1.2 tags (remm)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Webapps">
index 505863d..99b62ad 100644 (file)
@@ -221,7 +221,8 @@ with AJP enabled</li>
     <attribute name="keepAliveTimeout" required="false">
       <p>The number of milliseconds this <strong>Connector</strong> will wait,
        subsequent request before closing the connection.
-       The default value is infinite (i.e. no timeout).</p>
+       The default value is to use the value that has been set for the
+       connectionTimeout.</p>
     </attribute>
 
     <attribute name="minProcessors" required="false">
index 6196624..b53373c 100644 (file)
     <attribute name="keepAliveTimeout" required="false">
       <p>The number of milliseconds this <strong>Connector</strong> will wait,
        subsequent request before closing the connection.
-       The default value is 15000 (i.e. 15 seconds).</p>
+       The default value is to use the value that has been set for the
+       connectionTimeout.</p>
     </attribute>
 
     <attribute name="disableUploadTimeout" required="false">
diff --git a/webapps/examples/index.html b/webapps/examples/index.html
new file mode 100644 (file)
index 0000000..c83ccce
--- /dev/null
@@ -0,0 +1,13 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+<HTML><HEAD><TITLE>Apache Tomcat Examples</TITLE>
+<META http-equiv=Content-Type content="text/html">
+</HEAD>
+<BODY>
+<P>
+<H3>Apache Tomcat Examples</H3>
+<P></P>
+<ul>
+<li><a href="servlets">Servlets examples</a></li>
+<li><a href="jsp">JSP Examples</a></li>
+</ul>
+</BODY></HTML>