Subject: RE: Parameter passing through call to "document"
From: Florent Georges <darkman_spam@xxxxxxxx>
Date: Fri, 17 Mar 2006 10:09:08 +0100 (CET)
|
William Scarvie wrote:
> <xsl:apply-templates select="document('Tasks.xml')">
> <xsl:with-param name="project_id" select="record_id_"/>
> </xsl:apply-templates>
> <xsl:template match="/tasks">
> <xsl:param name="project_id" select="'undefined'"/>
You apply templates on the root node (or document node in XPath 2.0),
not the root element. So the template rule matched is the default one,
that looks like this:
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
So the template rule matching '/tasks' is applied, but its caller
never pass it a parameter. Its caller is not your apply-template, but
the default template rule.
Try instead:
<xsl:apply-templates select="document('Tasks.xml')/tasks">
<xsl:with-param name="project_id" select="record_id_"/>
</xsl:apply-templates>
Regards,
--drkm
___________________________________________________________________________
Nouveau : tiliphonez moins cher avec Yahoo! Messenger ! Dicouvez les tarifs exceptionnels pour appeler la France et l'international.
Tilichargez sur http://fr.messenger.yahoo.com
|