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: apply-templates and Ful XML Path


At 01:25 PM 5/16/2000 -0400, Matthew Cordes wrote:
><xsl:template match="/">
>      <!-- ** this doesn't work, but it should, right? ** -->
>      <xsl:apply-template select="ChildOfRoot"/>

I don't know what your input document looks like. But remember that 
match="/" doesn't match the root ELEMENT, but the root NODE. This is the 
abstract thing which contains everything in the document (including the 
prolog e.g.). The root NODE has only one child, the root ELEMENT; based on 
your line:
>      <xsl:apply-template select=/ROOTNODE/AnotherChildofRoot"/>
that one child is, I would guess, the ROOTNODE element. So in order to make 
your plain old "ChildOfRoot" select statement work, you'd need a template 
rule which matches not on "/", but on "/ROOTNODE".

HTH.


================================================================
John E. Simpson          | "I hate it when my foot falls asleep
http://www.flixml.org    | during the day because that means it's
simpson@polaris.net      | going to be up all night." (Steven Wright)


 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]