[Home] [By Thread] [By Date] [Recent Entries]
At 2007-08-03 20:37 +0200, you wrote:
On 03/08/07, G. Ken Holman <gkholman@xxxxxxxxxxxxxxxxxxxx> wrote: Because I demonstrated it in the earlier email ... copied below ... look at the end result ... manfred1.xsl uses method="html" and manfred2.xsl uses method="xml" and the serialization by MSXML is demonstratively different. Why do you think the serialization by MSXML of the two is the same? . . . . . . . . . . . Ken t:\ftemp>type manfred.xsl
<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"><xsl:output method="html"/> <xsl:template match="/">
<body>
<div style="display: none"></div>
<div style="display: none"/>
</body>
</xsl:template></xsl:stylesheet> t:\ftemp>xslt-msxsl manfred.xsl manfred.xsl con <body> <div style="display: none"></div> <div style="display: none"></div> </body> t:\ftemp>xslt-saxon manfred.xsl manfred.xsl con
<body>
<div style="display: none"></div>
<div style="display: none"></div>
</body>
t:\ftemp>type manfred2.xsl
<?xml version="1.0" encoding="US-ASCII"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"><xsl:output method="xml" indent="yes"/> <xsl:template match="/">
<body>
<div style="display: none"></div>
<div style="display: none"/>
</body>
</xsl:template></xsl:stylesheet> t:\ftemp>xslt-msxsl manfred2.xsl manfred2.xsl con <?xml version="1.0" encoding="UTF-16"?> <body> <div style="display: none"></div> <div style="display: none" /> </body> t:\ftemp>xslt-saxon manfred2.xsl manfred2.xsl con <?xml version="1.0" encoding="utf-8"?> <body> <div style="display: none"/> <div style="display: none"/> </body> t:\ftemp> -- Upcoming public training: XSLT/XSL-FO Sep 10, UBL/code lists Oct 1 World-wide corporate, govt. & user group XML, XSL and UBL training RSS feeds: publicly-available developer resources and training G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995) Male Cancer Awareness Jul'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal
|

Cart



