xsl-list
[Top] [All Lists]

RE: [xsl] value and/or type of node()

2009-07-17 14:32:11

node() means ./child::node(), that is, it selects children of the context
node. The context node changes inside a predicate.

Regards,

Michael Kay
http://www.saxonica.com/
http://twitter.com/michaelhkay 

-----Original Message-----
From: Dick Penny [mailto:d_penny(_at_)usa(_dot_)net] 
Sent: 17 July 2009 18:40
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] value and/or type of node()

Well, let's see if my posting ability is up to standard?

I am simply experimenting with ways of "passing args" to 
templates, XSLT 1.0, Sharepoint environment.
1) I succeeded in "with-param"
2) MK's book says that <xsl:template> is executed with no 
change to context, current node is preserved, page 181, and 
elsewhere that RTFs or single-node sets can generally be used 
as string values, so I try:

<xsl:template name="oneCell" >
      <td>
    <xsl:variable name="v1" select="node()"/>
OK    <xsl:value-of select="count($Rows[(_at_)GroupAssigned=$v1])"/>
BAD     <xsl:value-of select="count($Rows[(_at_)GroupAssigned=node()])"/>
      </td>
</xsl:template>

Which is called inside of a for-each loop, doing "pull" style 
processing.

Why does one work and not the other? What do I not understand?

Dick Penny



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>