'optimised HTML' serialiser

2002-06-25 Thread Sebastien SACARD
Hi, In a production environment, it's important to have 'optimised HTML' (without quotes, without spaces, etc ...) in order to lower the number of bytes to the end user. This question sounds a little silly, but does anyone know a transformer or a serialiser that produces such HTML ?

RE: 'optimised HTML' serialiser

2002-06-25 Thread Manos Batsis
, 2002 2:34 PM To: [EMAIL PROTECTED] Subject: 'optimised HTML' serialiser Hi, In a production environment, it's important to have 'optimised HTML' (without quotes, without spaces, etc ...) in order to lower the number of bytes to the end user. This question sounds a little silly

Re: 'optimised HTML' serialiser

2002-06-25 Thread Sebastien SACARD
. Cheers, Manos -Original Message- From: Sebastien SACARD [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:34 PM To: [EMAIL PROTECTED] Subject: 'optimised HTML' serialiser Hi, In a production environment, it's important to have 'optimised HTML' (without quotes, without spaces, etc

Re: 'optimised HTML' serialiser

2002-06-25 Thread Bert Van Kets
If you want to strip the indent spaces add these lines to the last XSL: xsl:output indent=no method=html/ xsl:strip-space elements=*/ To optimise the flow, I add them to every XSL. Bert At 13:33 25/06/2002 +0200, you wrote: Hi, In a production environment, it's important to have

RE: 'optimised HTML' serialiser

2002-06-25 Thread Luca Morandini
]] Sent: Tuesday, June 25, 2002 2:10 PM To: [EMAIL PROTECTED] Subject: Re: 'optimised HTML' serialiser If you want to strip the indent spaces add these lines to the last XSL: xsl:output indent=no method=html/ xsl:strip-space elements=*/ To optimise the flow, I add them to every XSL

Re: 'optimised HTML' serialiser

2002-06-25 Thread Sebastien SACARD
Excellent, thanks !! Bert Van Kets wrote: If you want to strip the indent spaces add these lines to the last XSL: xsl:output indent=no method=html/ xsl:strip-space elements=*/ To optimise the flow, I add them to every XSL. Bert At 13:33 25/06/2002 +0200, you wrote: Hi, In a

Re: 'optimised HTML' serialiser

2002-06-25 Thread Sebastien SACARD
Message- From: Bert Van Kets [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:10 PM To: [EMAIL PROTECTED] Subject: Re: 'optimised HTML' serialiser If you want to strip the indent spaces add these lines to the last XSL: xsl:output indent=no method=html/ xsl:strip-space elements

RE: 'optimised HTML' serialiser

2002-06-25 Thread Luca Morandini
://utenti.tripod.it/lmorandini/index.html - -Original Message- From: Sebastien SACARD [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 25, 2002 2:27 PM To: [EMAIL PROTECTED] Subject: Re: 'optimised HTML' serialiser Not supported