This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Re: "*|@*|text()" vs. "node()"


> As far as I know <xsl:apply-templates/> is the same like 
> <xsl:apply-templates select="*|text()"/>,

No, 
  <xsl:apply-templates/> is a shorthand for:

  <xsl:apply-templates select="child::node()"/> 

and will select all child nodes (e.g. for an element node -- elements, PIs,
comments, text-nodes) of the current node.

Cheers,
Dimitre Novatchev.


__________________________________________________
Do You Yahoo!?
NEW from Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]