Re: HTML filtering on tomcat-dev

2001-07-16 Thread Jon Stevens
on 7/16/01 5:44 PM, "Christopher Cain" <[EMAIL PROTECTED]> wrote: > In addition to leaving my inbox blissfully free of such abominations, I > have a feeling it will also reduce the amount of user questions on the > dev list. I've noticed that a good percentage of the HTML-formatted > posts, the v

cvs commit: jakarta-tomcat/src/tests/webpages/WEB-INF test-tomcat.xml

2001-07-16 Thread costin
costin 01/07/16 22:17:58 Modified:src/tests/webpages/WEB-INF test-tomcat.xml Log: Added the client side of the japanese test. The funny ½ etc are result of "od -xa" on the page ( I can see the icons on the browser ). Revision ChangesPath 1.35 +8 -1 jaka

New Tomcat 4 installer nightly

2001-07-16 Thread Remy Maucherat
Hi, I did lots of updates to the installer script, and the result is available here : http://jakarta.apache.org/builds/jakarta-tomcat-4.0/nightly/jakarta-tomcat-4 .0-20010716.exe Changes from the first installer include : - The JAVA_HOME env variable is no longer needed (instead, it looks in

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/util URLUtil.java

2001-07-16 Thread marcsaeg
marcsaeg01/07/16 21:25:56 Modified:src/share/org/apache/tomcat/core Tag: tomcat_32 ContextManager.java src/share/org/apache/tomcat/request Tag: tomcat_32 AccessInterceptor.java src/share/org/apache/tomcat/util

cvs commit: jakarta-tomcat-4.0/tester/web ErrorPage06.jsp

