xsl-list
[Top] [All Lists]

Re: [xsl] using xsl:output-character to render characters in 2 ways

2009-11-13 13:10:18
Tom T wrote:
When I use this character map:

<xsl:character-map name="default">
              <xsl:output-character character="&lt;" string="&#60;" />
              <xsl:output-character character=">" string="&#62;" />
              <xsl:output-character character="&amp;" string="&#38;amp;" />
</xsl:character-map>  

the unexpected behaviour occurs. When I remove the output-characters
and use this one:

<xsl:character-map name="default"/>

There is no problem.

I am using Saxon 9

In that case:

As several other people have suggested, there is really no need for that
character map, if you are generating XML or HTML.  The XSLT processor
will handle necessary escaping for you.  Since eliminating the map gives
you correct behavior, just stop using it.

However, it is still a bug (IMO) that that character map results in
invalid markup; you are certainly not requesting the specific bad
behavior you’re getting.  I would file a bug against Saxon.

~Chris
-- 
Chris Maden, text nerd  <URL: http://crism.maden.org/ >
“The State is that great fiction by which everyone tries to live at
 the expense of everyone else.” — Frédéric Bastiat, “L’État”
GnuPG Fingerprint: C6E4 E2A9 C9F8 71AC 9724 CAA3 19F8 6677 0077 C319

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--