After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 54451 - Attribute value template escaping fails
Attribute value template escaping fails
Status: VERIFIED FIXED
Product: libxslt
Classification: Platform
Component: general
unspecified
Other Solaris
: Normal normal
: ---
Assigned To: Daniel Veillard
Daniel Veillard
Depends on:
Blocks:
 
 
Reported: 2001-05-10 15:39 UTC by jonasw
Modified: 2009-08-15 18:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description jonasw 2001-05-10 15:39:47 UTC
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

  <xsl:template match="/">
    <foo attr="{{escaped curly brackets}}"/>
  </xsl:template>

</xsl:stylesheet>

The stylesheet above is incorrectly rejected by libxslt-0.9.0. The
expected output is:

<?xml version="1.0"?>
<foo attr="{escaped curly brackets}"/>
Comment 1 Daniel Veillard 2001-05-11 15:17:35 UTC
fixed in CVS,

Daniel
Comment 2 Daniel Veillard 2001-05-23 18:32:09 UTC
Fixed and shipped in 0.10.0, I assume we can close the bug,

Daniel