glenn 2002/09/07 23:09:44 Modified: catalina/src/conf web.xml Log: Update web.xml Jasper docs for Jasper 2 Revision Changes Path 1.39 +22 -15 jakarta-tomcat-4.0/catalina/src/conf/web.xml Index: web.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/conf/web.xml,v retrieving revision 1.38 retrieving revision 1.39 diff -u -r1.38 -r1.39 --- web.xml 26 Jun 2002 16:56:00 -0000 1.38 +++ web.xml 8 Sep 2002 06:09:44 -0000 1.39 @@ -89,21 +89,34 @@ <!-- following initialization parameters (default values are in square --> <!-- brackets): --> <!-- --> + <!-- checkInterval If development is false and relaoding is true, --> + <!-- background compiles are enabled. checkInterval --> + <!-- is the time in seconds between checks to see --> + <!-- if a JSP page needs to be recompiled. [300] --> + <!-- --> + <!-- compiler Which compiler Ant should use to compile JSP --> + <!-- pages. See the Ant documenation for more --> + <!-- information. [javac] --> + <!-- --> <!-- classdebuginfo Should the class file be compiled with --> - <!-- debugging information? [false] --> + <!-- debugging information? [true] --> <!-- --> <!-- classpath What class path should I use while compiling --> <!-- generated servlets? [Created dynamically --> <!-- based on the current web application] --> <!-- --> + <!-- development Is Jasper used in development mode (will check --> + <!-- for JSP modification on every access)? [true] --> + <!-- --> + <!-- enablePooling Determines whether tag handler pooling is --> + <!-- enabled [true] --> + <!-- --> <!-- ieClassId The class-id value to be sent to Internet --> <!-- Explorer when using <jsp:plugin> tags. --> <!-- [clsid:8AD9C840-044E-11D1-B3E9-00805F499D93] --> <!-- --> - <!-- jspCompilerPlugin The fully qualified class name of the JSP --> - <!-- compiler plug-in to be used. See below for --> - <!-- more information. --> - <!-- [Use internal JDK compiler] --> + <!-- javaEncoding Java file encoding to use for generating java --> + <!-- source files. [UTF8] --> <!-- --> <!-- keepgenerated Should we keep the generated Java source code --> <!-- for each page instead of deleting it? [true] --> @@ -112,9 +125,6 @@ <!-- pages in external data files, to reduce the --> <!-- size of the generated servlets? [false] --> <!-- --> - <!-- enablePooling Determines whether tag handler pooling is --> - <!-- enabled [true] --> - <!-- --> <!-- logVerbosityLevel The level of detailed messages to be produced --> <!-- by this servlet. Increasing levels cause the --> <!-- generation of more messages. Valid values are --> @@ -127,18 +137,15 @@ <!-- --> <!-- reloading Should Jasper check for modified JSPs? [true] --> <!-- --> - <!-- development Is Jasper used in development mode (will check --> - <!-- for JSP modification on every access)? [true] --> - <!-- --> <!-- scratchdir What scratch directory should we use when --> <!-- compiling JSP pages? [default work directory --> <!-- for the current web application] --> <!-- --> <!-- If you wish to use Jikes to compile JSP pages: --> - <!-- * Set the "classpath" initialization parameter appropriately --> - <!-- for this web application. --> - <!-- * Set the "jspCompilerPlugin" initialization parameter to --> - <!-- "org.apache.jasper.compiler.JikesJavaCompiler". --> + <!-- Set the init parameter "compiler" to "jikes". --> + <!-- Define the property "-Dbuild.compiler.emacs" when starting Tomcat. --> + <!-- If you get an error reporting that jikes can't use UTF8 encoding, --> + <!-- try setting the init parameter "javaEncoding" to "ISO-8859-1". --> <servlet> <servlet-name>jsp</servlet-name>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>