You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kk...@apache.org on 2011/06/16 10:18:44 UTC

svn commit: r1136318 - in /tomcat/trunk/webapps: ROOT/index.jsp docs/changelog.xml

Author: kkolinko
Date: Thu Jun 16 08:18:44 2011
New Revision: 1136318

URL: http://svn.apache.org/viewvc?rev=1136318&view=rev
Log:
Add session="false" directive to the index page of the ROOT web application.
There is no need to create a session when accessing this page.

Modified:
    tomcat/trunk/webapps/ROOT/index.jsp
    tomcat/trunk/webapps/docs/changelog.xml

Modified: tomcat/trunk/webapps/ROOT/index.jsp
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/ROOT/index.jsp?rev=1136318&r1=1136317&r2=1136318&view=diff
==============================================================================
--- tomcat/trunk/webapps/ROOT/index.jsp (original)
+++ tomcat/trunk/webapps/ROOT/index.jsp Thu Jun 16 08:18:44 2011
@@ -15,6 +15,7 @@ See the License for the specific languag
 limitations under the License.
 --%>
 <!DOCTYPE html>
+<%@ page session="false" %>
 <%
 java.text.SimpleDateFormat sdf = new java.text.SimpleDateFormat("yyyy");
 request.setAttribute("year", sdf.format(new java.util.Date()));

Modified: tomcat/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/trunk/webapps/docs/changelog.xml?rev=1136318&r1=1136317&r2=1136318&view=diff
==============================================================================
--- tomcat/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/trunk/webapps/docs/changelog.xml Thu Jun 16 08:18:44 2011
@@ -104,6 +104,10 @@
         <bug>43538</bug>: Add host name and IP address to the HTML Manager
         application. Patch by Dennis Lundberg. (markt)
       </add>
+      <fix>
+        Add <code>session="false"</code> directive to the index page of the
+        ROOT web application. (kkolinko)
+      </fix>
     </changelog>
   </subsection>
 </section>



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