RE: [xsl] url query works with mozilla; not IE

Subject: RE: [xsl] url query works with mozilla; not IE
From: "Jim Fuller" <jim.fuller@xxxxxxxxxxxxxxxxxx>
Date: Thu, 3 Jul 2003 13:16:13 +0100

here are the characters in question that are the most likely culprits,

Space &#32; (hexadecimal &#x20;) 
Carriage return &#13; (&#xD;) 
Tab &#9; (&#x9;) 
Line feed (newline) &#10; (&#xA;) 

so try this 
<img src="display.php?image={translate($myvar,'&#32;&#13;&#9;&#10; '.'')}" text="foo" alt="foo"/>

gl, jim fuller


ps: is a useful article http://www.xml.com/lpt/a/2001/11/07/whitespace.html


> -----Original Message-----
> From: William S. [mailto:wstan@xxxxxxxxx]
> Sent: 03 July 2003 12:10
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: Re: [xsl] url query works with mozilla; not IE
> 
> 
> I have tried most of the suggestions, but still have
> the problem of the url query being cut off in
> internet explorer.
> 
> Since apparently it is a whitespace problem,
> translate() should correct it. I have used what
> is suggested below and it didn't work. Is there
> a way to accurately detect which whitespace characters(types?)
> are responsible and incorporating them in translate()?
> How would I do this?
> 
> On Wed, Jul 02, 2003 at 12:26:32PM +0100, Jim Fuller wrote:
> > 
> > <img src="display.php?image={translate($myvar,' '.'')}" 
> text="foo" alt="foo"/>
> > 
> > note u may have to supply more replacement whitespace types 
> for translate.
> > 
> 
> -- 
> Bill
> Amsterdam, NL
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 
This e-mail and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you are not the intended recipient please contact the sender immediately. Any disclosure, copying, distribution or any other use of this communication is strictly prohibitedand may be unlawful. Stuart Lawrence Marketing Communications Limited reserves the right to monitor and intercept communications for unlawful business purposes.

This also confirms that this message has been swept for viruses, although Stuart Lawrence Marketing Communications Limited accepts no responsibility for any loss or damage resulting directly or indirectly from the use of this email or contents.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread