DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20531>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=20531

Variables not supported in <sort>

[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID



------- Additional Comments From [EMAIL PROTECTED]  2003-06-06 01:59 -------
There's a sentence in chapter 10 of the XSLT 1.0 spec that says:
When used in xsl:for-each, xsl:sort elements must occur first.

Your example is therefore an invalid stylesheet. But if you have
<xsl:for-each select="some-nodes">
   <xsl:variable name="foo" select="whatever"/>
   <xsl:sort select="$foo"/>
why can't you change that to
<xsl:for-each select="some-nodes">
   <xsl:sort select="whatever"/>
??

Reply via email to