This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

AW: disable-output-escaping in attributes


This is by design and correct.

Read the spec (XSLT HTML output method) or recent messages in this mailing
list.

-----Ursprungliche Nachricht-----
Von: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]Im Auftrag von Justin
Makeig
Gesendet: Sonntag, 22. April 2001 09:08
An: xsl-list@lists.mulberrytech.com
Betreff: [xsl] disable-output-escaping in attributes


I'm having trouble adding ampersands within attributes (i.e. putting
querystrings in href or src attributes). The transformation (in both
MSXML3 and Sablot for PHP on Win2k)

<xsl:template match="image">
 <img>
  <xsl:attribute name="src">resize.php?img=
    <xsl:value-of select="@filename"/>.jpg
    <xsl:text disable-output-escaping="yes">&amp;</xsl:text>
    ratio=0.25
  <xsl:attribute name="blah">
    <xsl:text disable-output-escaping="yes">&amp;</xsl:text>
  </xsl:attribute>
  <xsl:attribute>
  </img>
</xsl:template>

results in

<img src="resize.php/img=someimg.jpg&amp;ratio=0.25" blah="&"></img>
(note: the above will look _correct_ to HTML mail clients; please view
the source)

It apprears that for attributes that aren't "recoginzed" (like "blah")
the output escaping works fine, but for others it returns the special
character entity name. Any ideas?

Thanks,

Justin


__________________________________________________
Do You Yahoo!?
Yahoo! Auctions - buy the things you want at great prices
http://auctions.yahoo.com/

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]