Pascal,

> I noticed that sablot is sensitive to "<" sign in CDATA sections and
> even between quotes in test attribute of an xsl:if.

could you be more specific please? What do you mean by 'sensitive'?

> and that it is not possible to have a CR between
>  <xsl:attribute name="href">..///something</xsl:attribute>
> 
> if i write it like this in the file 
> 
>  <xsl:attribute name="href">
>     ..///something
> </xsl:attribute>
> 
> it inserts very bad characters %a0%09%09 i think.

it's not that bad really. Newlines are *required* to be escaped in
attribute values. Since this is a href attribute, the encoding used in
URIs is chosen (% followed by 2-digit code). Tabs are escaped as well
(though this is not explicitly required). 

Tom

Reply via email to