I've been wrapping my head around this and I'm pretty sure there's got to be a basic solution.
I'm trying to convert an xml file to XHTML using XSLT 1.0, and I want to have a section where, for every player (fD:jogador in the XML file), the code will look at their @id attribute, then check the goals element and its goal sub-elements (fD:golos and fD:golo), and count all the goals that were scored by the player with @id equal to the player we're processing.
What I have now, is in the template matching the player,
<xsl:call-template name="calcgolos">
<xsl:with-param name="id" select="@id"/>
</xsl:call-template>
The template itself looks like this:
<xsl:template name="calcgolos">
<xsl:param name="id"/>
<xsl:value-of select="count(//fD:golo/@marcador = $id)"/>
</xsl:template>
This is just returning 0 every time, which isn't exactly what I'm looking for!
When I tried inputting this expression in eclipse's XPath processor, with the $id replaced by an actual id, in this case, "POR_NANI", it... exploded. If I do it without the count, though, the correct elements show up, so the syntax can't be too wrong.
Thanks in advance for the help!
count(//fD:golo[@marcador = $id])"? – Pawel Nov 20 '12 at 17:43