2001-07-16 Thread craigmcc
craigmcc01/07/16 21:21:15 Modified:catalina/src/share/org/apache/catalina Globals.java catalina/src/share/org/apache/catalina/core ApplicationDispatcher.java StandardWrapperValve.java catalina/src/share/org/ap

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread remm
remm01/07/16 21:14:26 Modified:catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java Log: - Handle lowercase / uppercase, etc, etc. Patch by Craig + Marc (who should have committed that themselves, I have terrible problems with my c

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/server Ajp13.java

2001-07-16 Thread costin
costin 01/07/16 21:06:29 Modified:src/share/org/apache/tomcat/modules/server Ajp13.java Log: Quick fix for 2629 ( userPrincipal not set when used with Ajp13 ). Full solution ( i.e. real integration of user authentication between tomcat and apache ) is unlikely to happen in 3

Testing HTML Rejection

2001-07-16 Thread Alex Chaffee
*HTML-only *email is rejected. _* Yay!*_ What about mixed text and HTML? (When I sent html-only, it said: Hi. This is the qmail-send program at apache.org. I'm afraid I wasn't able to deliver your message to the following addresses. This is a permanent error; I've given up. Sorry it didn't work o

cvs commit: jakarta-tomcat/src/doc NT-Service-howto.html

2001-07-16 Thread costin
costin 01/07/16 20:53:42 Modified:src/doc NT-Service-howto.html Log: Added the comment from Anthony Dodd ( [EMAIL PROTECTED] ) about problems with long filenames. Fixing it is beyond my capabilities ( I don't even know how to install NT... ), I'll mark the bug as a RFE. S

cvs commit: jakarta-tomcat/src/shell tomcat.bat

2001-07-16 Thread costin
costin 01/07/16 20:46:05 Modified:src/shell tomcat.bat Log: Fix for #2192, thanks [EMAIL PROTECTED] (Stephen Brown) for finding it and providing the patch. Submitted by: [EMAIL PROTECTED] (Stephen Brown) Revision ChangesPath 1.35 +8 -8 jakarta-tomcat/sr

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/config ServerXmlReader.java

2001-07-16 Thread costin
costin 01/07/16 20:38:18 Modified:src/share/org/apache/tomcat/modules/config ServerXmlReader.java Log: Fix for #137 ( finally :-). That will make -f work as expected if relative paths are used ( i.e. relative to the user dir, not tc.home ), and will work

Re: cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread Remy Maucherat
> > +// Prevent encoding '%', '/', '.' and '\', which are > > special reserved > > +// characters > > +if ((normalized.indexOf("%25") > 0) || > > (normalized.indexOf("%2F") > 0) > > +|| (normalized.indexOf("%2E") > 0) > > +|| (normalized.in

RE: cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread Marc Saegesser
> remm01/07/16 18:04:29 > > Modified:catalina/src/share/org/apache/catalina/connector/http > HttpProcessor.java > Log: > - %25, %2F, %2E and %5C are now forbidden in the request URI. I > hope this > is not a problem with multi-byte characters. > -

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/core OutputBuffer.java

2001-07-16 Thread costin
costin 01/07/16 20:14:46 Modified:src/share/org/apache/tomcat/core OutputBuffer.java Log: Fix for bug 2646. We need to recycle the encoding. Thanks to Ben Kelley for reporting and including a test case. Revision ChangesPath 1.19 +3 -0 jakarta-tomcat/src/sha

cvs commit: jakarta-tomcat/src/tests/webpages/WEB-INF/classes ja.java

2001-07-16 Thread costin
costin 01/07/16 20:13:39 Added: src/tests/webpages/WEB-INF/classes ja.java Log: Test case for #2646, many thanks to [EMAIL PROTECTED] (Ben Kelley) for including the test, it makes fixing bugs so easy. Submitted by: [EMAIL PROTECTED] Revision ChangesPath 1.1

Re: cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread Remy Maucherat
> This code will do a case sensitive comparison. So, for example, %2E will be > forbidden, but %2e will be allowed. Escapes are not case sensitive. Yes, I forgot about it. Remy

RE: cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread Marc Saegesser
> remm01/07/16 18:04:29 > > Modified:catalina/src/share/org/apache/catalina/connector/http > HttpProcessor.java > Log: > - %25, %2F, %2E and %5C are now forbidden in the request URI. I > hope this > is not a problem with multi-byte characters. > - Me

cvs commit: jakarta-tomcat/src/examples/WEB-INF/classes/examples FooTag.java LogTag.java

2001-07-16 Thread costin
costin 01/07/16 19:29:47 Modified:src/examples/WEB-INF/classes/examples FooTag.java LogTag.java Log: Added an empty method - so people can compile the examples in a 2.3 container. Revision ChangesPath 1.2 +1 -0 jakarta-tomcat/src/examp

cvs commit: jakarta-tomcat build.xml

2001-07-16 Thread costin
costin 01/07/16 19:28:03 Modified:.build.xml Log: Watchdog.dist ( from "watchdog-web-based" ) is now separated, it creates problems when building tests with some ants. Since watchdog didn't changed we can just use the current war and stop building it every time - b

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/mappers DecodeInterceptor.java

2001-07-16 Thread costin
costin 01/07/16 18:59:44 Modified:src/share/org/apache/tomcat/modules/mappers DecodeInterceptor.java Log: Ops... Normalization _after_ decoding, of course - thanks Larry, I can't believe I didn't realized that... One problem that remain is with the "u

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread remm
remm01/07/16 18:04:29 Modified:catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java Log: - %25, %2F, %2E and %5C are now forbidden in the request URI. I hope this is not a problem with multi-byte characters. - Medium risk fix : a

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpRequestImpl.java

2001-07-16 Thread remm
remm01/07/16 18:00:34 Modified:catalina/src/share/org/apache/catalina/connector/http HttpRequestImpl.java Log: - Check for protocol to be null. Revision ChangesPath 1.10 +5 -5 jakarta-tomcat-4.0/catalina/src/share/org/apache/catalin

Re: FW: HTML filtering on tomcat-dev

2001-07-16 Thread Christopher Cain
Sweet. Be sure to CC me on your wedding announcement. In addition to leaving my inbox blissfully free of such abominations, I have a feeling it will also reduce the amount of user questions on the dev list. I've noticed that a good percentage of the HTML-formatted posts, the vast majority of whic

[FAQ] jGuru FAQ Update

2001-07-16 Thread Alex Chaffee
jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as many other Java topics). Here is an automated update on recent postings to Tomcat-related FAQs. Please direct flames and feedback to [EMAIL PROTECTED] . -

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/servlets InvokerHttpRequest.java InvokerServlet.java LocalStrings.properties

2001-07-16 Thread craigmcc
craigmcc01/07/16 17:14:17 Modified:catalina/src/share/org/apache/catalina/servlets InvokerServlet.java LocalStrings.properties Added: catalina/src/share/org/apache/catalina/servlets InvokerHttpRequest.java Log: Modify the way t

FW: HTML filtering on tomcat-dev

2001-07-16 Thread Jon Stevens
FYI... Down with that bastard HTML email crap. :-) -jon -- Forwarded Message From: Brian Behlendorf <[EMAIL PROTECTED]> Date: Mon, 16 Jul 2001 16:42:35 -0700 (PDT) To: Jon Stevens <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Subject: Re: HTML filtering on tomcat-dev Done. Brian On M

Re: cvs commit: jakarta-tomcat-4.0 build.xml tomcat.nsi

2001-07-16 Thread Amy Roh
Thanks Remy! It works great! :-) Amy [EMAIL PROTECTED] wrote: > remm01/07/16 16:07:46 > > Modified:.build.xml tomcat.nsi > Log: > - Display some JRE information about the VM. > - Don't assume that NSIS is in the path. Instead, assume it's in the default > insta

