|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: which is faster?
<xsl:for-each select = //embededMalware/malwareFamily">
<xsl:if test ="document('/global/malwareFamilies.xml')/malwareFamilies/malwareFamily[@id
= current()/@id]">
<xsl:call-template name="displayPrevalenceReport">
<xsl:with-param name="malwareFamilyId" select="@id"/>
<xsl:with-param name="items" select="5"/>
<xsl:with-param name="method" select="'lite'"/>
</xsl:call-template>
</xsl:if>
</xsl:for-each>
the problem seems to lay within my use of current()/@id in the predictate
and/or @id as the malwareFamilyId parameter.
If instead, I store the @id attribute in a variable, and then use that
variable throuought the for-each loop it all works ok. Why is this? Surely
the context hasn't changed along the way has it? Looking at that, to me it
looks as if
document('/global/malwareFamilies.xml')/malwareFamilies/malwareFamily is
the current contxt throughought the for-each loop,
No the current node for each iteration of the for-each is a
malwareFamily element from the current document.
document('/global/malwareFamilies.xml')/malwareFamilies/malwareFamily
is the current node only within the [] at the end of your test
expression.
so where you have
[@id = current()/@id]
@id referes to the id of an element in malwareFamilies.xml and
current()/@id refers to the id element of the malwareFamily element in
the current document that you are for-eaching over.
It is equivalent to
<xsl:for-each select = //embededMalware/malwareFamily">
<xsl:varaiable name="thisid" select="@id"/>
<xsl:if test ="document('/global/malwareFamilies.xml')/malwareFamilies/malwareFamily[@id
= $thisid]">
You said that you used a variable to make things work but you didn't say
where.
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








