I have the following xml snippet: 

<?xml version="1.0" encoding="ISO-8859-1"?>
<bugzilla version="3.2.9" urlbase="http://netbeans.org/bugzilla/";
maintainer="site-ad...@netbeans.org">
<bug>
<creation_ts>2003-05-12 14:53</creation_ts>
<component>Dialogs&Wizards</component>
.......
and the following xsl stylesheet...

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
<xsl:output method="xml" indent="yes" version="1.0" encoding="UTF-8" />
<xsl:template match="/">
<xsl:element name="bugzilla">
<xsl:element name="bug">
<xsl:for-each select="bugzilla/bug">
<xsl:element name="component">
<xsl:value-of select="./component" disable-output-escaping="yes"/>
</xsl:element>
.....

"disable-output-escaping" does not escape the & character in
"Dialogs&Wizards". Am I missing something obvious here? 


                        
-- 
View this message in context: 
http://old.nabble.com/escaping-characters-in-xalan-tp31525904p31525904.html
Sent from the Xalan - J - Users mailing list archive at Nabble.com.

Reply via email to