Re: [ANN] Apache Tomcat 6.0.10 released

2007-02-28 Thread Scott Johnson
Congrats to you all! This is the first release of Tomcat that I've closely followed from the beginning - both in the dev list and by building it locally and running it and testing certain areas - and I'm very impressed by your teamwork and professionalism. -Scott Remy Maucherat <[EMAIL PR

Scott Johnson/Raleigh/IBM is out of the office.

2006-10-30 Thread Scott Johnson
I will be out of the office starting 10/30/2006 and will not return until 11/02/2006. I am in class and will be checking email sporadically. If you need assistance please contact Will Gregory ([EMAIL PROTECTED]).

Re: svn commit: r447793 - /tomcat/tc6.0.x/trunk/java/org/apache/jasper/compiler/Compiler.java

2006-09-19 Thread Scott Johnson
And an extra t also :). Ought to follow the spec's name for the attribute, so: setDeferredSyntaxAllowedAsLiteral isDeferredSyntaxAllowedAsLiteral Tim Funk <[EMAIL PROTECTED]> 09/19/2006 06:33 AM Please respond to "Tomcat Developers List" To Tomcat Developers List cc Subject Re: svn comm

Re: [TC6] revision that removed calls to makeOutputDir() breaks Jasper

2006-09-11 Thread Scott Johnson
My pleasure. Remy Maucherat <[EMAIL PROTECTED]> 09/11/2006 09:52 AM Please respond to "Tomcat Developers List" To Tomcat Developers List cc Subject Re: [TC6] revision that removed calls to makeOutputDir() breaks Jasper Scott Johnson wrote: >

Re: [TC6] revision that removed calls to makeOutputDir() breaks Jasper

2006-09-09 Thread Scott Johnson
Revision 441109 to JspCompilationContext.java removed calls to makeOutputDir() from the methods getClassFileName() and getServletJavaFileName(). This results in JSP compilation failures in this scenario: 1. my.jsp is requested for the first time, its implementation servlet is created

Re: [TC6] makeOutputDir() revision breaks Jasper

2006-09-09 Thread Scott Johnson
Or, a better fix: protected boolean makeOutputDir() { synchronized(outputDirLock) { File outDirFile = new File(outputDir); return (outDirFile.exists() || outDirFile.mkdirs()); } } Scott Johnson/Raleigh/[EMAIL PROTECTED] 09/08/2006 01:20 PM

[TC6] makeOutputDir() revision breaks Jasper

2006-09-08 Thread Scott Johnson
Revision 441109 to JspCompilationContext.java results in makeOutputDir() returning false even if the desired outputDir exists. This is because File.mkdirs() returns true "if and only if the directory was created". If the directory already exists, makeOutputDir() is returning false, resulting

[TC6] No directory listing for /examples

2006-09-04 Thread Scott Johnson
Take index.jsp from webapps/ROOT, copy into webapps/examples. Edit index.jsp, changing "jsp-examples" to "jsp" and "servlets-examples" to "servlets", then it works like always. Appears this was just overlooked. >On 9/4/06, Mladen Turk <[EMAIL PROTECTED]> wrote: >Anyone has any idea why /exam

Scott Johnson/Raleigh/IBM is out of the office.

2006-09-01 Thread Scott Johnson
I will be out of the office starting 08/29/2006 and will not return until 09/06/2006. For technical issues please contact Todd Kaplinger ([EMAIL PROTECTED]) or Dave Brauneis ([EMAIL PROTECTED]). For other issues contact Susan Hanson ([EMAIL PROTECTED]).

Tomcat 6: Incorrect ELContext may be used when PageContext pooling is 'on'

2006-09-01 Thread Scott Johnson
(I tried many times to open a bugzilla bug against Tomcat 6/Jasper, but it never succeeded. I think this bug is important enough to let you know about it, while bugzilla-admin helps figure out my bugzilla problem.) In org.apache.jasper.runtime.PageContextImpl, the release() method does not se