GNOME Bugzilla – Bug 53401
xsl:text and CDATA content
Last modified: 2009-08-15 18:40:50 UTC
<xsl:text> element complains when its content is enclosed in <![CDATA[ ]]>
Okay this was a bug, it's fixed now: orchis:~/XSLT/tests/general -> cat ../docs/bug-10-.xml <?xml version= "1.0"?> <doc/> orchis:~/XSLT/tests/general -> cat bug-10-.xsl <?xml version= "1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/"> <xsl:text><![CDATA[Success]]></xsl:text> </xsl:template> </xsl:stylesheet> orchis:~/XSLT/tests/general -> xsltproc bug-10-.xsl ../docs/bug-10-.xml <?xml version="1.0"?> Success orchis:~/XSLT/tests/general -> thanks for the report, Daniel
shipped in 0.9.0 Daniel