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

Re: Which has priority xml:space="preserve" or xsl:str

Subject: Re: Which has priority xml:space="preserve" or xsl:strip-space
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Sun, 05 May 2002 17:12:55 +0200
xsl str
Hello!

See spec (http://www.w3.org/TR/xslt.html#strip):
--------
A text node is preserved if any of the following apply:

* The element name of the parent of the text node is in the set of whitespace-preserving element names.
*The text node contains at least one non-whitespace character. As in XML, a whitespace character is #x20, #x9, #xD or #xA.
*An ancestor element of the text node has an xml:space attribute with a value of preserve, and no closer ancestor element has xml:space with a value of default.
---------


Last bullet is true for all 5 white-space only text nodes, so I beleive
saxon is right.

--
Oleg Tkachenko
Multiconn International, Israel

Sal Mangano wrote:
Suppose I have the following document.
<numbers xml:space="preserve">
<number>10</number>
<number>3.5</number>
<number>4.44</number>
<number>77.7777</number>
</numbers>
And the following stylesheet.
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="number">
<xsl:value-of select="."/>,<xsl:text/>
</xsl:template>
</xsl:stylesheet>
Should the xml:space attribute in the document override the
xsl:strip-space in the stylesheet, or visa versa?
Saxon 6.5.1 respects the xml:space:
10,
3.5,
4.44,
77.7777,
Xalan 2.3.1 does not:
10,3.5,4.44,77.7777,
Is one right and one wrong or does the spec allow for either behavior?




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



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.