Author: markt
Date: Fri Jul  4 09:03:51 2014
New Revision: 1607802

URL: http://svn.apache.org/r1607802
Log:
Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=56694
Remove references to checkInterval attribute that are no longer valid and 
related fixes.

Modified:
    tomcat/trunk/java/org/apache/catalina/session/package.html
    tomcat/trunk/webapps/docs/changelog.xml
    tomcat/trunk/webapps/docs/config/manager.xml
    tomcat/trunk/webapps/docs/funcspecs/fs-admin-objects.xml

Modified: tomcat/trunk/java/org/apache/catalina/session/package.html
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/session/package.html?rev=1607802&r1=1607801&r2=1607802&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/session/package.html (original)
+++ tomcat/trunk/java/org/apache/catalina/session/package.html Fri Jul  4 
09:03:51 2014
@@ -52,8 +52,6 @@ setting the following properties:</p>
 (<code>StandardManager</code>) supports the following additional configuration
 properties:</p>
 <ul>
-<li><b>checkInterval</b> - The interval, in seconds, between checks for
-    sessions that have expired and should be invalidated.  [60]</li>
 <li><b>maxActiveSessions</b> - The maximum number of active sessions that
     will be allowed, or -1 for no limit.  [-1]</li>
 <li><b>pathname</b> - Pathname to the file that is used to store session

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1607802&r1=1607801&r2=1607802&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Fri Jul  4 09:03:51 2014
@@ -145,6 +145,13 @@
         examples web application from security sensitive systems be ignored.
         (markt)
       </fix>
+      <fix>
+        <bug>56694</bug>: Remove references to <code>Manager</code> attribute
+        <code>checkInterval</code> from documentation and Javadoc since it no
+        longer exists. Based on a patch by Felix Schumacher. Also remove other
+        references to <code>checkInterval</code> that are no longer valid.
+        (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Other">

Modified: tomcat/trunk/webapps/docs/config/manager.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/config/manager.xml?rev=1607802&r1=1607801&r2=1607802&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/config/manager.xml (original)
+++ tomcat/trunk/webapps/docs/config/manager.xml Fri Jul  4 09:03:51 2014
@@ -305,12 +305,6 @@
 
   <attributes>
 
-    <attribute name="checkInterval" required="false">
-      <p>The interval (in seconds) between checks for expired sessions
-      among those sessions that are currently swapped out.  By default,
-      this interval is set to 60 seconds (one minute).</p>
-    </attribute>
-
     <attribute name="className" required="true">
       <p>Java class name of the implementation to use.  This class must
       implement the <code>org.apache.catalina.Store</code> interface.  You
@@ -343,12 +337,6 @@
 
   <attributes>
 
-    <attribute name="checkInterval" required="false">
-      <p>The interval (in seconds) between checks for expired sessions
-      among those sessions that are currently swapped out.  By default,
-      this interval is set to 60 seconds (one minute).</p>
-    </attribute>
-
     <attribute name="className" required="true">
       <p>Java class name of the implementation to use.  This class must
       implement the <code>org.apache.catalina.Store</code> interface.  You

Modified: tomcat/trunk/webapps/docs/funcspecs/fs-admin-objects.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/funcspecs/fs-admin-objects.xml?rev=1607802&r1=1607801&r2=1607802&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/funcspecs/fs-admin-objects.xml (original)
+++ tomcat/trunk/webapps/docs/funcspecs/fs-admin-objects.xml Fri Jul  4 
09:03:51 2014
@@ -367,12 +367,9 @@ Operations</a> that can be performed whe
   <em>Context</em>.</p>
 
   <p>The standard component implementing a <em>Loader</em> is
-  <code>org.apache.catalina.loader.StandardLoader</code>.  It supports
+  <code>org.apache.catalina.loader.WebappLoader</code>.  It supports
   the following configurable properties:</p>
   <ul>
-  <li><code>checkInterval</code> - Number of seconds between checks for
-      modified classes, if automatic reloading is enabled.  [15]</li>
-  <li><code>debug</code> - Debugging detail level.  [0]</li>
   <li><code>reloadable</code> - Should this class loader check for modified
       classes and initiate automatic reloads?  [Set automatically from the
       <code>reloadable</code> property of the corresponding <em>Context</em>]
@@ -394,9 +391,6 @@ Operations</a> that can be performed whe
   <code>org.apache.catalina.session.StandardManager</code>.  It supports
   the following configurable properties:</p>
   <ul>
-  <li><code>checkInterval</code> - Number of seconds between checks for
-      expired sessions.  [60]</li>
-  <li><code>debug</code> - Debugging detail level.  [0]</li>
   <li><code>maxActiveSessions</code> - The maximum number of active sessions
       that are allowed, or -1 for no limit.  [-1]</li>
   </ul>



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

Reply via email to