Re: [xsl] normalize-space() problem with Xalan

Subject: Re: [xsl] normalize-space() problem with Xalan
From: Oleg Tkachenko <olegt@xxxxxxxxxxxxx>
Date: Sun, 01 Dec 2002 22:22:25 +0200
Endre Magyari wrote:

    <xsl:for-each select='@subTypes'>
            <xsl:call-template name='tokenize'>
                <xsl:with-param name='str'
select="normalize-space(@subTypes)"/>
Here is a problem. <xsl:for-each> sets context node to be subTypes attribute node and then in <xsl:with-param> you are trying to get @subType attribute of context node, which is this attribute already. Attribute nodes don't have attributes obviously. <xsl:for-each> is superfluous here, get rid of it.

works with XMLSPY internal XSLT processor, and doesn't work with XALAN.
Looks like a bug in xml spy.

--
Oleg Tkachenko
eXperanto team
Multiconn Technologies, Israel


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



Current Thread