[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Encoding problem

Subject: RE: Encoding problem
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Mon, 31 Jan 2000 18:40:16 -0000
xsl attribute encoding
>Well, I can at least supply some of the reasons why the Unicode character
is 
>showing -- as I got caught by this myself. The reason is your line ending
between
>the <xsl:attribute> and </xsl:attribute> tags. 
 
>To fix this (in the cases where the attribute value template doesn't work
-- the curly braces), 
>just make sure you don't add any extra white space. For example: 
 
><xsl:attritbue name="value"><xsl:value-of select="@name"/></xsl:attribute> 
 
Whitespace nodes in the stylesheet are ignored, so this is equivalent to:

<xsl:attribute name="value">
	<xsl:value-of select="@name"/>
</xsl:attribute>

It is certainly best to avoid text nodes that include whitespace as well as
significant text, e.g. avoid

<xsl:attribute name="value">
	[<xsl:value-of select="@name"/>]
</xsl:attribute>

write instead:

<xsl:attribute name="value">[<xsl:value-of select="@name"/>]</xsl:attribute>

or:

<xsl:attribute name="value">
	<xsl:text/>[<xsl:value-of select="@name"/>]<xsl:text/>
</xsl:attribute>

Mike Kay


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.