Subject: Which is correct, xt or SAXON?
From: "James Petry" <jpetry@xxxxxxxxx>
Date: Tue, 16 May 2000 17:38:51 +0100
|
Hi,
I am seeing different output from xt and SAXON, and I can't figure out which
is correct according to the standard. I have boiled my problem down to this
simple stylesheet.
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html"/>
<xsl:template match="/">
<test value="<>"/>
</xsl:template>
</xsl:stylesheet>
running this stylesheet over any XML input I see:
xt:
<test value="<>"></test>
SAXON:
<test value="<>"></test>
I would like to think xt is correct, as that is the result I need in my
larger problem!
Thanks in advance for any help.
--
Technical Director, HISL Limited
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|