From: timw Date: Fri, 8 Oct 2010 08:11:24 +0000 (+0000) Subject: Minor fixes to DefaultServlet docs X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=ab4b2a89a2fdf04d0f25543c018f1201ba2cea0b;p=tomcat7.0 Minor fixes to DefaultServlet docs git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1005722 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/webapps/docs/default-servlet.xml b/webapps/docs/default-servlet.xml index 1107f3f02..713499b18 100644 --- a/webapps/docs/default-servlet.xml +++ b/webapps/docs/default-servlet.xml @@ -54,7 +54,7 @@ By default here is it's declaration: </init-param> <init-param> <param-name>listings</param-name> - <param-value>true</param-value> + <param-value>false</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> @@ -69,7 +69,7 @@ By default here is it's declaration: So by default, the default servlet is loaded at webapp startup and -directory listings are enabled and debugging is turned off. +directory listings are disabled and debugging is turned off.
@@ -81,7 +81,7 @@ The DefaultServlet allows the following initParamters: Debugging level. It is not very useful unless you are a tomcat developer. As - of this writing, useful values are 0, 1, 11, 1000. + of this writing, useful values are 0, 1, 11, 1000. [0] @@ -89,7 +89,7 @@ The DefaultServlet allows the following initParamters: If no welcome file is present, can a directory listing be shown? - value may be true or false + value may be true or false [false]
Welcome files are part of the servlet api.
@@ -103,7 +103,7 @@ The DefaultServlet allows the following initParamters: If a directory listing is presented, a readme file may also be presented with the listing. This file is inserted as is - so it may contain HTML. default value is null + so it may contain HTML.