[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Parameter passing through call to "document"

Subject: RE: Parameter passing through call to "document"
From: Florent Georges <darkman_spam@xxxxxxxx>
Date: Fri, 17 Mar 2006 10:09:08 +0100 (CET)
RE:  Parameter passing through call to "document"
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

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.