JASPIC requirements for request and response wrapping

2016-02-11 Thread Mark Thomas
JASPIC requires that an authentication module can wrap the
HttpServletRequest and/or HttpServletResponse passed to it and that the
wrapped instances are passed to the application. This creates a problem
since the authenticators are implemented as Valves which pass Tomcat's
o.a.c.connector.[Request|Response] objects. Tomcat's objects implement
the Servlet spec interfaces so, as long as no wrapping occurs, all is fine.

There is a long standing enhancement request [1] for being able to use
wrapping with Valves. Rémy is -1 on implementing it.

I'd still like to support JASPIC but I do understand where Rémy is
coming from w.r.t. the risks of wrapping. With all that in mind I have
been thinking through different implementation options and I have
reached the point where I think it makes sense to set out the options as
I see them for discussion.

1. Give up on JASPIC.
   Pros: All the design / integration issues go away
 No performance risk
   Cons: We lose the opportunity for a simple OAuth / SAML solution

2. Don't support wrapping with JASPIC.
   Pros: All the design / integration issues go away
   Cons: Not specification compliant
 We don't know how much implementations rely on this

3. Switch the Valve interface to use HttpServletRequest and
   HttpServletResponse.
   Pros: Enables the use of the associated Wrapper classes
   Cons: Valves need access to the internals. ValveBase could
 provide utility methods for accessing the wrapped
 o.a.c.connector.[Request|Response] implementations
 Breaks existing custom Valves

4. Make o.a.c.connector.[Request|Response] interfaces and provide
   separate concrete implementations.
   Pros: No change to Valve interface
   Cons: JASPIC would need additional code to bridge between these
 interfaces and the HttpServlet.*Wrapper classes

5. Move JASPIC processing to the start of the FilterChain since it
   uses HttpServlet[Request|Response]
   Pros: No / minimal API changes for Tomcat
   Cons: Would result in authentication happening in multiple places.
 Would need to be very careful to ensure requests couldn't
 bypass authentication, particularly during JASPIC provider
 (de)registratiob
 JASPIC would end up duplciating a lot of the authorization
 code in AuthenticatorBase


Of all of these, I think 4 holds the most promise. The first step for
that option would be reducing the current public interface of
o.a.c.connector.[Request|Response] to the minimum that is required. From
a design point of view that is a good thing to do anyway so I plan to
work on that while these options are discussed. Even if we don't go for
option 4, the work would be entirely pointless.

If we do follow option 4 then the Javadoc will need updating to make it
very clear what is supported and what isn't. Generally, I think the
message needs to be "If you wrap these you are messing with Tomcat's
internals. Tread very, very carefully. Correct operation of Tomcat
depends on the correct behaviour of these methods. Before providing an
alternative implementation of any method you should review the standard
implementation and how the method is used."

Mark


[1] https://bz.apache.org/bugzilla/show_bug.cgi?id=45014

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



Re: JASPIC requirements for request and response wrapping

2016-02-11 Thread Rémy Maucherat
2016-02-11 12:59 GMT+01:00 Mark Thomas :

> JASPIC requires that an authentication module can wrap the
> HttpServletRequest and/or HttpServletResponse passed to it and that the
> wrapped instances are passed to the application. This creates a problem
> since the authenticators are implemented as Valves which pass Tomcat's
> o.a.c.connector.[Request|Response] objects. Tomcat's objects implement
> the Servlet spec interfaces so, as long as no wrapping occurs, all is fine.
>

Tomcat could simply use the already wrapped request/response later when
invoking the filter chain. It would be set on the MessageInfo, right ? In
that case, JASPIC should get Request.getRequest() and
Response.getResponse() as its request/response objects and the wrapped
request/response can go into two new fields in Request/Response. Would that
work ?

Honestly, whatever JASPIC would do with its wrapping is likely irrelevant
for the rest of the Cataline pipeline, so as long as the application sees
it it should be fine.

There is a long standing enhancement request [1] for being able to use
> wrapping with Valves. Rémy is -1 on implementing it.
>
> I'd still like to support JASPIC but I do understand where Rémy is
> coming from w.r.t. the risks of wrapping. With all that in mind I have
> been thinking through different implementation options and I have
> reached the point where I think it makes sense to set out the options as
> I see them for discussion.
>
> 1. Give up on JASPIC.
>Pros: All the design / integration issues go away
>  No performance risk
>Cons: We lose the opportunity for a simple OAuth / SAML solution
>
> 2. Don't support wrapping with JASPIC.
>Pros: All the design / integration issues go away
>Cons: Not specification compliant
>  We don't know how much implementations rely on this
>
> 3. Switch the Valve interface to use HttpServletRequest and
>HttpServletResponse.
>Pros: Enables the use of the associated Wrapper classes
>Cons: Valves need access to the internals. ValveBase could
>  provide utility methods for accessing the wrapped
>  o.a.c.connector.[Request|Response] implementations
>  Breaks existing custom Valves
>
> 4. Make o.a.c.connector.[Request|Response] interfaces and provide
>separate concrete implementations.
>Pros: No change to Valve interface
>Cons: JASPIC would need additional code to bridge between these
>  interfaces and the HttpServlet.*Wrapper classes
>
> 5. Move JASPIC processing to the start of the FilterChain since it
>uses HttpServlet[Request|Response]
>Pros: No / minimal API changes for Tomcat
>Cons: Would result in authentication happening in multiple places.
>  Would need to be very careful to ensure requests couldn't
>  bypass authentication, particularly during JASPIC provider
>  (de)registratiob
>  JASPIC would end up duplciating a lot of the authorization
>  code in AuthenticatorBase
>
>
> Of all of these, I think 4 holds the most promise. The first step for
> that option would be reducing the current public interface of
> o.a.c.connector.[Request|Response] to the minimum that is required. From
> a design point of view that is a good thing to do anyway so I plan to
> work on that while these options are discussed. Even if we don't go for
> option 4, the work would be entirely pointless.
>
> If we do follow option 4 then the Javadoc will need updating to make it
> very clear what is supported and what isn't. Generally, I think the
> message needs to be "If you wrap these you are messing with Tomcat's
> internals. Tread very, very carefully. Correct operation of Tomcat
> depends on the correct behaviour of these methods. Before providing an
> alternative implementation of any method you should review the standard
> implementation and how the method is used."
>
> Mark
>
>
> [1] https://bz.apache.org/bugzilla/show_bug.cgi?id=45014
>
> On the other proposed solutions:
1) Well, we did so much with this junk, it would be a problem to give up.
2) It should be properly supported.
3) Meh. OTOH it's probably just some unwrapping.
4) I think 3 is better.
5) Servlet 3 did a lot to move some auth to the application layer, so if
there's an auth step at this point, I don't think it is so horrible
conceptually.

So maybe I like 3 better if my comment at the beginning cannot work.

Rémy


[Bug 58988] $ escaping for rewrite

2016-02-11 Thread bugzilla
https://bz.apache.org/bugzilla/show_bug.cgi?id=58988

Remy Maucherat  changed:

   What|Removed |Added

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

--- Comment #3 from Remy Maucherat  ---
This looks fixed by r1729730

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