cvs commit: jakarta-tomcat-4.0 build.xml tomcat.nsi

2001-07-16 Thread remm
remm01/07/16 16:07:46 Modified:.build.xml tomcat.nsi Log: - Display some JRE information about the VM. - Don't assume that NSIS is in the path. Instead, assume it's in the default installation directory. The nsis.home variable can be used to change the NSIS pat

RE: [DOC] TOC - thoughts

2001-07-16 Thread Rob S.
> engaged in. If not for Sun, it's probably make my living slugging > through C++ ... or worse, God forbid, VB! ;-) Here's to that! =) - r

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core ApplicationHttpRequest.java ApplicationHttpResponse.java ApplicationRequest.java ApplicationResponse.java

2001-07-16 Thread craigmcc
craigmcc01/07/16 15:24:33 Modified:catalina/src/share/org/apache/catalina/core ApplicationHttpRequest.java ApplicationHttpResponse.java ApplicationRequest.java ApplicationResponse.java Log: Remove cruft code tha

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/core ApplicationDispatcher.java ApplicationDispatcherContext.java

2001-07-16 Thread craigmcc
craigmcc01/07/16 15:24:13 Modified:catalina/src/share/org/apache/catalina/core ApplicationDispatcher.java Removed: catalina/src/share/org/apache/catalina/core ApplicationDispatcherContext.java Log: Modify the way that request dis

HTML filtering on tomcat-dev

2001-07-16 Thread Jon Stevens
Hello apmail gods, Will you please apply the same HTML filtering that is on turbine-dev to tomcat-dev? thanks, -jon -- Forwarded Message From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 16 Jul 2001 13:24:44 -0700 To: Christopher Cain <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED]

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java

2001-07-16 Thread remm
remm01/07/16 14:55:17 Modified:catalina/src/share/org/apache/catalina/connector/http HttpProcessor.java Log: - Quick and dirty normalization of the URI. Obviously the code is not optimized. I will write (errr, cut & paste from TC 3.3 code, actually) a

Re: OT - HTML dev-list filter?

2001-07-16 Thread guru
I don't know how but I'd +1 it. Actually I do know how, sort of -- ezmlm-make has an option -x that configures it with "extras" including html rejecting. But I'm not sure how to apply it to a running list. ezmlm is kind of unfriendly. Read through the ezmlm FAQ for info. One annoying thing I r

cvs commit: jakarta-tomcat/src/facade22/org/apache/tomcat/facade JspInterceptor.java

2001-07-16 Thread costin
costin 01/07/16 13:32:03 Modified:src/facade22/org/apache/tomcat/facade JspInterceptor.java Log: One more simple fix for better jaxp1.1 support. Revision ChangesPath 1.26 +16 -1 jakarta-tomcat/src/facade22/org/apache/tomcat/facade/JspInterceptor.java Inde

Re: [FAQ] jGuru FAQ Update

2001-07-16 Thread guru
Sure, it could, but (a) I don't think one message a week will be enough traffic to bother anyone, and (b) sometimes developer-related FAQs show up on the Tomcat list. Also, usually it's developers who can answer these FAQs (or augment them) so I'd like to wave them under their noses and see if an

[FAQ] jGuru FAQ Update

2001-07-16 Thread guru
jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as many other Java topics). Here is an automated update on recent postings to Tomcat-related FAQs. Please direct flames and feedback to [EMAIL PROTECTED] . -

Re: [FAQ] jGuru FAQ Update

2001-07-16 Thread Kurt Schrader
Could this just be sent to the user list and not to the dev list? -Kurt On Monday, July 16, 2001, at 03:55 PM, [EMAIL PROTECTED] wrote: > jGuru maintains FAQs and Forums on Servlets, JSP, and Tomcat (as well as > many other Java topics). Here is an automated update on recent > postings to > T

Re: [anoncvs@jakarta.apache.org-error]Connection refused

2001-07-16 Thread guru
The Apache CVS server was reconfigured over the weekend. Try again soon. - A On Mon, Jul 16, 2001 at 12:45:54PM +0100, Morrison, John wrote: > Try > > cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic > login > > J. > > -Original Me

