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]
Other format: [Raw text]

RE: Names of node attributes


> What is wrong with this XSL ? This does not give me the desired result
>
> <xsl:template match="WELL">
>  	<xsl:for-each select=".">
>  		<xsl:sort select="@WellName"/>
> 	 	<xsl:for-each select="@*">
> 			<xsl:value-of select="."/> <xsl:value-of
> select="$tab"/>
> 	 	</xsl:for-each>
> 	 	<xsl:value-of select="$newline"/>
> 	 </xsl:for-each>
> </xsl:template>
>
Your template rule is called once to process each well. You can't sort the
wells within a template that only sees on of them. You can see it's
nonsense, because when you write:

>  	<xsl:for-each select=".">
>  		<xsl:sort select="@WellName"/>

the for-each selects a single node and then tries to sort it!

Move the sort to the corresponding xsl:apply-templates that processes all
the wells.

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com


 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]