Re: JASPIC requirements for request and response wrapping

2016-02-11 Thread Mark Thomas
On 11/02/2016 12:34, Rémy Maucherat wrote:
> 2016-02-11 12:59 GMT+01:00 Mark Thomas :
> 
>> JASPIC requires that an authentication module can wrap the
>> HttpServletRequest and/or HttpServletResponse passed to it and that the
>> wrapped instances are passed to the application. This creates a problem
>> since the authenticators are implemented as Valves which pass Tomcat's
>> o.a.c.connector.[Request|Response] objects. Tomcat's objects implement
>> the Servlet spec interfaces so, as long as no wrapping occurs, all is fine.
>>
> 
> Tomcat could simply use the already wrapped request/response later when
> invoking the filter chain. It would be set on the MessageInfo, right ? In
> that case, JASPIC should get Request.getRequest() and
> Response.getResponse() as its request/response objects and the wrapped
> request/response can go into two new fields in Request/Response. Would that
> work ?

That could work yes. I did think of that option but I rejected as I was
concerned about having two versions of the request and response. On
reflection, the end result is essentially the same for this option or
either of options 3 or 4 so maybe this is the way to go.

> Honestly, whatever JASPIC would do with its wrapping is likely irrelevant
> for the rest of the Cataline pipeline, so as long as the application sees
> it it should be fine.
> 
> There is a long standing enhancement request [1] for being able to use
>> wrapping with Valves. Rémy is -1 on implementing it.
>>
>> I'd still like to support JASPIC but I do understand where Rémy is
>> coming from w.r.t. the risks of wrapping. With all that in mind I have
>> been thinking through different implementation options and I have
>> reached the point where I think it makes sense to set out the options as
>> I see them for discussion.
>>
>> 1. Give up on JASPIC.
>>Pros: All the design / integration issues go away
>>  No performance risk
>>Cons: We lose the opportunity for a simple OAuth / SAML solution
>>
>> 2. Don't support wrapping with JASPIC.
>>Pros: All the design / integration issues go away
>>Cons: Not specification compliant
>>  We don't know how much implementations rely on this
>>
>> 3. Switch the Valve interface to use HttpServletRequest and
>>HttpServletResponse.
>>Pros: Enables the use of the associated Wrapper classes
>>Cons: Valves need access to the internals. ValveBase could
>>  provide utility methods for accessing the wrapped
>>  o.a.c.connector.[Request|Response] implementations
>>  Breaks existing custom Valves
>>
>> 4. Make o.a.c.connector.[Request|Response] interfaces and provide
>>separate concrete implementations.
>>Pros: No change to Valve interface
>>Cons: JASPIC would need additional code to bridge between these
>>  interfaces and the HttpServlet.*Wrapper classes
>>
>> 5. Move JASPIC processing to the start of the FilterChain since it
>>uses HttpServlet[Request|Response]
>>Pros: No / minimal API changes for Tomcat
>>Cons: Would result in authentication happening in multiple places.
>>  Would need to be very careful to ensure requests couldn't
>>  bypass authentication, particularly during JASPIC provider
>>  (de)registratiob
>>  JASPIC would end up duplciating a lot of the authorization
>>  code in AuthenticatorBase
>>
>>
>> Of all of these, I think 4 holds the most promise. The first step for
>> that option would be reducing the current public interface of
>> o.a.c.connector.[Request|Response] to the minimum that is required. From
>> a design point of view that is a good thing to do anyway so I plan to
>> work on that while these options are discussed. Even if we don't go for
>> option 4, the work would be entirely pointless.
>>
>> If we do follow option 4 then the Javadoc will need updating to make it
>> very clear what is supported and what isn't. Generally, I think the
>> message needs to be "If you wrap these you are messing with Tomcat's
>> internals. Tread very, very carefully. Correct operation of Tomcat
>> depends on the correct behaviour of these methods. Before providing an
>> alternative implementation of any method you should review the standard
>> implementation and how the method is used."
>>
>> Mark
>>
>>
>> [1] https://bz.apache.org/bugzilla/show_bug.cgi?id=45014
>>
>> On the other proposed solutions:
> 1) Well, we did so much with this junk, it would be a problem to give up.
> 2) It should be properly supported.
> 3) Meh. OTOH it's probably just some unwrapping.
> 4) I think 3 is better.
> 5) Servlet 3 did a lot to move some auth to the application layer, so if
> there's an auth step at this point, I don't think it is so horrible
> conceptually.
> 
> So maybe I like 3 better if my comment at the beginning cannot work.

Breaking all the existing Valves was my main concern with 3. I think
your earlier comment can work so I'll go that route for now.

Thanks for the review.

Mark

-

svn commit: r12350 - /dev/tomcat/tomcat-6/v6.0.45/ /release/tomcat/tomcat-6/v6.0.45/

2016-02-11 Thread jfclere
Author: jfclere
Date: Thu Feb 11 13:15:27 2016
New Revision: 12350

Log:
Move to released location.

Added:
release/tomcat/tomcat-6/v6.0.45/
  - copied from r12349, dev/tomcat/tomcat-6/v6.0.45/
Removed:
dev/tomcat/tomcat-6/v6.0.45/


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



svn commit: r12351 - /release/tomcat/tomcat-6/README.html

2016-02-11 Thread jfclere
Author: jfclere
Date: Thu Feb 11 13:19:22 2016
New Revision: 12351

Log:
Adjust latest release.

Modified:
release/tomcat/tomcat-6/README.html

Modified: release/tomcat/tomcat-6/README.html
==
--- release/tomcat/tomcat-6/README.html (original)
+++ release/tomcat/tomcat-6/README.html Thu Feb 11 13:19:22 2016
@@ -1,5 +1,5 @@
 Apache Tomcat 6.0
 
-Current stable version is 6.0.39.
+Current stable version is 6.0.45.
 
 



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



svn commit: r1729822 - /tomcat/trunk/test/org/apache/catalina/startup/TestContextConfig.java

2016-02-11 Thread remm
Author: remm
Date: Thu Feb 11 13:28:12 2016
New Revision: 1729822

URL: http://svn.apache.org/viewvc?rev=1729822&view=rev
Log:
Remove weird test added in r1729742.

Modified:
tomcat/trunk/test/org/apache/catalina/startup/TestContextConfig.java

Modified: tomcat/trunk/test/org/apache/catalina/startup/TestContextConfig.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/catalina/startup/TestContextConfig.java?rev=1729822&r1=1729821&r2=1729822&view=diff
==
--- tomcat/trunk/test/org/apache/catalina/startup/TestContextConfig.java 
(original)
+++ tomcat/trunk/test/org/apache/catalina/startup/TestContextConfig.java Thu 
Feb 11 13:28:12 2016
@@ -34,7 +34,6 @@ import org.junit.Test;
 
 import org.apache.catalina.Context;
 import org.apache.catalina.core.StandardContext;
-import org.apache.catalina.core.StandardHost;
 import org.apache.tomcat.util.buf.ByteChunk;
 
 public class TestContextConfig extends TomcatBaseTest {
@@ -203,23 +202,4 @@ public class TestContextConfig extends T
 }
 }
 