cvs commit: jakarta-tomcat/src/admin/WEB-INF/scripts run-test.sh

2001-07-16 Thread costin
costin 01/07/16 12:18:26 Modified:src/admin/WEB-INF/scripts run-test.sh Log: Update to crimson ( with option to use xerces ) Revision ChangesPath 1.3 +2 -0 jakarta-tomcat/src/admin/WEB-INF/scripts/run-test.sh Index: run-test.sh

Re: FW: latest cvs checkout test

2001-07-16 Thread Brian P Millett
Justin Erenkrantz wrote: > On Mon, Jul 16, 2001 at 06:34:48PM +0100, Pier P. Fumagalli wrote: > > I just tried it on Nagoya, and it does the same for me... > > Do someone has _ANY_ clue of WTF is going on > > Yeah, I've seen this before (Solaris, too). I had to add -lgcc. > Don't ask me why

RE: [DOC] TOC - thoughts

2001-07-16 Thread Gomez Henri
> > I know that many of jakarta-tomcat commiters are paid by Sun but > consider > > that there is MANY HAPPY Linux users around which are borred of that > > > kind of remarks on their OS. Just recall the pool about OS used in > J-T-C. > > > > The Sun developers working on Tomcat all have their

Re: OT - HTML dev-list filter?

2001-07-16 Thread Christopher Cain
Is there any way I can talk someone into implementing Jon's HTML-filter on the Tomcat Dev list? AFAIK there were no objections to the idea itself. Does someone with the appropriate access (Pier, Craig, Jon?) maybe have a few minutes to look into it? Granted it's not an urgent priority, but it soun

Re: [DOC] TOC - thoughts

2001-07-16 Thread Christopher Cain
"Pier P. Fumagalli" wrote: > > Christopher Cain at [EMAIL PROTECTED] wrote: > > > > IMNSHO, that kernel flag workaround is a joke. I almost fell out of my > > chair with laughter when I first read that proposed "solution" on the > > Sun forums. "Hey, our JDK makes some faulty assumptions about m

Re: FW: latest cvs checkout test

2001-07-16 Thread Justin Erenkrantz
On Mon, Jul 16, 2001 at 06:34:48PM +0100, Pier P. Fumagalli wrote: > I just tried it on Nagoya, and it does the same for me... > Do someone has _ANY_ clue of WTF is going on Yeah, I've seen this before (Solaris, too). I had to add -lgcc. Don't ask me why the linker didn't pick up on that a

cvs commit: jakarta-tomcat build.xml

2001-07-16 Thread costin
costin 01/07/16 10:54:30 Modified:.build.xml Log: Comment out jsse section, it would brake the compile if jsse is not present. Revision ChangesPath 1.143 +0 -4 jakarta-tomcat/build.xml Index: build.xml

cvs commit: jakarta-tomcat/src/share/org/apache/tomcat/modules/config LoaderInterceptor11.java

2001-07-16 Thread costin
costin 01/07/16 10:53:53 Modified:src/share/org/apache/tomcat/modules/config LoaderInterceptor11.java Log: Fix the fix - loader must be reset in init since modules could change the classpath during addContext. Revision ChangesPath 1.15 +20

Re: Mailing list delays?

