xsl-list
[Top] [All Lists]

Re: normalize-space() problem with Xalan

2002-12-01 13:22:25
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



<Prev in Thread] Current Thread [Next in Thread>
  • Re: normalize-space() problem with Xalan, Oleg Tkachenko <=