-
-@Test
-public void testUser01() throws Exception {
-Tomcat tomcat = getTomcatInstance();
-StandardHost host = (StandardHost) tomcat.getHost();
-host.setUnpackWARs(true);
-host.setAutoDeploy(true);
-tomcat.start();
-
-
-StandardContext ctx = new StandardContext();
-ctx.setDocBase("D://test1");
-ctx.setPath("/test1");
-ctx.addLifecycleListener(new ContextConfig());
-
-host.addChild(ctx);
-
-System.out.println("done");
-}
 }



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



buildbot success in on tomcat-trunk

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

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

Buildslave for this Build: silvanus_ubuntu

Build Reason: The AnyBranchScheduler scheduler named 'on-tomcat-commit' 
triggered this build
Build Source Stamp: [branch tomcat/trunk] 1729822
Blamelist: remm

Build succeeded!

Sincerely,
 -The Buildbot




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



svn commit: r1729834 [1/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomcat

2016-02-11 Thread jfclere
Author: jfclere
Date: Thu Feb 11 14:00:17 2016
New Revision: 1729834

URL: http://svn.apache.org/viewvc?rev=1729834&view=rev
Log:
Release 6.0.45

Removed:

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/tomcat/util/log/UserDataHelper.Mode.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/tomcat/util/log/UserDataHelper.html
Modified:
tomcat/site/trunk/build.properties.default
tomcat/site/trunk/docs/download-60.html
tomcat/site/trunk/docs/index.html
tomcat/site/trunk/docs/tomcat-6.0-doc/BUILDING.txt
tomcat/site/trunk/docs/tomcat-6.0-doc/LICENSE
tomcat/site/trunk/docs/tomcat-6.0-doc/NOTICE
tomcat/site/trunk/docs/tomcat-6.0-doc/RELEASE-NOTES.txt
tomcat/site/trunk/docs/tomcat-6.0-doc/RUNNING.txt
tomcat/site/trunk/docs/tomcat-6.0-doc/aio.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-frame.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/allclasses-noframe.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/constant-values.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/deprecated-list.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/help-doc.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/index-all.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/index.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/AnnotationProcessor.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/PeriodicEventListener.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/AccessLog.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Authenticator.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Cluster.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/CometEvent.EventSubType.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/CometEvent.EventType.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/CometEvent.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/CometFilter.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/CometFilterChain.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/CometProcessor.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Contained.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Container.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ContainerEvent.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ContainerListener.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ContainerServlet.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Context.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Engine.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Executor.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Globals.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Group.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Host.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/InstanceEvent.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/InstanceListener.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Lifecycle.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/LifecycleEvent.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/LifecycleException.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/LifecycleListener.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Loader.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Manager.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Pipeline.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Realm.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Role.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Server.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ServerFactory.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Service.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Session.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionEvent.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionListener.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Store.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/User.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/UserDatabase.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Valve.html
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Wrapper.html

tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ant/AbstractCatalinaTask.html

svn commit: r1729834 [8/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomcat

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-frame.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-frame.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-frame.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-frame.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.filters (Apache Tomcat 6.0.44 API Documentation)
+org.apache.catalina.filters (Apache Tomcat 6.0.45 API Documentation)
 
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-summary.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-summary.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-summary.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-summary.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.filters (Apache Tomcat 6.0.44 API Documentation)
+org.apache.catalina.filters (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ org.apache.catalina.filters (Apache Tomc
 
 function windowTitle()
 {
-parent.document.title="org.apache.catalina.filters (Apache Tomcat 6.0.44 
API Documentation)";
+parent.document.title="org.apache.catalina.filters (Apache Tomcat 6.0.45 
API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -145,7 +145,7 @@ Package org.apache.catalina.filters
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -175,6 +175,6 @@ Package org.apache.catalina.filters
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-tree.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-tree.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-tree.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/filters/package-tree.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.filters Class Hierarchy (Apache Tomcat 6.0.44 API 
Documentation)
+org.apache.catalina.filters Class Hierarchy (Apache Tomcat 6.0.45 API 
Documentation)
 
 
 
@@ -13,7 +13,7 @@ org.apache.catalina.filters Class Hierar
 
 function windowTitle()
 {
-parent.document.title="org.apache.catalina.filters Class Hierarchy (Apache 
Tomcat 6.0.44 API Documentation)";
+parent.document.title="org.apache.catalina.filters Class Hierarchy (Apache 
Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -44,7 +44,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -123,7 +123,7 @@ Class Hierarchy
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -153,6 +153,6 @@ Class Hierarchy
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/CatalinaCluster.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/CatalinaCluster.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/CatalinaCluster.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/CatalinaCluster.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-CatalinaCluster (Apache Tomcat 6.0.44 API Documentation)
+CatalinaCluster (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ CatalinaCluster (Apache Tomcat 6.0.44 AP
 
 function windowTitle()
 {
-parent.document.title="CatalinaCluster (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="CatalinaCluster (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -675,7 +675,7 @@ getChannel
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -711,6 +711,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Founda

svn commit: r1729834 [2/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomcat

2016-02-11 Thread jfclere

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 @@
 Quick Navigation
 
 
-[define v]6.0.44[end]
+[define v]6.0.45[end]
 https://www.apache.org/dist/tomcat/tomcat-6/KEYS";>KEYS |
 [v] |
 Browse |

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.
 
 
 
-
-2015-05-12 Tomcat 6.0.44 Released
+
+2016-02-11 Tomcat 6.0.45 Released
 
 
 
-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:
 
 
   
-Update to Tomcat Native Library version 1.1.33 to pick up the Windows
-  binaries that are based on OpenSSL 1.0.1m.
+Update to Tomcat Native Library version 1.1.34.
 
 
 
@@ -459,7 +458,7 @@ Apache Tomcat. This release includes a n
 
 
 Download |
-ChangeLog for 6.0.44
+ChangeLog for 6.0.45
 
 
 

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 selecte

svn commit: r1729834 [7/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomcat

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/core/StandardContext.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/core/StandardContext.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/core/StandardContext.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/core/StandardContext.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-StandardContext (Apache Tomcat 6.0.44 API Documentation)
+StandardContext (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ StandardContext (Apache Tomcat 6.0.44 AP
 
 function windowTitle()
 {
-parent.document.title="StandardContext (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="StandardContext (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -1193,6 +1193,28 @@ Standard implementation of the Contex
 
 
 
+ boolean
+getMapperContextRootRedirectEnabled()
+
+
+  Determines if 
requests for a web application context root will be
+ redirected (adding a trailing slash) by the Mapper.
+ 
+ The default value for this implementation is false.
+
+
+
+ boolean
+getMapperDirectoryRedirectEnabled()
+
+
+  Determines if 
requests for a directory will be redirected (adding a
+ trailing slash) by the Mapper.
+ 
+ The default value for this implementation is false.
+
+
+
  NamingContextListener
 getNamingContextListener()
 
@@ -2214,6 +2236,24 @@ Standard implementation of the Contex
 
 
  void
+setMapperContextRootRedirectEnabled(boolean mapperContextRootRedirectEnabled)
+
+
+  If enabled, 
requests for a web application context root will be
+ redirected (adding a trailing slash) by the Mapper.
+
+
+
+ void
+setMapperDirectoryRedirectEnabled(boolean mapperDirectoryRedirectEnabled)
+
+
+  If enabled, 
requests for a directory will be redirected (adding a
+ trailing slash) by the Mapper.
+
+
+
+ void
 setName(java.lang.String name)
 
 
@@ -2663,6 +2703,90 @@ public StandardContext()
 
 
 
+
+setMapperContextRootRedirectEnabled
+
+public void 
setMapperContextRootRedirectEnabled(boolean mapperContextRootRedirectEnabled)
+
+Description copied from interface: Context
+If enabled, requests for a web application context root will be
+ redirected (adding a trailing slash) by the Mapper. This is more
+ efficient but has the side effect of confirming that the context path is
+ valid.
+
+
+Specified by:setMapperContextRootRedirectEnabled
 in interface Context
+
+
+Parameters:mapperContextRootRedirectEnabled - 
Should the redirects be enabled?
+
+
+
+
+
+getMapperContextRootRedirectEnabled
+
+public boolean getMapperContextRootRedirectEnabled()
+
+Determines if requests for a web application context root will be
+ redirected (adding a trailing slash) by the Mapper. This is more
+ efficient but has the side effect of confirming that the context path is
+ valid.
+ 
+ The default value for this implementation is false.
+
+
+Specified by:getMapperContextRootRedirectEnabled
 in interface Context
+
+
+
+Returns:true if the Mapper level redirect is 
enabled for this
+ Context.
+
+
+
+
+
+setMapperDirectoryRedirectEnabled
+
+public void 
setMapperDirectoryRedirectEnabled(boolean mapperDirectoryRedirectEnabled)
+
+Description copied from interface: Context
+If enabled, requests for a directory will be redirected (adding a
+ trailing slash) by the Mapper. This is more efficient but has the
+ side effect of confirming that the directory is valid.
+
+
+Specified by:setMapperDirectoryRedirectEnabled
 in interface Context
+
+
+Parameters:mapperDirectoryRedirectEnabled - Should 
the redirects be enabled?
+
+
+
+
+
+getMapperDirectoryRedirectEnabled
+
+public boolean getMapperDirectoryRedirectEnabled()
+
+Determines if requests for a directory will be redirected (adding a
+ trailing slash) by the Mapper. This is more efficient but has the
+ side effect of confirming that the directory is valid.
+ 
+ The default value for this implementation is false.
+
+
+Specified by:getMapperDirectoryRedirectEnabled
 in interface Context
+
+
+
+Returns:true if the Mapper level redirect is 
enabled for this
+ Context.
+
+
+
+
 
 getAnnotationProcessor
 
@@ -7201,7 +7325,7 @@ public boolean isStatisticsProvider
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -7237,6 +7361,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/core/StandardEngine.AccessLogListener.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/core/StandardEngine.AccessLogListen

svn commit: r1729834 [25/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.SocketOutputBuffer.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.SocketOutputBuffer.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.SocketOutputBuffer.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.SocketOutputBuffer.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-InternalAprOutputBuffer.SocketOutputBuffer (Apache Tomcat 6.0.44 API 
Documentation)
+InternalAprOutputBuffer.SocketOutputBuffer (Apache Tomcat 6.0.45 API 
Documentation)
 
 
 
@@ -14,7 +14,7 @@ InternalAprOutputBuffer.SocketOutputBuff
 
 function windowTitle()
 {
-parent.document.title="InternalAprOutputBuffer.SocketOutputBuffer (Apache 
Tomcat 6.0.44 API Documentation)";
+parent.document.title="InternalAprOutputBuffer.SocketOutputBuffer (Apache 
Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -229,7 +229,7 @@ public int doWrite(
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -265,6 +265,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalAprOutputBuffer.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-InternalAprOutputBuffer (Apache Tomcat 6.0.44 API Documentation)
+InternalAprOutputBuffer (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ InternalAprOutputBuffer (Apache Tomcat 6
 
 function windowTitle()
 {
-parent.document.title="InternalAprOutputBuffer (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="InternalAprOutputBuffer (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -1214,7 +1214,7 @@ protected void flushBuffer()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -1250,6 +1250,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.InputStreamInputBuffer.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.InputStreamInputBuffer.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.InputStreamInputBuffer.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.InputStreamInputBuffer.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-InternalInputBuffer.InputStreamInputBuffer (Apache Tomcat 6.0.44 API 
Documentation)
+InternalInputBuffer.InputStreamInputBuffer (Apache Tomcat 6.0.45 API 
Documentation)
 
 
 
@@ -14,7 +14,7 @@ InternalInputBuffer.InputStreamInputBuff
 
 function windowTitle()
 {
-parent.document.title="InternalInputBuffer.InputStreamInputBuffer (Apache 
Tomcat 6.0.44 API Documentation)";
+parent.document.title="InternalInputBuffer.InputStreamInputBuffer (Apache 
Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -229,7 +229,7 @@ public int doRead(
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -265,6 +265,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/http11/InternalInputBuffer.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-InternalInputBuffer (Apache Tomcat 6.0.44 API Documentation)
+InternalInputBuffer (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ InternalInputBuffer (Apache Tomcat 6.0.4
 
 function windowTitle()
 {
-parent.document.title="InternalInputBuffer (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.do

svn commit: r1729834 [24/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionCode.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionCode.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionCode.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionCode.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ActionCode (Apache Tomcat 6.0.44 API Documentation)
+ActionCode (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ActionCode (Apache Tomcat 6.0.44 API Doc
 
 function windowTitle()
 {
-parent.document.title="ActionCode (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ActionCode (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -699,7 +699,7 @@ public int getCode()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -735,6 +735,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionHook.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionHook.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionHook.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/ActionHook.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ActionHook (Apache Tomcat 6.0.44 API Documentation)
+ActionHook (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ActionHook (Apache Tomcat 6.0.44 API Doc
 
 function windowTitle()
 {
-parent.document.title="ActionHook (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ActionHook (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -185,7 +185,7 @@ void action(
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -221,6 +221,6 @@ DETAIL: FIELD | CONSTR&nb
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Adapter.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Adapter.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Adapter.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Adapter.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-Adapter (Apache Tomcat 6.0.44 API Documentation)
+Adapter (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ Adapter (Apache Tomcat 6.0.44 API Docume
 
 function windowTitle()
 {
-parent.document.title="Adapter (Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="Adapter (Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -237,7 +237,7 @@ void log(
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -273,6 +273,6 @@ DETAIL: FIELD | CONSTR&nb
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Constants.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Constants.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Constants.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/Constants.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-Constants (Apache Tomcat 6.0.44 API Documentation)
+Constants (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ Constants (Apache Tomcat 6.0.44 API Docu
 
 function windowTitle()
 {
-parent.document.title="Constants (Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="Constants (Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -544,7 +544,7 @@ public Constants()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -580,6 +580,6 @@ DETAIL: FIE
 
 
 
-Copyrigh

svn commit: r1729834 [16/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManager.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManager.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManager.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManager.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-PersistentManager (Apache Tomcat 6.0.44 API Documentation)
+PersistentManager (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ PersistentManager (Apache Tomcat 6.0.44
 
 function windowTitle()
 {
-parent.document.title="PersistentManager (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="PersistentManager (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -243,7 +243,7 @@ Implementation of the Manager int
 Methods inherited from class 
org.apache.catalina.session.ManagerBase
 
 
-add,
 addPropertyChangeListener,
 backgroundProcess,
 changeSessionId,
 createEmptySession,
 createSession,
 createSession,
 destroy,
 expireSession, findSessions,
 generateSessionId,
 getActiveSessions,
 getAlgorithm,
 getClassName,
 getContainer,
 getCreationTime,
 getCreationTimestamp,
 getDigest, getDistributable,
 getDomain,
 getDuplicates,
 getEngine,
 getEntropy,
 getExpiredSessions,
 getJvmRoute,
 getLastAccessedTime,
 getLastAccessedTim
 estamp, getMaxActive,
 getMaxInactiveInterval,
 getNewSession,
 getObjectName,
 getProcessExpiresFrequency,
 getProcessingTime,
 getRandom,
 getRandomBytes,
 getRandomClass,
 getRandomFile,
 getSession,
 getSessionAttribute, getSessionAverageAliveTime,
 getSessionCounter,
 getSessionCreateRate,
 getSessionExpireRate,
 getSessionIdLength,
 getSessionMaxAliveTime, init,
 listSessionIds,
 postDeregister,
 postRegister,
 preDeregister,
 preRegister, removePropertyChangeListener,
 setAlgorithm
 , setDistributable,
 setDuplicates,
 setEntropy,
 setExpiredSessions,
 setMaxActive,
 setMaxInactiveInterval,
 setProcessExpiresFrequency,
 setProcessingTime,
 setRandomClass, setRandomFile,
 setSessionAverageAliveTime,
 setSessionCounter,
 setSessionIdLength,
 setSessionMaxAliveTime
+add,
 addPropertyChangeListener,
 backgroundProcess,
 changeSessionId,
 createEmptySession,
 createSession,
 createSession,
 destroy,
 expireSession, findSessions,
 generateSessionId,
 getActiveSessions,
 getAlgorithm,
 getClassName,
 getContainer,
 getCreationTime,
 getCreationTimestamp,
 getDigest, getDistributable,
 getDomain,
 getDuplicates,
 getEngine,
 getEntropy,
 getExpiredSessions,
 getJvmRoute,
 getLastAccessedTime,
 getLastAccessedTim
 estamp, getMaxActive,
 getMaxInactiveInterval,
 getNewSession,
 getObjectName,
 getProcessExpiresFrequency,
 getProcessingTime,
 getRandom,
 getRandomBytes,
 getRandomClass,
 getRandomFile,
 getSession,
 getSessionAttribute, getSessionAttributeNameFilter,
 getSessionAttributeNamePattern,
 getSessionAttributeValueClassNameFilter,
 getSessionAttributeValueClassNamePattern,
 getSessionAverageAliveTime, getSessionCounter,
 getSessionCreateRate,
 getSessionExpireRate,
 getSessionIdLength,
 getSessionMaxAliveTime,
 getWarnOnSessionAttributeFilterFailure,
 init,
 listSessionIds,
 postDeregister, 
postRegister,
 preDeregister,
 preRegister, removePropertyChangeListener,
 setAlgorithm,
 setDistributable,
 setDuplicates,
 setEntropy, setExpiredSessions,
 setMaxActive,
 setMaxInactiveInterval,
 setProcessExpiresFrequency,
 setProcessingTime,
 setRandomClass,
 setRandomFile,
 setSessionAttributeNameFilter, setSessionAttributeValueClassNameFilter,
 setSessionAverageAliveTime,
 setSessionCounter,
 setSessionIdLength,
 setSessionMaxAliveTime,
 setWarnOnSessionAttributeFilterFailure,
 willAttribute
 Distribute
 
 
  
@@ -335,7 +335,8 @@ public java.lang.String getName()
 Overrides:getName
 in class PersistentManagerBase
 
 
-
+
+Returns:The descriptive short name of this Manager 
implementation.
 
 
 
@@ -362,7 +363,7 @@ public java.lang.String getName()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -398,6 +399,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManagerBase.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManagerBase.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/session/PersistentManagerBase.html
 (origina

svn commit: r1729834 [17/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionParseTree.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionParseTree.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionParseTree.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionParseTree.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ExpressionParseTree (Apache Tomcat 6.0.44 API Documentation)
+ExpressionParseTree (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ExpressionParseTree (Apache Tomcat 6.0.4
 
 function windowTitle()
 {
-parent.document.title="ExpressionParseTree (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ExpressionParseTree (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -226,7 +226,7 @@ public boolean evaluateTree()
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -262,6 +262,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionTokenizer.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionTokenizer.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ExpressionTokenizer.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ExpressionTokenizer (Apache Tomcat 6.0.44 API Documentation)
+ExpressionTokenizer (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ExpressionTokenizer (Apache Tomcat 6.0.4
 
 function windowTitle()
 {
-parent.document.title="ExpressionTokenizer (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ExpressionTokenizer (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -557,7 +557,7 @@ public java.lang.String getTokenValue
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -593,6 +593,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ResponseIncludeWrapper.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ResponseIncludeWrapper.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ResponseIncludeWrapper.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/ResponseIncludeWrapper.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ResponseIncludeWrapper (Apache Tomcat 6.0.44 API Documentation)
+ResponseIncludeWrapper (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ResponseIncludeWrapper (Apache Tomcat 6.
 
 function windowTitle()
 {
-parent.document.title="ResponseIncludeWrapper (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ResponseIncludeWrapper (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -652,7 +652,7 @@ public void setHeader(java.lang.S
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -688,6 +688,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/SSICommand.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/SSICommand.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/SSICommand.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ssi/SSICommand.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-SSICommand (Apache Tomcat 6.0.44 API Documentation)
+SSICommand (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ SSICommand (Apache Tomcat 6.0.44 API Doc
 
 function windowTitle()
 {
-parent.document.title="SSICommand (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="SSICommand (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache T

svn commit: r1729834 [10/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-summary.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-summary.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-summary.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-summary.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.ha.deploy (Apache Tomcat 6.0.44 API Documentation)
+org.apache.catalina.ha.deploy (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ org.apache.catalina.ha.deploy (Apache To
 
 function windowTitle()
 {
-parent.document.title="org.apache.catalina.ha.deploy (Apache Tomcat 6.0.44 
API Documentation)";
+parent.document.title="org.apache.catalina.ha.deploy (Apache Tomcat 6.0.45 
API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -155,7 +155,7 @@ Package org.apache.catalina.ha.deploy
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -185,6 +185,6 @@ Package org.apache.catalina.ha.deploy
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-tree.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-tree.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-tree.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/deploy/package-tree.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.ha.deploy Class Hierarchy (Apache Tomcat 6.0.44 API 
Documentation)
+org.apache.catalina.ha.deploy Class Hierarchy (Apache Tomcat 6.0.45 API 
Documentation)
 
 
 
@@ -13,7 +13,7 @@ org.apache.catalina.ha.deploy Class Hier
 
 function windowTitle()
 {
-parent.document.title="org.apache.catalina.ha.deploy Class Hierarchy 
(Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="org.apache.catalina.ha.deploy Class Hierarchy 
(Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -44,7 +44,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -127,7 +127,7 @@ Interface Hierarchy
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -157,6 +157,6 @@ Interface Hierarchy
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-frame.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-frame.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-frame.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-frame.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.ha (Apache Tomcat 6.0.44 API Documentation)
+org.apache.catalina.ha (Apache Tomcat 6.0.45 API Documentation)
 
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-summary.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-summary.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-summary.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/package-summary.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.catalina.ha (Apache Tomcat 6.0.44 API Documentation)
+org.apache.catalina.ha (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ org.apache.catalina.ha (Apache Tomcat 6.
 
 function windowTitle()
 {
-parent.document.title="org.apache.catalina.ha (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="org.apache.catalina.ha (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -187,7 +187,7 @@ of this class is done when implementing
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -217,6 +217,6 @@ of this class is done when implementing
 
 
 
-Copyright © 2000-

svn commit: r1729834 [33/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/RecyclableNamingEnumeration.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/RecyclableNamingEnumeration.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/RecyclableNamingEnumeration.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/RecyclableNamingEnumeration.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-RecyclableNamingEnumeration (Apache Tomcat 6.0.44 API Documentation)
+RecyclableNamingEnumeration (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ RecyclableNamingEnumeration (Apache Tomc
 
 function windowTitle()
 {
-parent.document.title="RecyclableNamingEnumeration (Apache Tomcat 6.0.44 
API Documentation)";
+parent.document.title="RecyclableNamingEnumeration (Apache Tomcat 6.0.45 
API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -381,7 +381,7 @@ public java.lang.Object nextElement
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -417,6 +417,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/Resource.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/Resource.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/Resource.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/Resource.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-Resource (Apache Tomcat 6.0.44 API Documentation)
+Resource (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ Resource (Apache Tomcat 6.0.44 API Docum
 
 function windowTitle()
 {
-parent.document.title="Resource (Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="Resource (Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -373,7 +373,7 @@ public void setContent(byte[]&nbs
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -409,6 +409,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceAttributes.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceAttributes.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceAttributes.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceAttributes.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ResourceAttributes (Apache Tomcat 6.0.44 API Documentation)
+ResourceAttributes (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ResourceAttributes (Apache Tomcat 6.0.44
 
 function windowTitle()
 {
-parent.document.title="ResourceAttributes (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ResourceAttributes (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -1664,7 +1664,7 @@ public boolean isCaseIgnored()
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -1700,6 +1700,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceCache.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceCache.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceCache.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/resources/ResourceCache.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ResourceCache (Apache Tomcat 6.0.44 API Documentation)
+ResourceCache (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ResourceCache (Apache Tomcat 6.0.44 A

svn commit: r1729834 [26/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/package-tree.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/package-tree.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/package-tree.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/coyote/package-tree.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-org.apache.coyote Class Hierarchy (Apache Tomcat 6.0.44 API Documentation)
+org.apache.coyote Class Hierarchy (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -13,7 +13,7 @@ org.apache.coyote Class Hierarchy (Apach
 
 function windowTitle()
 {
-parent.document.title="org.apache.coyote Class Hierarchy (Apache Tomcat 
6.0.44 API Documentation)";
+parent.document.title="org.apache.coyote Class Hierarchy (Apache Tomcat 
6.0.45 API Documentation)";
 }
 
 
@@ -44,7 +44,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -118,7 +118,7 @@ Interface Hierarchy
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -148,6 +148,6 @@ Interface Hierarchy
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/ExpressionFactoryImpl.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/ExpressionFactoryImpl.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/ExpressionFactoryImpl.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/ExpressionFactoryImpl.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ExpressionFactoryImpl (Apache Tomcat 6.0.44 API Documentation)
+ExpressionFactoryImpl (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ExpressionFactoryImpl (Apache Tomcat 6.0
 
 function windowTitle()
 {
-parent.document.title="ExpressionFactoryImpl (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ExpressionFactoryImpl (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -294,7 +294,7 @@ public javax.el.ValueExpression creat
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -330,6 +330,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/MethodExpressionImpl.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/MethodExpressionImpl.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/MethodExpressionImpl.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-MethodExpressionImpl (Apache Tomcat 6.0.44 API Documentation)
+MethodExpressionImpl (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ MethodExpressionImpl (Apache Tomcat 6.0.
 
 function windowTitle()
 {
-parent.document.title="MethodExpressionImpl (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="MethodExpressionImpl (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -540,7 +540,7 @@ public boolean isLiteralText()
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -576,6 +576,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/MethodExpressionLiteral.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/MethodExpressionLiteral.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/MethodExpressionLiteral.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-MethodExpressionLiteral (Apache Tomcat 6.0.44 API Documentation)
+MethodExpressionLiteral (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ MethodExpressionLiteral (Apache Tomcat 6
 
 function windowTitle()
 {
-parent.document.title="MethodExpressionLiteral (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="MethodExpressionLiteral (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -404,7 +404,7 @@ public void writeExternal(java.io
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -440,6 +440,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/ValueExpres

svn commit: r1729834 [18/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/LifecycleListenerRule.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/LifecycleListenerRule.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/LifecycleListenerRule.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/LifecycleListenerRule.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-LifecycleListenerRule (Apache Tomcat 6.0.44 API Documentation)
+LifecycleListenerRule (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ LifecycleListenerRule (Apache Tomcat 6.0
 
 function windowTitle()
 {
-parent.document.title="LifecycleListenerRule (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="LifecycleListenerRule (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -272,7 +272,7 @@ public void begin(java.lang.Strin
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -308,6 +308,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/NamingRuleSet.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/NamingRuleSet.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/NamingRuleSet.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-NamingRuleSet (Apache Tomcat 6.0.44 API Documentation)
+NamingRuleSet (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ NamingRuleSet (Apache Tomcat 6.0.44 API
 
 function windowTitle()
 {
-parent.document.title="NamingRuleSet (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="NamingRuleSet (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -311,7 +311,7 @@ public void addRuleInstances(
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -347,6 +347,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/PasswdUserDatabase.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/PasswdUserDatabase.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/PasswdUserDatabase.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/PasswdUserDatabase.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-PasswdUserDatabase (Apache Tomcat 6.0.44 API Documentation)
+PasswdUserDatabase (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ PasswdUserDatabase (Apache Tomcat 6.0.44
 
 function windowTitle()
 {
-parent.document.title="PasswdUserDatabase (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="PasswdUserDatabase (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -297,7 +297,7 @@ public java.util.Enumeration getUsers
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -333,6 +333,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/RealmRuleSet.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/RealmRuleSet.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/startup/RealmRuleSet.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-RealmRuleSet (Apache Tomcat 6.0.44 API Documentation)
+RealmRuleSet (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ RealmRuleSet (Apache Tomcat 6.0.44 API D
 
 function windowTitle()
 {
-parent.document.title="RealmRuleSet (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="RealmRuleSet (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -308,7 +308,7 @@ public void addRuleInstances(
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -344,6 +344,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyr

svn commit: r1729834 [32/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingService.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingService.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingService.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingService.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-NamingService (Apache Tomcat 6.0.44 API Documentation)
+NamingService (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ NamingService (Apache Tomcat 6.0.44 API
 
 function windowTitle()
 {
-parent.document.title="NamingService (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="NamingService (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -469,7 +469,7 @@ public void destroy()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -505,6 +505,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingServiceMBean.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingServiceMBean.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/NamingServiceMBean.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-NamingServiceMBean (Apache Tomcat 6.0.44 API Documentation)
+NamingServiceMBean (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ NamingServiceMBean (Apache Tomcat 6.0.44
 
 function windowTitle()
 {
-parent.document.title="NamingServiceMBean (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="NamingServiceMBean (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -431,7 +431,7 @@ void destroy()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -467,6 +467,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceEnvRef.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceEnvRef.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceEnvRef.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceEnvRef.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ResourceEnvRef (Apache Tomcat 6.0.44 API Documentation)
+ResourceEnvRef (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ResourceEnvRef (Apache Tomcat 6.0.44 API
 
 function windowTitle()
 {
-parent.document.title="ResourceEnvRef (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ResourceEnvRef (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -307,7 +307,7 @@ public java.lang.String getFactoryCla
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -343,6 +343,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceLinkRef.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceLinkRef.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceLinkRef.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/naming/ResourceLinkRef.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-ResourceLinkRef (Apache Tomcat 6.0.44 API Documentation)
+ResourceLinkRef (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ ResourceLinkRef (Apache Tomcat 6.0.44 AP
 
 function windowTitle()
 {
-parent.document.title="ResourceLinkRef (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="ResourceLinkRef (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -331,7 +331,7 @@ public java.lang.String getFactoryCla
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -367,6 +367,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 A

svn commit: r1729834 [27/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNegative.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNegative.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNegative.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNegative.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-AstNegative (Apache Tomcat 6.0.44 API Documentation)
+AstNegative (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ AstNegative (Apache Tomcat 6.0.44 API Do
 
 function windowTitle()
 {
-parent.document.title="AstNegative (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="AstNegative (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -282,7 +282,7 @@ public java.lang.Object getValue(
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -318,6 +318,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNot.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNot.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNot.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-AstNot (Apache Tomcat 6.0.44 API Documentation)
+AstNot (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ AstNot (Apache Tomcat 6.0.44 API Documen
 
 function windowTitle()
 {
-parent.document.title="AstNot (Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="AstNot (Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -282,7 +282,7 @@ public java.lang.Object getValue(
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -318,6 +318,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNotEqual.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNotEqual.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNotEqual.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-AstNotEqual (Apache Tomcat 6.0.44 API Documentation)
+AstNotEqual (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ AstNotEqual (Apache Tomcat 6.0.44 API Do
 
 function windowTitle()
 {
-parent.document.title="AstNotEqual (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="AstNotEqual (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -267,7 +267,7 @@ public java.lang.Object getValue(
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -303,6 +303,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNull.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNull.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstNull.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-AstNull (Apache Tomcat 6.0.44 API Documentation)
+AstNull (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ AstNull (Apache Tomcat 6.0.44 API Docume
 
 function windowTitle()
 {
-parent.document.title="AstNull (Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="AstNull (Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -282,7 +282,7 @@ public java.lang.Object getValue(
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -318,6 +318,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstOr.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstOr.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/el/parser/AstOr.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-AstOr (Apache Tomcat 6.0.44 API Documentation)
+AstOr (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ AstOr (Apache Tomcat 6.0.44 API Document
 
 function windowTitle()
 {
-parent.d

svn commit: r1729834 [12/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomca

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/session/SimpleTcpReplicationManager.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/session/SimpleTcpReplicationManager.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/session/SimpleTcpReplicationManager.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/ha/session/SimpleTcpReplicationManager.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-SimpleTcpReplicationManager (Apache Tomcat 6.0.44 API Documentation)
+SimpleTcpReplicationManager (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ SimpleTcpReplicationManager (Apache Tomc
 
 function windowTitle()
 {
-parent.document.title="SimpleTcpReplicationManager (Apache Tomcat 6.0.44 
API Documentation)";
+parent.document.title="SimpleTcpReplicationManager (Apache Tomcat 6.0.45 
API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -644,7 +644,7 @@ Title:Tomcat Session Replication
 Methods inherited from class 
org.apache.catalina.session.ManagerBase
 
 
-add,
 addPropertyChangeListener,
 backgroundProcess,
 changeSessionId,
 createEmptySession,
 createSession,
 destroy,
 expireSession,
 findSession,
 findSessions,
 generateSessionId,
 getActiveSessions,
 getAlgorithm,
 getClassName,
 getContainer,
 getCreationTime,
 getCreationTimestamp,
 getDigest,
 getDomain,
 getDuplicates,
 getEngine,
 getEntropy,
 getExpiredSessions,
 getJvmRoute,
 getLastAccessedTime,
 getLastAccessedTimestamp,
 getMaxActive,
 getMaxInactiveInterval,
 getNewSession,
 getObjectName,
 getProcessExpiresFrequency,
 getProcessingTime,
 getRandom,
 getRandomBytes,
 getRandomClass,
 getRandomFile,
 getSession,
 getSessionAttribute, getSessionAverageAliveTime,
 getSessionCounter,
 getSessionCreateRate,
 getSessionExpireRate,
 getSessionIdLength,
 getSessionMaxAliveTime, init,
 listSessionIds,
 postDeregister,
 postRegister,
 preDeregister,
 preRegister, processExpires,
 remove,
 removePropertyChangeListener,
 setAlgorithm,
 setDuplicates,
 setEntropy,
 setExpiredSessions,
 setMaxActive,
 setMaxInactiveInterval,
 setProcessExpiresFrequency,
 setProcessingTime,
 setRandomClass,
 setRandomFile,
 setSessionAverageAliveTime,
 setSessionCounter,
 setSessionIdLength,
 setSessionMaxAliveTime
+add,
 addPropertyChangeListener,
 backgroundProcess,
 changeSessionId,
 createEmptySession,
 createSession,
 destroy,
 expireSession,
 findSession,
 findSessions,
 generateSessionId,
 getActiveSessions,
 getAlgorithm,
 getClassName,
 getContainer,
 getCreationTime,
 getCreationTimestamp,
 getDigest,
 getDomain,
 getDuplicates,
 getEngine,
 getEntropy,
 getExpiredSessions,
 getJvmRoute,
 getLastAccessedTime,
 getLastAccessedTimestamp,
 getMaxActive,
 getMaxInactiveInterval,
 getNewSession,
 getObjectName,
 getProcessExpiresFrequency,
 getProcessingTime,
 getRandom,
 getRandomBytes,
 getRandomClass,
 getRandomFile,
 getSession,
 getSessionAttribute, getSessionAttributeNameFilter,
 getSessionAttributeNamePattern,
 getSessionAttributeValueClassNameFilter,
 getSessionAttributeValueClassNamePattern,
 getSessionAverageAliveTime, getSessionCounter,
 getSessionCreateRate,
 getSessionExpireRate,
 getSessionIdLength,
 getSessionMaxAliveTime,
 getWarnOnSessionAttributeFilterFailure,
 init,
 list
 SessionIds, postDeregister,
 postRegister,
 preDeregister,
 preRegister, processExpires,
 remove,
 removePropertyChangeListener,
 setAlgorithm, setDuplicates,
 setEntropy,
 setExpiredSessions,
 setMaxActive,
 setMaxInactiveInterval,
 setProcessExpiresFrequency,
 setProcessingTime,
 setRandomClass,
 setRandomFile,
 setSessionAttributeNameFilter,
 setSessionAttributeValueClassNameFilter,
 setSessionAverageAliveTime,
 setSessionCounter,
 setSessionIdLength,
 setSessionMaxAliveTime,
 setWarnOnSessionAttributeFilterFailure, 
willAttributeDistribute
 
 
  
@@ -662,7 +662,7 @@ Title:Tomcat Session Replication
 Methods inherited from interface org.apache.catalina.Manager
 
 
-add,
 addPropertyChangeListener,
 backgroundProcess,
 changeSessionId,
 createEmptySession,
 createSession,
 findSession,
 findSessions,
 getActiveSessions,
 getContainer, getExpiredSessions,
 getInfo, 
getMaxActive,
 getMaxInactiveInterval,
 getRejectedSessions,
 getSessionAverageAliveTime,
 getSessionCounter,
 getSessionIdLength,
 getSessionMaxAliveTime,
 
 load, remove,
 removePropertyChangeListener,
 setContainer,
 setExpiredSessions,
 setMaxActive,
 setMaxInactiveInterval,
 setRejectedSessions,
 setSessionAverageAliveTime, setSessionCounter,
 setSessionIdLength,
 setSessionMaxAliveTime
+add,
 addPropertyChangeListener,
 backgroundProcess,
 changeSessionId,
 createEmptySession,
 createSession,
 findSession,
 findSessions,
 getActiveSessions,
 

svn commit: r1729834 [5/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomcat

2016-02-11 Thread jfclere
Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Session.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Session.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Session.html 
(original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/Session.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-Session (Apache Tomcat 6.0.44 API Documentation)
+Session (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ Session (Apache Tomcat 6.0.44 API Docume
 
 function windowTitle()
 {
-parent.document.title="Session (Apache Tomcat 6.0.44 API Documentation)";
+parent.document.title="Session (Apache Tomcat 6.0.45 API Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -311,6 +311,16 @@ A Session is the Catalina-interna
 
 
  boolean
+isAttributeDistributable(java.lang.String name,
+ java.lang.Object value)
+
+
+  Does the session 
implementation support the distributing of the given
+ attribute?
+
+
+
+ boolean
 isValid()
 
 
@@ -934,6 +944,30 @@ void setNote(java.lang.String&nbs
 Parameters:name - Name to which the object should 
be boundvalue - Object to be bound to the specified name
 
 
+
+
+
+isAttributeDistributable
+
+boolean isAttributeDistributable(java.lang.String name,
+ java.lang.Object value)
+
+Does the session implementation support the distributing of the given
+ attribute? If the Manager is marked as distributable, then this method
+ must be used to check attributes before adding them to a session and
+ an IllegalArgumentException thrown if the proposed attribute is
+ not distributable.
+ 
+ Note that the Manager 
implementation may further restrict which
+ attributes are distributed but a Manager level restriction should
+ not trigger an IllegalArgumentException in
+ HttpSession.setAttribute(String, Object)
+
+
+Parameters:name - The attribute 
namevalue - The attribute value
+Returns:true if distribution is supported, 
otherwise false
+
+
 
 
 
@@ -958,7 +992,7 @@ void setNote(java.lang.String&nbs
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -994,6 +1028,6 @@ DETAIL: FIE
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Reserved.
 
 

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionEvent.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionEvent.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionEvent.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionEvent.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-SessionEvent (Apache Tomcat 6.0.44 API Documentation)
+SessionEvent (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ SessionEvent (Apache Tomcat 6.0.44 API D
 
 function windowTitle()
 {
-parent.document.title="SessionEvent (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="SessionEvent (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -321,7 +321,7 @@ public java.lang.String toString(
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -357,6 +357,6 @@ DETAIL: FIELD | http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionListener.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionListener.html
 (original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/catalina/SessionListener.html
 Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-SessionListener (Apache Tomcat 6.0.44 API Documentation)
+SessionListener (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ SessionListener (Apache Tomcat 6.0.44 AP
 
 function windowTitle()
 {
-parent.document.title="SessionListener (Apache Tomcat 6.0.44 API 
Documentation)";
+parent.document.title="SessionListener (Apache Tomcat 6.0.45 API 
Documentation)";
 }
 
 
@@ -45,7 +45,7 @@ function windowTitle()
 
 
 
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -173,7 +173,7 @@ void sessionEvent(
-Apache Tomcat 6.0.44
+Apache Tomcat 6.0.45
 
 
 
@@ -209,6 +209,6 @@ DETAIL: FIELD | CONSTR&nb
 
 
 
-Copyright © 2000-2015 Apache Software Foundation. All Rights Reserved.
+Copyright © 2000-2016 Apache Software Foundation. All Rights Res

svn commit: r1729834 [4/49] - in /tomcat/site/trunk: ./ docs/ docs/tomcat-6.0-doc/ docs/tomcat-6.0-doc/api/ docs/tomcat-6.0-doc/api/org/apache/ docs/tomcat-6.0-doc/api/org/apache/catalina/ docs/tomcat

2016-02-11 Thread jfclere
Modified: tomcat/site/trunk/docs/tomcat-6.0-doc/api/index.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/index.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- tomcat/site/trunk/docs/tomcat-6.0-doc/api/index.html (original)
+++ tomcat/site/trunk/docs/tomcat-6.0-doc/api/index.html Thu Feb 11 14:00:17 
2016
@@ -4,7 +4,7 @@
 
 
 
-Apache Tomcat 6.0.44 API Documentation
+Apache Tomcat 6.0.45 API Documentation
 
 
 targetPage = "" + window.location.search;

Modified: 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/AnnotationProcessor.html
URL: 
http://svn.apache.org/viewvc/tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/AnnotationProcessor.html?rev=1729834&r1=1729833&r2=1729834&view=diff
==
--- 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/AnnotationProcessor.html 
(original)
+++ 
tomcat/site/trunk/docs/tomcat-6.0-doc/api/org/apache/AnnotationProcessor.html 
Thu Feb 11 14:00:17 2016
@@ -4,7 +4,7 @@
 
 
 
-AnnotationProcessor (Apache Tomcat 6.0.44 API Documentation)
+AnnotationProcessor (Apache Tomcat 6.0.45 API Documentation)
 
 
 
@@ -14,7 +14,7 @@ AnnotationProcessor (Apache Tomcat 6.0.4