xsl-list
[Top] [All Lists]

Re: Unable to get text() of node

2006-01-23 05:46:54
At 2006-01-23 13:29 +0100, Geert Josten wrote:
It is obvious that something that isn't there cannot be preserved, but I don't observe the behaviour from the MSXSL parser that you and David are describing. If I run the following with Xalan or MSXSL I get the same result even when I replace strip-space by preserve-space

I do not ... I get different results when I replace your example with preserve-space (which happens to be the default). This has long been a bone of contention with the Microsoft engine since it is widely agreed that the Microsoft engine is non-conformant in this regard.

I hope this helps.

. . . . . . . Ken

T:\ftemp>type josten.xml
<foo>
  <bar>This is </bar>
  text.
</foo>

T:\ftemp>type josten.xsl
<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

  <xsl:output method="xml" encoding="utf-8" indent="no"/>

  <xsl:preserve-space elements="*" />

  <xsl:template match="/">
    <foo>
      <xsl:copy-of select="foo/text()" />
    </foo>
  </xsl:template>

</xsl:stylesheet>

T:\ftemp>xslt-xalan josten.xml josten.xsl con
<?xml version="1.0" encoding="utf-8"?>
<foo>

  text.
</foo>

T:\ftemp>xslt-msxsl josten.xml josten.xsl con
<?xml version="1.0" encoding="UTF-16"?><foo>
  text.
</foo>
T:\ftemp>


--
Upcoming XSLT/XSL-FO hands-on courses:  Denver,CO March 13-17,2006
World-wide on-site corporate, govt. & user group XML/XSL training.
G. Ken Holman                 mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Cancer Awareness Aug'05  http://www.CraneSoftwrights.com/s/bc
Legal business disclaimers:  http://www.CraneSoftwrights.com/legal


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>