2001-07-16 Thread Pier P. Fumagalli
Alex Fernández at [EMAIL PROTECTED] wrote: > Hi Pier! > > "Pier P. Fumagalli" wrote: >> >> Rob S. at [EMAIL PROTECTED] wrote: >> >>> 2-3 hours? Try DAYS! =( >> >> A delay of DAYS might be because of moderation... I tend to approve/reject >> messages on a daily basis, but the day before yeste

FW: latest cvs checkout test

2001-07-16 Thread Pier P. Fumagalli
I just tried it on Nagoya, and it does the same for me... Do someone has _ANY_ clue of WTF is going on Pier -- Forwarded Message From: "Brian P. Millett" <[EMAIL PROTECTED]> Date: Mon, 16 Jul 2001 12:34:48 -0500 To: Pier Fumagalli <[EMAIL PROTECTED]> Subject: latest cvs checkout test

Re: Alternative to NSI

2001-07-16 Thread Pier P. Fumagalli
Remy Maucherat at [EMAIL PROTECTED] wrote: > > I had a tweaked version of the script, but unfortunately my main HD died on me > a few moments ago. The tweaks weren't too complex so I should be able to put > them back in quickly. > What would I do without IMAP (thanks Pier ;-)) and CVS ? (since of

RE: [DOC] TOC - thoughts

2001-07-16 Thread Craig R. McClanahan
On Mon, 16 Jul 2001, GOMEZ Henri wrote: > > I know that many of jakarta-tomcat commiters are paid by Sun but consider > that there is MANY HAPPY Linux users around which are borred of that > kind of remarks on their OS. Just recall the pool about OS used in J-T-C. > The Sun developers worki

RE: [DOC] TOC - thoughts

2001-07-16 Thread GOMEZ Henri
On Mon, Jul 16, 2001 at 12:21:55PM +0200, jean-frederic clere wrote: >> > I had to work around some issues with that OS myself writing the Service >> > code, and definitely, I wouldn't trust that "thing" not even to drive my >> > coffee pot, but, of course, that's me. Get a decent and "real" OS, d

Re: [DOC] TOC - thoughts

2001-07-16 Thread Justin Erenkrantz
On Mon, Jul 16, 2001 at 12:21:55PM +0200, jean-frederic clere wrote: > > I had to work around some issues with that OS myself writing the Service > > code, and definitely, I wouldn't trust that "thing" not even to drive my > > coffee pot, but, of course, that's me. Get a decent and "real" OS, don'

Tomcat & Frames

2001-07-16 Thread Cory Powers
I am having issues using Tomcat with a frameset page that contains 4 frames, I do not have any problems with the same page when I reduce it to 3 frames. I have created a Bug in the Bugs Database(Bug #2605) and gotten no response. Can someone please assist me in getting this solved. The Bug entry h

RE: [anoncvs@jakarta.apache.org-error]Connection refused

2001-07-16 Thread Morrison, John
Try   cvs -d :pserver:[EMAIL PROTECTED]:/home/cvspublic login   J. -Original Message-From: Dongsheng, Song [mailto:[EMAIL PROTECTED]]Sent: Monday, 16 July 2001 12:44 pmTo: [EMAIL PROTECTED]Cc: [EMAIL PROTECTED]Subject: [[EMAIL PROTECTED]]Connection refused Hi,   Wh

RE: [DOC] TOC - thoughts

2001-07-16 Thread GOMEZ Henri
Oups previous email was out too quick > IMNSHO, that kernel flag workaround is a joke. I almost fell out of my > chair with laughter when I first read that proposed "solution" on the > Sun forums. "Hey, our JDK makes some faulty assumptions about memory > allocation and threading ... the solutio

RE: [DOC] TOC - thoughts

2001-07-16 Thread GOMEZ Henri
> IMNSHO, that kernel flag workaround is a joke. I almost fell out of my > chair with laughter when I first read that proposed "solution" on the > Sun forums. "Hey, our JDK makes some faulty assumptions about memory > allocation and threading ... the solution is to direct Java to use the > antiqua

Re: [DOC] TOC - thoughts

2001-07-16 Thread jean-frederic clere
"Pier P. Fumagalli" wrote: > > Christopher Cain at [EMAIL PROTECTED] wrote: > > > > IMNSHO, that kernel flag workaround is a joke. I almost fell out of my > > chair with laughter when I first read that proposed "solution" on the > > Sun forums. "Hey, our JDK makes some faulty assumptions about me

Re: Alternative to NSI

2001-07-16 Thread jean-frederic clere
Klaus Sonnenleiter wrote: > > I've worked with both Setup Factory and InstallShield in the past and I liked > Setup Factory a lot. But as far as I know, it is Windows only. Last I heard, > both InstallShield and Wise were planning Java versions of their installers > that were supposed to be cross

Re: Alternative to NSI

2001-07-16 Thread Rolf Veen
The Windows installer I like most is InnoSetup (www.innosetup.org). It's free, but not MSI based. Rolf.

cvs commit: jakarta-tomcat-4.0 tomcat.nsi

2001-07-16 Thread remm
remm01/07/16 00:50:33 Modified:.tomcat.nsi Log: - Forgot '-jar'. Revision ChangesPath 1.8 +2 -2 jakarta-tomcat-4.0/tomcat.nsi Index: tomcat.nsi === RCS file: /home/cvs/jakarta

Re: Mailing list delays?

2001-07-16 Thread Alex Fernández
Hi Pier! "Pier P. Fumagalli" wrote: > > Rob S. at [EMAIL PROTECTED] wrote: > > > 2-3 hours? Try DAYS! =( > > A delay of DAYS might be because of moderation... I tend to approve/reject > messages on a daily basis, but the day before yesterday I forgot... Might > have took 2 days for messages i