RE: removing those blank lines from the output

2003-07-09 Thread Martin van Dijken
in my source file. just my 2 cents Martin van Dijken -Original Message- From: Neil Zanella [mailto:[EMAIL PROTECTED] Sent: woensdag 9 juli 2003 8:00 To: Tag Libraries Users List Subject: RE: removing those blank lines from the output Despite the solutions presented here I think

RE: removing those blank lines from the output

2003-07-09 Thread Michael Duffy
] Sent: Montag, 7. Juli 2003 21:15 To: Tag Libraries Users List Subject: Re: removing those blank lines from the output 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

RE: removing those blank lines from the output

2003-07-08 Thread Eric . Lewis
- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: Montag, 7. Juli 2003 21:15 To: Tag Libraries Users List Subject: Re: removing those blank lines from the output I guess you can do that, but I prefer something else. I use a GZIP compression filter on my control servlet that gets rid

RE: removing those blank lines from the output

2003-07-08 Thread Michael Duffy
and keep you posted... Best regards, Eric -Original Message- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: Montag, 7. Juli 2003 21:15 To: Tag Libraries Users List Subject: Re: removing those blank lines from the output I guess you can do that, but I prefer something

RE: removing those blank lines from the output

2003-07-08 Thread Neil Zanella
-Original Message- From: Michael Duffy [mailto:[EMAIL PROTECTED] Sent: Montag, 7. Juli 2003 21:15 To: Tag Libraries Users List Subject: Re: removing those blank lines from the output I guess you can do that, but I prefer something else. I use a GZIP compression filter on my

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