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: how to rearrange nodes based on a dependency graph?


Or even
<xsl:key name='fragkey' match='frag' use='@id' />
<xsl:template match="frag[@requires]">
	<xsl:for-each select="@requires">
		<xsl:for-each select="key('fragkey',.)[not(@requires)]">
			<xsl:copy-of select="." />
		</xsl:for-each>
	</xsl:for-each>
	<xsl:copy-of select="." />
</xsl:template>
<xsl:template match="frag" />

Hey it's christmas. I don't use ids and idrefs. If this <xsl:for-each
select="@requires"> returns all of the idrefs then this might work. But
if it doesn't then mine is a stella and a bacardi and coke hick!

Ciao Chris

XML/XSL Portal
http://www.bayes.co.uk/xml


 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]