Re: removing those blank lines from the output

2003-07-07 Thread Yann Cébron
Hi, here's a snippet I use in my build.xml after copying the JSPs and HTML files to the build dir: replaceregexp match=gt;\s*lt; replace=gt;lt; flags=g byline=false fileset dir=${build.home} includes=**/*.html,**/*.htm,**/*.jsp/ /replaceregexp This is not a perfect solution, but it gets

Re: removing those blank lines from the output

2003-07-07 Thread Michael Duffy
Sorry, but I thought the question had to do with getting rid of whitespace from JSPs generated at runtime. Perhaps I lost the thread. - MOD --- Yann Cébron [EMAIL PROTECTED] wrote: Hi, here's a snippet I use in my build.xml after copying the JSPs and HTML files to the build dir:

Re: removing those blank lines from the output

2003-07-07 Thread Yann Cébron
Michael Duffy [EMAIL PROTECTED] schrieb im Newsbeitrag news:[EMAIL PROTECTED] Sorry, but I thought the question had to do with getting rid of whitespace from JSPs generated at runtime. Perhaps I lost the thread. - MOD Actually, since all your JSP-tags and HTML-tags will be side by side in

Re: removing those blank lines from the output

2003-07-07 Thread Michael Duffy
I guess you can do that, but I prefer something else. I use a GZIP compression filter on my control servlet that gets rid of all that extraneous whitespace and more when I sent responses back to clients that can accept compressed output. That's what eBay does routinely. I'm seeing good

RE: How to create a general resource bundle for JSTL?

2003-07-07 Thread Martin van Dijken
Hey Eric, Let me give you an educated yet untested guess. I'm not very experienced with JSTL, but noticed you weren't getting any response so let me try. Have you tried setting the Locale of the ServletResponse object? I'm not 100% certain, but it seems to me JSTL *SHOULD* check this when