This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Which is correct, xt or SAXON?


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="&lt;&gt;"/>
</xsl:template>
</xsl:stylesheet>

running this stylesheet over any XML input I see:

xt:
<test value="<>"></test>

SAXON:
<test value="<&gt;"></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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]