Modified: tomcat/site/trunk/build.properties.default URL: http://svn.apache.org/viewvc/tomcat/site/trunk/build.properties.default?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/build.properties.default (original) +++ tomcat/site/trunk/build.properties.default Thu Feb 11 14:00:17 2016 @@ -36,7 +36,7 @@ tomcat.loc=http://www.apache.org/dist/to # ----- Tomcat versions ----- -tomcat60=6.0.43 +tomcat60=6.0.45 tomcat70=7.0.67 tomcat80=8.0.32 tomcat90=9.0.0.M3 @@ -55,4 +55,4 @@ tomcat80.loc=${tomcat.loc}/tomcat-8/v${t tomcat80.home=${tomcat-site-docs.home}/${tomcat80} tomcat90.loc=${tomcat.loc}/tomcat-9/v${tomcat90}/bin/apache-tomcat-${tomcat90}-fulldocs.tar.gz -tomcat90.home=${tomcat-site-docs.home}/${tomcat90} \ No newline at end of file +tomcat90.home=${tomcat-site-docs.home}/${tomcat90}
Modified: tomcat/site/trunk/docs/download-60.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/download-60.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/download-60.html (original) +++ tomcat/site/trunk/docs/download-60.html Thu Feb 11 14:00:17 2016 @@ -218,7 +218,7 @@ <h3 id="Quick_Navigation">Quick Navigation</h3> <div class="text"> -[define v]6.0.44[end] +[define v]6.0.45[end] <a href="https://www.apache.org/dist/tomcat/tomcat-6/KEYS">KEYS</a> | <a href="#[v]">[v]</a> | <a href="[preferred]tomcat/tomcat-6/v[v]" rel="nofollow">Browse</a> | Modified: tomcat/site/trunk/docs/index.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/index.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/index.html (original) +++ tomcat/site/trunk/docs/index.html Thu Feb 11 14:00:17 2016 @@ -432,19 +432,18 @@ found in previous releases. </p> </div> -<h3 id="Tomcat_6.0.44_Released"> -<span style="float: right;">2015-05-12</span> Tomcat 6.0.44 Released</h3> +<h3 id="Tomcat_6.0.45_Released"> +<span style="float: right;">2016-02-11</span> Tomcat 6.0.45 Released</h3> <div class="text"> <p> -The Apache Tomcat Project is proud to announce the release of version 6.0.44 of -Apache Tomcat. This release includes a number of security and bug fixes over Apache Tomcat +The Apache Tomcat Project is proud to announce the release of version 6.0.45 of +Apache Tomcat. This release includes a number of bug fixes over Apache Tomcat 6.0.44. The notable changes include:</p> <ul> -<li>Update to Tomcat Native Library version 1.1.33 to pick up the Windows - binaries that are based on OpenSSL 1.0.1m.</li> +<li>Update to Tomcat Native Library version 1.1.34.</li> </ul> @@ -459,7 +458,7 @@ Apache Tomcat. This release includes a n <p style="text-align: center;"> <a href="download-60.cgi">Download</a> | -<a href="tomcat-6.0-doc/changelog.html">ChangeLog for 6.0.44</a> +<a href="tomcat-6.0-doc/changelog.html">ChangeLog for 6.0.45</a> </p> Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/BUILDING.txt URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/BUILDING.txt?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/BUILDING.txt (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/BUILDING.txt Thu Feb 11 14:00:17 2016 @@ -172,3 +172,126 @@ For a quick rebuild of only modified cod cd ${tomcat.source} ant -f dist.xml release + +(8) Tests + +(8.1) Running Tomcat tests + +Tomcat 6 includes a small number of junit tests. (A lot more are available +with Tomcat 7 onwards). + +The tests are not run when a release is built. There is separate command to +run them. + +To run the testsuite use the following command: + + cd ${tomcat.source} + ant download + ant test + +It is advisable to redirect output of the above command to a file for later +inspection. + +The JUnit reports generated by the tests will be written to the following +directory: + + output/build/logs + +By default the testsuite is run three times to test 3 different +implementations of Tomcat connectors: BIO, NIO and APR. (If you are not +familiar with Tomcat connectors, see config/http.html in documentation for +details). + +The 3 runs are enabled and disabled individually by the following +properties, which all are "true" by default: + + execute.test.bio=true + execute.test.nio=true + execute.test.apr=true + +The APR connector can be tested only if Tomcat-Native library binaries are +found by the testsuite. The "test.apr.loc" property specifies the directory +where the library binaries are located. + +By default the "test.apr.loc" property specifies the following location: + + output/build/bin/native/ + +If you are on Windows and want to test the APR connector you can put the +tcnative-1.dll file into ${tomcat.source}/bin/native/ and it will be copied +into the above directory when the build runs. + + +(8.2) Running a single test + +It is possible to run a single JUnit test class by adding the "test.entry" +property to the build.properties file. The property specifies the name of +the test class. + +For example: + + test.entry=org.apache.catalina.util.TestServerInfo + +It is possible to further limit such run to a number of selected test +methods by adding "test.entry.methods" property. The property specifies a +comma-separated list of test case methods. + +For example: + + test.entry=org.apache.el.lang.TestELArithmetic + test.entry.methods=testMultiply01,testMultiply02 + + +(8.3) Running a set of tests + +It is possible to run a set of JUnit test classes by adding the "test.name" +property to the build.properties file. The property specifies an Ant +includes pattern for the fileset of test class files to run. + +The default value is "**/Test*.java", so all test classes are being +executed (with few exceptions - see build.xml for several exclude patterns). + +You can include multiple patterns by concatenating them with a comma (",") +as the separator. + +For example: + + test.name=**/TestTomcat.java,**/TestApplicationHttpRequest.java + + +(8.4) Other configuration options + + 1. It is possible to configure the directory where JUnit reports are + written to. It is configured by "test.reports" property. The default + value is + + output/build/logs + + 2. It is possible to enable generation of access log file when the tests + are run. This is off by default and can be enabled by the following + property: + + test.accesslog=true + + The "access_log.<date>" file will be written to the same directory as + JUnit reports, + + output/build/logs + + 3. The testsuite respects logging configuration as configured by + ${tomcat.source}/conf/logging.properties + + The log files will be written to the temporary directory used by the + tests, + + output/test-tmp/logs + + 4. It is possible to configure formatter used by JUnit reports. + Configuration properties are "junit.formatter.type", + "junit.formatter.extension" and "junit.formatter.usefile". + + For example the following property disables generation of separate report + files: + + junit.formatter.usefile=false + Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/LICENSE URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/LICENSE?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/LICENSE (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/LICENSE Thu Feb 11 14:00:17 2016 @@ -210,7 +210,7 @@ and license terms. Your use of these sub conditions of the following licenses. -For the Eclipse JDT Java compiler: +For the Eclipse JDT Core Batch Compiler (ecj-x.x.x.jar) component: Eclipse Public License - v 1.0 Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/NOTICE URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/NOTICE?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/NOTICE (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/NOTICE Thu Feb 11 14:00:17 2016 @@ -1,19 +1,19 @@ Apache Tomcat -Copyright 1999-2015 The Apache Software Foundation +Copyright 1999-2016 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). The Windows Installer is built with the Nullsoft -Scriptable Install Sysem (NSIS), which is +Scriptable Install System (NSIS), which is open source software. The original software and related information is available at http://nsis.sourceforge.net. -Java compilation software for JSP pages is provided by Eclipse, -which is open source software. The original software and -related information is available at -http://www.eclipse.org. +Java compilation software for JSP pages is provided by the Eclipse +JDT Core Batch Compiler component, which is open source software. +The original software and related information is available at +http://www.eclipse.org/jdt/core/. The original XML Schemas for Java EE Deployment Descriptors: - javaee_5.xsd Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/RELEASE-NOTES.txt URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/RELEASE-NOTES.txt?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/RELEASE-NOTES.txt (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/RELEASE-NOTES.txt Thu Feb 11 14:00:17 2016 @@ -16,7 +16,7 @@ ================================================================================ - Apache Tomcat Version 6.0.44 + Apache Tomcat Version 6.0.45 Release Notes Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/RUNNING.txt URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/RUNNING.txt?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/RUNNING.txt (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/RUNNING.txt Thu Feb 11 14:00:17 2016 @@ -67,17 +67,15 @@ create your own from the Tomcat source c (3) Configure Environment Variables -Tomcat is a Java application and does not use environment variables. The -variables are used by the Tomcat startup scripts. The scripts use the variables -to prepare the command that starts Tomcat. +Tomcat is a Java application and does not use environment variables directly. +Environment variables are used by the Tomcat startup scripts. The scripts use +the environment variables to prepare the command that starts Tomcat. (3.1) Set CATALINA_HOME (required) and CATALINA_BASE (optional) The CATALINA_HOME environment variable should be set to the location of the root directory of the "binary" distribution of Tomcat. -An example was given in (2.2) above. - The Tomcat startup scripts have some logic to set this variable automatically if it is absent, based on the location of the startup script in *nix and on the current directory in Windows. That logic might not work Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/aio.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/aio.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/aio.html (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/aio.html Thu Feb 11 14:00:17 2016 @@ -1,9 +1,9 @@ -<html><head><META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Apache Tomcat 6.0 (6.0.44) - Advanced IO and Tomcat</title><meta name="author" content="Remy Maucherat"><style type="text/css" media="print"> +<html><head><META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"><title>Apache Tomcat 6.0 (6.0.45) - Advanced IO and Tomcat</title><meta name="author" content="Remy Maucherat"><style type="text/css" media="print"> .noPrint {display: none;} td#mainBody {width: 100%;} </style></head><body bgcolor="#ffffff" text="#000000" link="#525D76" alink="#525D76" vlink="#525D76"><table border="0" width="100%" cellspacing="0"><!--PAGE HEADER--><tr><td><!--PROJECT LOGO--><a href="http://tomcat.apache.org/"><img src="./images/tomcat.gif" align="right" alt=" The Apache Tomcat Servlet/JSP Container - " border="0"></a></td><td><h1><font face="arial,helvetica,sanserif">Apache Tomcat 6.0</font></h1><font face="arial,helvetica,sanserif">Version 6.0.44, May 8 2015</font></td><td><!--APACHE LOGO--><a href="http://www.apache.org/"><img src="./images/asf-logo.gif" align="right" alt="Apache Logo" border="0"></a></td></tr></table><table border="0" width="100%" cellspacing="4"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr noshade="noshade" size="1"></td></tr><tr><!--LEFT SIDE NAVIGATION--><td width="20%" valign="top" nowrap="nowrap" class="noPrint"><p><strong>Links</strong></p><ul><li><a href="index.html">Docs Home</a></li><li><a href="http://wiki.apache.org/tomcat/FAQ">FAQ</a></li></ul><p><strong>User Guide</strong></p><ul><li><a href="introduction.html">1) Introduction</a></li><li><a href="setup.html">2) Setup</a></li><li><a href="appdev/index.html">3) First webapp</a></li><li><a href="deployer-howto.html">4) Deployer</a></li><li><a href="manager-howto.html">5) Manager</a></li><li>< a href="realm-howto.html">6) Realms and AAA</a></li><li><a href="security-manager-howto.html">7) Security Manager</a></li><li><a href="jndi-resources-howto.html">8) JNDI Resources</a></li><li><a href="jndi-datasource-examples-howto.html">9) JDBC DataSources</a></li><li><a href="class-loader-howto.html">10) Classloading</a></li><li><a href="jasper-howto.html">11) JSPs</a></li><li><a href="ssl-howto.html">12) SSL</a></li><li><a href="ssi-howto.html">13) SSI</a></li><li><a href="cgi-howto.html">14) CGI</a></li><li><a href="proxy-howto.html">15) Proxy Support</a></li><li><a href="mbeans-descriptor-howto.html">16) MBean Descriptor</a></li><li><a href="default-servlet.html">17) Default Servlet</a></li><li><a href="cluster-howto.html">18) Clustering</a></li><li><a href="balancer-howto.html">19) Load Balancer</a></li><li><a href="connectors.html">20) Connectors</a></li><li><a href="monitoring.html">21) Monitoring and Management</a></li><li><a href="logging.html">22) Logging</a></li><li><a h ref="apr.html">23) APR/Native</a></li><li><a href="virtual-hosting-howto.html">24) Virtual Hosting</a></li><li><a href="aio.html">25) Advanced IO</a></li><li><a href="extras.html">26) Additional Components</a></li><li><a href="maven-jars.html">27) Mavenized</a></li></ul><p><strong>Reference</strong></p><ul><li><a href="RELEASE-NOTES.txt">Release Notes</a></li><li><a href="config/index.html">Configuration</a></li><li><a href="api/index.html">Javadocs</a></li><li><a href="http://tomcat.apache.org/connectors-doc/">JK 1.2 Documentation</a></li></ul><p><strong>Apache Tomcat Development</strong></p><ul><li><a href="building.html">Building</a></li><li><a href="changelog.html">Changelog</a></li><li><a href="http://wiki.apache.org/tomcat/TomcatVersions">Status</a></li><li><a href="developers.html">Developers</a></li><li><a href="architecture/index.html">Architecture</a></li><li><a href="funcspecs/index.html">Functional Specs.</a></li></ul></td><!--RIGHT SIDE MAIN BODY--><td width="80%" valig n="top" align="left" id="mainBody"><h1>Apache Tomcat 6.0</h1><h2>Advanced IO and Tomcat</h2><table border="0" cellspacing="0" cellpadding="2"><tr><td bgcolor="#525D76"><font color="#ffffff" face="arial,helvetica.sanserif"><a name="Table of Contents"><!--()--></a><a name="Table_of_Contents"><strong>Table of Contents</strong></a></font></td></tr><tr><td><blockquote> + " border="0"></a></td><td><h1><font face="arial,helvetica,sanserif">Apache Tomcat 6.0</font></h1><font face="arial,helvetica,sanserif">Version 6.0.45, Feb 1 2016</font></td><td><!--APACHE LOGO--><a href="http://www.apache.org/"><img src="./images/asf-logo.gif" align="right" alt="Apache Logo" border="0"></a></td></tr></table><table border="0" width="100%" cellspacing="4"><!--HEADER SEPARATOR--><tr><td colspan="2"><hr noshade="noshade" size="1"></td></tr><tr><!--LEFT SIDE NAVIGATION--><td width="20%" valign="top" nowrap="nowrap" class="noPrint"><p><strong>Links</strong></p><ul><li><a href="index.html">Docs Home</a></li><li><a href="http://wiki.apache.org/tomcat/FAQ">FAQ</a></li></ul><p><strong>User Guide</strong></p><ul><li><a href="introduction.html">1) Introduction</a></li><li><a href="setup.html">2) Setup</a></li><li><a href="appdev/index.html">3) First webapp</a></li><li><a href="deployer-howto.html">4) Deployer</a></li><li><a href="manager-howto.html">5) Manager</a></li><li>< a href="realm-howto.html">6) Realms and AAA</a></li><li><a href="security-manager-howto.html">7) Security Manager</a></li><li><a href="jndi-resources-howto.html">8) JNDI Resources</a></li><li><a href="jndi-datasource-examples-howto.html">9) JDBC DataSources</a></li><li><a href="class-loader-howto.html">10) Classloading</a></li><li><a href="jasper-howto.html">11) JSPs</a></li><li><a href="ssl-howto.html">12) SSL</a></li><li><a href="ssi-howto.html">13) SSI</a></li><li><a href="cgi-howto.html">14) CGI</a></li><li><a href="proxy-howto.html">15) Proxy Support</a></li><li><a href="mbeans-descriptor-howto.html">16) MBean Descriptor</a></li><li><a href="default-servlet.html">17) Default Servlet</a></li><li><a href="cluster-howto.html">18) Clustering</a></li><li><a href="balancer-howto.html">19) Load Balancer</a></li><li><a href="connectors.html">20) Connectors</a></li><li><a href="monitoring.html">21) Monitoring and Management</a></li><li><a href="logging.html">22) Logging</a></li><li><a h ref="apr.html">23) APR/Native</a></li><li><a href="virtual-hosting-howto.html">24) Virtual Hosting</a></li><li><a href="aio.html">25) Advanced IO</a></li><li><a href="extras.html">26) Additional Components</a></li><li><a href="maven-jars.html">27) Mavenized</a></li></ul><p><strong>Reference</strong></p><ul><li><a href="RELEASE-NOTES.txt">Release Notes</a></li><li><a href="config/index.html">Configuration</a></li><li><a href="api/index.html">Javadocs</a></li><li><a href="http://tomcat.apache.org/connectors-doc/">JK 1.2 Documentation</a></li></ul><p><strong>Apache Tomcat Development</strong></p><ul><li><a href="building.html">Building</a></li><li><a href="changelog.html">Changelog</a></li><li><a href="http://wiki.apache.org/tomcat/TomcatVersions">Status</a></li><li><a href="developers.html">Developers</a></li><li><a href="architecture/index.html">Architecture</a></li><li><a href="funcspecs/index.html">Functional Specs.</a></li></ul></td><!--RIGHT SIDE MAIN BODY--><td width="80%" valig n="top" align="left" id="mainBody"><h1>Apache Tomcat 6.0</h1><h2>Advanced IO and Tomcat</h2><table border="0" cellspacing="0" cellpadding="2"><tr><td bgcolor="#525D76"><font color="#ffffff" face="arial,helvetica.sanserif"><a name="Table of Contents"><!--()--></a><a name="Table_of_Contents"><strong>Table of Contents</strong></a></font></td></tr><tr><td><blockquote> <ul><li><a href="#Introduction">Introduction</a></li><li><a href="#Comet_support">Comet support</a><ol><li><a href="#CometEvent">CometEvent</a></li><li><a href="#CometFilter">CometFilter</a></li><li><a href="#Example_code">Example code</a></li><li><a href="#Comet_timeouts">Comet timeouts</a></li></ol></li><li><a href="#Asynchronous_writes">Asynchronous writes</a></li></ul> </blockquote></td></tr></table><table border="0" cellspacing="0" cellpadding="2"><tr><td bgcolor="#525D76"><font color="#ffffff" face="arial,helvetica.sanserif"><a name="Introduction"><strong>Introduction</strong></a></font></td></tr><tr><td><blockquote> @@ -313,5 +313,5 @@ public class ChatServlet </ul> </blockquote></td></tr></table></td></tr><!--FOOTER SEPARATOR--><tr><td colspan="2"><hr noshade="noshade" size="1"></td></tr><!--PAGE FOOTER--><tr><td colspan="2"><div align="center"><font color="#525D76" size="-1"><em> - Copyright © 1999-2015, Apache Software Foundation + Copyright © 1999-2016, Apache Software Foundation </em></font></div></td></tr></table></body></html> \ No newline at end of file Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-frame.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-frame.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-frame.html (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-frame.html Thu Feb 11 14:00:17 2016 @@ -4,7 +4,7 @@ <HEAD> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> -All Classes (Apache Tomcat 6.0.44 API Documentation) +All Classes (Apache Tomcat 6.0.45 API Documentation) </TITLE> @@ -30,6 +30,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/catalina/users/AbstractGroup.html" title="class in org.apache.catalina.users" target="classFrame">AbstractGroup</A> <BR> +<A HREF="org/apache/coyote/http11/AbstractInputBuffer.html" title="class in org.apache.coyote.http11" target="classFrame">AbstractInputBuffer</A> +<BR> <A HREF="org/apache/tomcat/util/digester/AbstractObjectCreationFactory.html" title="class in org.apache.tomcat.util.digester" target="classFrame">AbstractObjectCreationFactory</A> <BR> <A HREF="org/apache/coyote/AbstractProtocol.html" title="class in org.apache.coyote" target="classFrame">AbstractProtocol</A> @@ -252,6 +254,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/catalina/startup/Bootstrap.html" title="class in org.apache.catalina.startup" target="classFrame">Bootstrap</A> <BR> +<A HREF="org/apache/tomcat/jni/Buffer.html" title="class in org.apache.tomcat.jni" target="classFrame">Buffer</A> +<BR> <A HREF="org/apache/coyote/http11/filters/BufferedInputFilter.html" title="class in org.apache.coyote.http11.filters" target="classFrame">BufferedInputFilter</A> <BR> <A HREF="org/apache/catalina/tribes/io/BufferPool.html" title="class in org.apache.catalina.tribes.io" target="classFrame">BufferPool</A> @@ -644,6 +648,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/jasper/EmbeddedServletOptions.html" title="class in org.apache.jasper" target="classFrame">EmbeddedServletOptions</A> <BR> +<A HREF="org/apache/naming/resources/EmptyDirContext.html" title="class in org.apache.naming.resources" target="classFrame">EmptyDirContext</A> +<BR> <A HREF="org/apache/tomcat/util/collections/EmptyEnumeration.html" title="class in org.apache.tomcat.util.collections" target="classFrame">EmptyEnumeration</A> <BR> <A HREF="org/apache/jasper/xmlparser/EncodingMap.html" title="class in org.apache.jasper.xmlparser" target="classFrame">EncodingMap</A> @@ -1064,6 +1070,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/tomcat/jni/Library.html" title="class in org.apache.tomcat.jni" target="classFrame">Library</A> <BR> +<A HREF="org/apache/tomcat/jni/LibraryNotFoundError.html" title="class in org.apache.tomcat.jni" target="classFrame">LibraryNotFoundError</A> +<BR> <A HREF="org/apache/catalina/Lifecycle.html" title="interface in org.apache.catalina" target="classFrame"><I>Lifecycle</I></A> <BR> <A HREF="org/apache/catalina/LifecycleEvent.html" title="class in org.apache.catalina" target="classFrame">LifecycleEvent</A> @@ -1358,6 +1366,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/tomcat/util/http/Parameters.html" title="class in org.apache.tomcat.util.http" target="classFrame">Parameters</A> <BR> +<A HREF="org/apache/tomcat/util/http/Parameters.FailReason.html" title="enum in org.apache.tomcat.util.http" target="classFrame">Parameters.FailReason</A> +<BR> <A HREF="org/apache/el/parser/ParseException.html" title="class in org.apache.el.parser" target="classFrame">ParseException</A> <BR> <A HREF="org/apache/tomcat/util/digester/ParserFeatureSetterFactory.html" title="class in org.apache.tomcat.util.digester" target="classFrame">ParserFeatureSetterFactory</A> @@ -1866,6 +1876,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/jasper/compiler/TextOptimizer.html" title="class in org.apache.jasper.compiler" target="classFrame">TextOptimizer</A> <BR> +<A HREF="org/apache/tomcat/jni/Thread.html" title="class in org.apache.tomcat.jni" target="classFrame">Thread</A> +<BR> <A HREF="org/apache/tomcat/util/threads/ThreadPool.html" title="class in org.apache.tomcat.util.threads" target="classFrame">ThreadPool</A> <BR> <A HREF="org/apache/tomcat/util/threads/ThreadPool.ControlRunnable.html" title="class in org.apache.tomcat.util.threads" target="classFrame">ThreadPool.ControlRunnable</A> Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-noframe.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-noframe.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-noframe.html (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-noframe.html Thu Feb 11 14:00:17 2016 @@ -4,7 +4,7 @@ <HEAD> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> -All Classes (Apache Tomcat 6.0.44 API Documentation) +All Classes (Apache Tomcat 6.0.45 API Documentation) </TITLE> @@ -30,6 +30,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/catalina/users/AbstractGroup.html" title="class in org.apache.catalina.users">AbstractGroup</A> <BR> +<A HREF="org/apache/coyote/http11/AbstractInputBuffer.html" title="class in org.apache.coyote.http11">AbstractInputBuffer</A> +<BR> <A HREF="org/apache/tomcat/util/digester/AbstractObjectCreationFactory.html" title="class in org.apache.tomcat.util.digester">AbstractObjectCreationFactory</A> <BR> <A HREF="org/apache/coyote/AbstractProtocol.html" title="class in org.apache.coyote">AbstractProtocol</A> @@ -252,6 +254,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/catalina/startup/Bootstrap.html" title="class in org.apache.catalina.startup">Bootstrap</A> <BR> +<A HREF="org/apache/tomcat/jni/Buffer.html" title="class in org.apache.tomcat.jni">Buffer</A> +<BR> <A HREF="org/apache/coyote/http11/filters/BufferedInputFilter.html" title="class in org.apache.coyote.http11.filters">BufferedInputFilter</A> <BR> <A HREF="org/apache/catalina/tribes/io/BufferPool.html" title="class in org.apache.catalina.tribes.io">BufferPool</A> @@ -644,6 +648,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/jasper/EmbeddedServletOptions.html" title="class in org.apache.jasper">EmbeddedServletOptions</A> <BR> +<A HREF="org/apache/naming/resources/EmptyDirContext.html" title="class in org.apache.naming.resources">EmptyDirContext</A> +<BR> <A HREF="org/apache/tomcat/util/collections/EmptyEnumeration.html" title="class in org.apache.tomcat.util.collections">EmptyEnumeration</A> <BR> <A HREF="org/apache/jasper/xmlparser/EncodingMap.html" title="class in org.apache.jasper.xmlparser">EncodingMap</A> @@ -1064,6 +1070,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/tomcat/jni/Library.html" title="class in org.apache.tomcat.jni">Library</A> <BR> +<A HREF="org/apache/tomcat/jni/LibraryNotFoundError.html" title="class in org.apache.tomcat.jni">LibraryNotFoundError</A> +<BR> <A HREF="org/apache/catalina/Lifecycle.html" title="interface in org.apache.catalina"><I>Lifecycle</I></A> <BR> <A HREF="org/apache/catalina/LifecycleEvent.html" title="class in org.apache.catalina">LifecycleEvent</A> @@ -1358,6 +1366,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/tomcat/util/http/Parameters.html" title="class in org.apache.tomcat.util.http">Parameters</A> <BR> +<A HREF="org/apache/tomcat/util/http/Parameters.FailReason.html" title="enum in org.apache.tomcat.util.http">Parameters.FailReason</A> +<BR> <A HREF="org/apache/el/parser/ParseException.html" title="class in org.apache.el.parser">ParseException</A> <BR> <A HREF="org/apache/tomcat/util/digester/ParserFeatureSetterFactory.html" title="class in org.apache.tomcat.util.digester">ParserFeatureSetterFactory</A> @@ -1866,6 +1876,8 @@ All Classes (Apache Tomcat 6.0.44 API Do <BR> <A HREF="org/apache/jasper/compiler/TextOptimizer.html" title="class in org.apache.jasper.compiler">TextOptimizer</A> <BR> +<A HREF="org/apache/tomcat/jni/Thread.html" title="class in org.apache.tomcat.jni">Thread</A> +<BR> <A HREF="org/apache/tomcat/util/threads/ThreadPool.html" title="class in org.apache.tomcat.util.threads">ThreadPool</A> <BR> <A HREF="org/apache/tomcat/util/threads/ThreadPool.ControlRunnable.html" title="class in org.apache.tomcat.util.threads">ThreadPool.ControlRunnable</A> Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/api/constant-values.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/constant-values.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/api/constant-values.html (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/constant-values.html Thu Feb 11 14:00:17 2016 @@ -4,7 +4,7 @@ <HEAD> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> -Constant Field Values (Apache Tomcat 6.0.44 API Documentation) +Constant Field Values (Apache Tomcat 6.0.45 API Documentation) </TITLE> @@ -13,7 +13,7 @@ Constant Field Values (Apache Tomcat 6.0 <SCRIPT type="text/javascript"> function windowTitle() { - parent.document.title="Constant Field Values (Apache Tomcat 6.0.44 API Documentation)"; + parent.document.title="Constant Field Values (Apache Tomcat 6.0.45 API Documentation)"; } </SCRIPT> <NOSCRIPT> @@ -44,7 +44,7 @@ function windowTitle() </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> -<b>Apache Tomcat 6.0.44</b></EM> +<b>Apache Tomcat 6.0.45</b></EM> </TD> </TR> @@ -176,6 +176,18 @@ org.apache.*</FONT></TH> <TD ALIGN="right"><CODE>"org.apache.catalina.deploy.alt_dd"</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.catalina.Globals.CATALINA_BASE_PROP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final java.lang.String</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/catalina/Globals.html#CATALINA_BASE_PROP">CATALINA_BASE_PROP</A></CODE></TD> +<TD ALIGN="right"><CODE>"catalina.base"</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.catalina.Globals.CATALINA_HOME_PROP"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final java.lang.String</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/catalina/Globals.html#CATALINA_HOME_PROP">CATALINA_HOME_PROP</A></CODE></TD> +<TD ALIGN="right"><CODE>"catalina.home"</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.catalina.Globals.CERTIFICATES_ATTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final java.lang.String</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/catalina/Globals.html#CERTIFICATES_ATTR">CERTIFICATES_ATTR</A></CODE></TD> @@ -356,6 +368,12 @@ org.apache.*</FONT></TH> <TD ALIGN="right"><CODE>"org.apache.catalina.parameter_parse_failed"</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.catalina.Globals.PARAMETER_PARSE_FAILED_REASON_ATTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final java.lang.String</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/catalina/Globals.html#PARAMETER_PARSE_FAILED_REASON_ATTR">PARAMETER_PARSE_FAILED_REASON_ATTR</A></CODE></TD> +<TD ALIGN="right"><CODE>"org.apache.catalina.parameter_parse_failed_reason"</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.catalina.Globals.RESOURCES_ATTR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final java.lang.String</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/catalina/Globals.html#RESOURCES_ATTR">RESOURCES_ATTR</A></CODE></TD> @@ -1088,6 +1106,12 @@ org.apache.*</FONT></TH> <TH ALIGN="left" COLSPAN="3">org.apache.catalina.core.<A HREF="org/apache/catalina/core/AprLifecycleListener.html" title="class in org.apache.catalina.core">AprLifecycleListener</A></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.catalina.core.AprLifecycleListener.TCN_RECOMMENDED_MINOR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>protected static final int</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/catalina/core/AprLifecycleListener.html#TCN_RECOMMENDED_MINOR">TCN_RECOMMENDED_MINOR</A></CODE></TD> +<TD ALIGN="right"><CODE>1</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.catalina.core.AprLifecycleListener.TCN_RECOMMENDED_PV"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>protected static final int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/catalina/core/AprLifecycleListener.html#TCN_RECOMMENDED_PV">TCN_RECOMMENDED_PV</A></CODE></TD> @@ -1811,7 +1835,7 @@ org.apache.*</FONT></TH> <A NAME="org.apache.catalina.manager.Constants.HTML_TAIL_SECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final java.lang.String</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/catalina/manager/Constants.html#HTML_TAIL_SECTION">HTML_TAIL_SECTION</A></CODE></TD> -<TD ALIGN="right"><CODE>"<hr size=\"1\" noshade=\"noshade\">\n<center><font size=\"-1\" color=\"#525D76\">\n <em>Copyright &copy; 1999-2015, Apache Software Foundation</em></font></center>\n\n</body>\n</html>"</CODE></TD> +<TD ALIGN="right"><CODE>"<hr size=\"1\" noshade=\"noshade\">\n<center><font size=\"-1\" color=\"#525D76\">\n <em>Copyright &copy; 1999-2016, Apache Software Foundation</em></font></center>\n\n</body>\n</html>"</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.catalina.manager.Constants.MANAGER_SECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> @@ -1913,7 +1937,7 @@ org.apache.*</FONT></TH> <A NAME="org.apache.catalina.manager.host.Constants.HTML_TAIL_SECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final java.lang.String</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/catalina/manager/host/Constants.html#HTML_TAIL_SECTION">HTML_TAIL_SECTION</A></CODE></TD> -<TD ALIGN="right"><CODE>"<hr size=\"1\" noshade=\"noshade\">\n<center><font size=\"-1\" color=\"#525D76\">\n <em>Copyright &copy; 1999-2015, Apache Software Foundation</em></font></center>\n\n</body>\n</html>"</CODE></TD> +<TD ALIGN="right"><CODE>"<hr size=\"1\" noshade=\"noshade\">\n<center><font size=\"-1\" color=\"#525D76\">\n <em>Copyright &copy; 1999-2016, Apache Software Foundation</em></font></center>\n\n</body>\n</html>"</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.catalina.manager.host.Constants.MANAGER_SECTION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> @@ -7679,6 +7703,24 @@ org.apache.*</FONT></TH> <TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> +<TH ALIGN="left" COLSPAN="3">org.apache.tomcat.jni.<A HREF="org/apache/tomcat/jni/Address.html" title="class in org.apache.tomcat.jni">Address</A></TH> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.tomcat.jni.Address.APR_ANYADDR"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final java.lang.String</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/Address.html#APR_ANYADDR">APR_ANYADDR</A></CODE></TD> +<TD ALIGN="right"><CODE>"0.0.0.0"</CODE></TD> +</TR> +</FONT></TD> +</TR> +</TABLE> + +<P> + +<P> + +<TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> +<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="3">org.apache.tomcat.jni.<A HREF="org/apache/tomcat/jni/File.html" title="class in org.apache.tomcat.jni">File</A></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> @@ -9272,6 +9314,12 @@ org.apache.*</FONT></TH> <TD ALIGN="right"><CODE>4095</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.tomcat.jni.SSL.SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final int</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION">SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION</A></CODE></TD> +<TD ALIGN="right"><CODE>262144</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.tomcat.jni.SSL.SSL_OP_CIPHER_SERVER_PREFERENCE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_CIPHER_SERVER_PREFERENCE">SSL_OP_CIPHER_SERVER_PREFERENCE</A></CODE></TD> @@ -9356,12 +9404,30 @@ org.apache.*</FONT></TH> <TD ALIGN="right"><CODE>33554432</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.tomcat.jni.SSL.SSL_OP_NO_TICKET"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final int</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_NO_TICKET">SSL_OP_NO_TICKET</A></CODE></TD> +<TD ALIGN="right"><CODE>16384</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.tomcat.jni.SSL.SSL_OP_NO_TLSv1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_NO_TLSv1">SSL_OP_NO_TLSv1</A></CODE></TD> <TD ALIGN="right"><CODE>67108864</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.tomcat.jni.SSL.SSL_OP_NO_TLSv1_1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final int</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_NO_TLSv1_1">SSL_OP_NO_TLSv1_1</A></CODE></TD> +<TD ALIGN="right"><CODE>268435456</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.tomcat.jni.SSL.SSL_OP_NO_TLSv1_2"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final int</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_NO_TLSv1_2">SSL_OP_NO_TLSv1_2</A></CODE></TD> +<TD ALIGN="right"><CODE>134217728</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.tomcat.jni.SSL.SSL_OP_PKCS1_CHECK_1"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_PKCS1_CHECK_1">SSL_OP_PKCS1_CHECK_1</A></CODE></TD> @@ -9380,6 +9446,12 @@ org.apache.*</FONT></TH> <TD ALIGN="right"><CODE>1048576</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<A NAME="org.apache.tomcat.jni.SSL.SSL_OP_SINGLE_ECDH_USE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> +<CODE>public static final int</CODE></FONT></TD> +<TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_SINGLE_ECDH_USE">SSL_OP_SINGLE_ECDH_USE</A></CODE></TD> +<TD ALIGN="right"><CODE>524288</CODE></TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.tomcat.jni.SSL.SSL_OP_SSLEAY_080_CLIENT_DH_BUG"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_SSLEAY_080_CLIENT_DH_BUG">SSL_OP_SSLEAY_080_CLIENT_DH_BUG</A></CODE></TD> @@ -9461,7 +9533,7 @@ org.apache.*</FONT></TH> <A NAME="org.apache.tomcat.jni.SSL.SSL_PROTOCOL_ALL"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> <CODE>public static final int</CODE></FONT></TD> <TD ALIGN="left"><CODE><A HREF="org/apache/tomcat/jni/SSL.html#SSL_PROTOCOL_ALL">SSL_PROTOCOL_ALL</A></CODE></TD> -<TD ALIGN="right"><CODE>4</CODE></TD> +<TD ALIGN="right"><CODE>28</CODE></TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <A NAME="org.apache.tomcat.jni.SSL.SSL_PROTOCOL_NONE"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1"> @@ -10663,7 +10735,7 @@ org.apache.*</FONT></TH> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> -<b>Apache Tomcat 6.0.44</b></EM> +<b>Apache Tomcat 6.0.45</b></EM> </TD> </TR> @@ -10693,6 +10765,6 @@ org.apache.*</FONT></TH> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> -Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved. +Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved. </BODY> </HTML> Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/api/deprecated-list.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/deprecated-list.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/api/deprecated-list.html (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/deprecated-list.html Thu Feb 11 14:00:17 2016 @@ -4,7 +4,7 @@ <HEAD> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> -Deprecated List (Apache Tomcat 6.0.44 API Documentation) +Deprecated List (Apache Tomcat 6.0.45 API Documentation) </TITLE> @@ -13,7 +13,7 @@ Deprecated List (Apache Tomcat 6.0.44 AP <SCRIPT type="text/javascript"> function windowTitle() { - parent.document.title="Deprecated List (Apache Tomcat 6.0.44 API Documentation)"; + parent.document.title="Deprecated List (Apache Tomcat 6.0.45 API Documentation)"; } </SCRIPT> <NOSCRIPT> @@ -44,7 +44,7 @@ function windowTitle() </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> -<b>Apache Tomcat 6.0.44</b></EM> +<b>Apache Tomcat 6.0.45</b></EM> </TD> </TR> @@ -179,6 +179,12 @@ function windowTitle() <I>- Use getDefaultResolver(). Needs to be made private</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/ManagerBase.html#distributable">org.apache.catalina.session.ManagerBase.distributable</A> +<BR> + <I>Ignored. <A HREF="org/apache/catalina/Context.html#getDistributable()"><CODE>Context.getDistributable()</CODE></A> always takes + precedence. Will be removed in Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/jasper/Constants.html#ESC">org.apache.jasper.Constants.ESC</A> <BR> <I></I> </TD> @@ -189,16 +195,43 @@ function windowTitle() <I></I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/StandardSession.html#excludedAttributes">org.apache.catalina.session.StandardSession.excludedAttributes</A> +<BR> + <I>Use <A HREF="org/apache/catalina/session/Constants.html#excludedAttributeNames"><CODE>Constants.excludedAttributeNames</CODE></A> instead. Will be + removed in Tomcat 9.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/tomcat/util/digester/Digester.html#JAXP_SCHEMA_LANGUAGE">org.apache.tomcat.util.digester.Digester.JAXP_SCHEMA_LANGUAGE</A> <BR> <I>This is now managed by <A HREF="org/apache/tomcat/util/digester/ParserFeatureSetterFactory.html" title="class in org.apache.tomcat.util.digester"><CODE>ParserFeatureSetterFactory</CODE></A></I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/ManagerBase.html#maxInactiveInterval">org.apache.catalina.session.ManagerBase.maxInactiveInterval</A> +<BR> + <I>Ignored. <A HREF="org/apache/catalina/Context.html#getSessionTimeout()"><CODE>Context.getSessionTimeout()</CODE></A> always takes + precedence. Will be removed in Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/startup/ContextConfig.html#parseException">org.apache.catalina.startup.ContextConfig.parseException</A> <BR> <I>Unused. Will be removed in Tomcat 7.0.x.</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_PKCS1_CHECK_1">org.apache.tomcat.jni.SSL.SSL_OP_PKCS1_CHECK_1</A> +<BR> + <I>Unsupported in the current version of OpenSSL</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/tomcat/jni/SSL.html#SSL_OP_PKCS1_CHECK_2">org.apache.tomcat.jni.SSL.SSL_OP_PKCS1_CHECK_2</A> +<BR> + <I>Unsupported in the current version of OpenSSL</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/core/AprLifecycleListener.html#sslAvailable">org.apache.catalina.core.AprLifecycleListener.sslAvailable</A> +<BR> + </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/jasper/xmlparser/ParserUtils.html#validating">org.apache.jasper.xmlparser.ParserUtils.validating</A> <BR> <I>Unused. Will be removed in Tomcat 7. @@ -224,6 +257,12 @@ function windowTitle() <B>Deprecated Methods</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/tomcat/util/http/mapper/Mapper.html#addContext(java.lang.String, java.lang.String, java.lang.Object, java.lang.String[], javax.naming.Context)">org.apache.tomcat.util.http.mapper.Mapper.addContext(String, String, Object, String[], Context)</A> +<BR> + <I>Use <A HREF="org/apache/tomcat/util/http/mapper/Mapper.html#addContext(java.lang.String, java.lang.String, java.lang.Object, java.lang.String[], javax.naming.Context, boolean, boolean)"><CODE>Mapper.addContext(String, String, Object, String[], + javax.naming.Context, boolean, boolean)</CODE></A></I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/tomcat/util/digester/Rule.html#begin(org.xml.sax.Attributes)">org.apache.tomcat.util.digester.Rule.begin(Attributes)</A> <BR> <I>Use the <A HREF="org/apache/tomcat/util/digester/Rule.html#begin(java.lang.String, java.lang.String, org.xml.sax.Attributes)"><CODE>begin</CODE></A> @@ -296,11 +335,22 @@ function windowTitle() <code>namespace</code> and <code>name</code> parameters instead.</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/StandardSession.html#exclude(java.lang.String)">org.apache.catalina.session.StandardSession.exclude(String)</A> +<BR> + <I>Use <A HREF="org/apache/catalina/session/StandardSession.html#exclude(java.lang.String, java.lang.Object)"><CODE>StandardSession.exclude(String, Object)</CODE></A>. Will be removed in + Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/startup/ExpandWar.html#expand(java.io.InputStream, java.io.File, java.lang.String)">org.apache.catalina.startup.ExpandWar.expand(InputStream, File, String)</A> <BR> <I></I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/tomcat/jni/SSL.html#generateRSATempKey(int)">org.apache.tomcat.jni.SSL.generateRSATempKey(int)</A> +<BR> + <I>Only useful in combination with EXPORT Cipher</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/connector/Connector.html#getBufferSize()">org.apache.catalina.connector.Connector.getBufferSize()</A> <BR> <I></I> </TD> @@ -322,11 +372,27 @@ function windowTitle() JULI; see the documentation for that library for more information.</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/Manager.html#getDistributable()">org.apache.catalina.Manager.getDistributable()</A> +<BR> + <I>Ignored. <A HREF="org/apache/catalina/Context.html#getDistributable()"><CODE>Context.getDistributable()</CODE></A> always takes + precedence. Will be removed in Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/ManagerBase.html#getDistributable()">org.apache.catalina.session.ManagerBase.getDistributable()</A> +<BR> + </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/naming/resources/ResourceAttributes.html#getETag(boolean)">org.apache.naming.resources.ResourceAttributes.getETag(boolean)</A> <BR> <I></I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/ManagerBase.html#getInfo()">org.apache.catalina.session.ManagerBase.getInfo()</A> +<BR> + </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/jasper/JspC.html#getJspCompilerPath()">org.apache.jasper.JspC.getJspCompilerPath()</A> <BR> <I>Removed in Tomcat 7</I> </TD> @@ -352,6 +418,12 @@ function windowTitle() <I>use getManagerTemplate().getClass().getName() instead.</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/Manager.html#getMaxInactiveInterval()">org.apache.catalina.Manager.getMaxInactiveInterval()</A> +<BR> + <I>Ignored. <A HREF="org/apache/catalina/Context.html#getSessionTimeout()"><CODE>Context.getSessionTimeout()</CODE></A> always takes + precedence. Will be removed in Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/tribes/membership/McastService.html#getMcastAddr()">org.apache.catalina.tribes.membership.McastService.getMcastAddr()</A> <BR> <I>use getAddress</I> </TD> @@ -464,6 +536,12 @@ function windowTitle() <I>This method has been deprecated with no replacement</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/ha/session/ClusterManagerBase.html#getSessionAttributeFilter()">org.apache.catalina.ha.session.ClusterManagerBase.getSessionAttributeFilter()</A> +<BR> + <I>Use <A HREF="org/apache/catalina/session/ManagerBase.html#getSessionAttributeNameFilter()"><CODE>ManagerBase.getSessionAttributeNameFilter()</CODE></A>. Will be removed + in Tomcat 9.0.x</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/session/StandardSession.html#getSessionContext()">org.apache.catalina.session.StandardSession.getSessionContext()</A> <BR> <I>As of Version 2.1, this method is deprecated and has no @@ -570,6 +648,11 @@ function windowTitle() <I></I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/tomcat/jni/SSL.html#loadDSATempKey(int, java.lang.String)">org.apache.tomcat.jni.SSL.loadDSATempKey(int, String)</A> +<BR> + <I>Now automatically loaded from certificate file</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/tomcat/util/modeler/Registry.html#loadRegistry(java.io.InputStream)">org.apache.tomcat.util.modeler.Registry.loadRegistry(InputStream)</A> <BR> <I>use normal class method instead</I> </TD> @@ -705,6 +788,17 @@ function windowTitle() uses JULI; see the documentation for that library for more information.</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/Manager.html#setDistributable(boolean)">org.apache.catalina.Manager.setDistributable(boolean)</A> +<BR> + <I>Ignored. <A HREF="org/apache/catalina/Context.html#getDistributable()"><CODE>Context.getDistributable()</CODE></A> always takes + precedence. Will be removed in Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/ManagerBase.html#setDistributable(boolean)">org.apache.catalina.session.ManagerBase.setDistributable(boolean)</A> +<BR> + </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/naming/resources/ResourceAttributes.html#setLastModified(java.util.Date)">org.apache.naming.resources.ResourceAttributes.setLastModified(Date)</A> <BR> <I></I> </TD> @@ -715,6 +809,17 @@ function windowTitle() <I>use nested <Manager> element inside the cluster config instead.</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/Manager.html#setMaxInactiveInterval(int)">org.apache.catalina.Manager.setMaxInactiveInterval(int)</A> +<BR> + <I>Ignored. <A HREF="org/apache/catalina/Context.html#getSessionTimeout()"><CODE>Context.getSessionTimeout()</CODE></A> always takes + precedence. Will be removed in Tomcat 9.0.x.</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/session/ManagerBase.html#setMaxInactiveInterval(int)">org.apache.catalina.session.ManagerBase.setMaxInactiveInterval(int)</A> +<BR> + </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/tribes/membership/McastService.html#setMcastAddr(java.lang.String)">org.apache.catalina.tribes.membership.McastService.setMcastAddr(String)</A> <BR> <I>use setAddress</I> </TD> @@ -761,6 +866,12 @@ function windowTitle() was used as a workaround</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/ha/session/ClusterManagerBase.html#setSessionAttributeFilter(java.lang.String)">org.apache.catalina.ha.session.ClusterManagerBase.setSessionAttributeFilter(String)</A> +<BR> + <I>Use <A HREF="org/apache/catalina/session/ManagerBase.html#setSessionAttributeNameFilter(java.lang.String)"><CODE>ManagerBase.setSessionAttributeNameFilter(String)</CODE></A>. Will be + removed in Tomcat 9.0.x</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/connector/Response.html#setStatus(int, java.lang.String)">org.apache.catalina.connector.Response.setStatus(int, String)</A> <BR> <I>As of Version 2.1 of the Java Servlet API, this method @@ -835,6 +946,12 @@ function windowTitle() <I>now delegated to the org.apache.el Package</I> </TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> +<TD><A HREF="org/apache/catalina/ha/session/ClusterManagerBase.html#willAttributeDistribute(java.lang.String)">org.apache.catalina.ha.session.ClusterManagerBase.willAttributeDistribute(String)</A> +<BR> + <I>Use <A HREF="org/apache/catalina/session/ManagerBase.html#willAttributeDistribute(java.lang.String, java.lang.Object)"><CODE>ManagerBase.willAttributeDistribute(String, Object)</CODE></A>. Will be + removed in Tomcat 9.0.x</I> </TD> +</TR> +<TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="org/apache/catalina/tribes/tipis/AbstractReplicatedMap.MapMessage.html#writeMembers(java.io.ObjectOutput, org.apache.catalina.tribes.Member[])">org.apache.catalina.tribes.tipis.AbstractReplicatedMap.MapMessage.writeMembers(ObjectOutput, Member[])</A> <BR> <I>Unused - will be removed in 8.0.x</I> </TD> @@ -1048,7 +1165,7 @@ function windowTitle() </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> -<b>Apache Tomcat 6.0.44</b></EM> +<b>Apache Tomcat 6.0.45</b></EM> </TD> </TR> @@ -1078,6 +1195,6 @@ function windowTitle() <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> -Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved. +Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved. </BODY> </HTML> Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/api/help-doc.html URL: http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/help-doc.html?rev=1729834&r1=1729833&r2=1729834&view=diff ============================================================================== --- tomcat/site/trunk/docs/tomcat-6.0-doc/api/help-doc.html (original) +++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/help-doc.html Thu Feb 11 14:00:17 2016 @@ -4,7 +4,7 @@ <HEAD> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE> -API Help (Apache Tomcat 6.0.44 API Documentation) +API Help (Apache Tomcat 6.0.45 API Documentation) </TITLE> @@ -13,7 +13,7 @@ API Help (Apache Tomcat 6.0.44 API Docum <SCRIPT type="text/javascript"> function windowTitle() { - parent.document.title="API Help (Apache Tomcat 6.0.44 API Documentation)"; + parent.document.title="API Help (Apache Tomcat 6.0.45 API Documentation)"; } </SCRIPT> <NOSCRIPT> @@ -44,7 +44,7 @@ function windowTitle() </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> -<b>Apache Tomcat 6.0.44</b></EM> +<b>Apache Tomcat 6.0.45</b></EM> </TD> </TR> @@ -178,7 +178,7 @@ This help file applies to API documentat </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> -<b>Apache Tomcat 6.0.44</b></EM> +<b>Apache Tomcat 6.0.45</b></EM> </TD> </TR> @@ -208,6 +208,6 @@ This help file applies to API documentat <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> -Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved. +Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved. </BODY> </HTML> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org