Re: Tomcat and JCE, more than friends?

2001-09-10 Thread Si Ly
Are you using Tomcat 3.1.x? >From the tomcat-users mailing list: http://www2.real-time.com/pipermail/tomcat-users/2000-October/012931.html The easiest workarounds are... Add this line to your $HOME/.tomcatrc: TOMCAT_OPTS="-Djava.protocol.handler.pkgs=sun.net.www.protocol" Or add this l

Re: [PRE-PROPOSAL] jakarta-tomcat-doc sub-project : WAS: [TomcatDocumentation Redactors To Hire]

2001-07-03 Thread Si Ly
On Tue, Jul 03, 2001 at 03:02:43AM +0100, Pier P. Fumagalli wrote: > > Documentation is just as valuable as the software... > > Probably even more... It allows more dummies to install our software, more > dummies = more bugs found, more bugs found = more fixes, more fixes = better > software... O

[PATCH] Fix extraneous CR ('\r') in generated servlets

2001-06-29 Thread Si Ly
When Tomcat generates servlet code from JSP, it changes all LF's into CRLF's. Is there a good reason for this? I intentionally use only LF's in my JSP files to save bandwidth, especially when they're large JSP files. In some cases, Tomcat produces ugly output with mixed LF and CRLF lines. Exam