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: How do I get the name of the current node



		<xsl:when test="./sprogit">

You never need to start such a test with ./ that is equivalent to

		<xsl:when test="sprogit">

which is short for

		<xsl:when test="child::sprogit">

which tests if the current node has a spogit child. You want to test if
the current node is a sprogit, which would be self::sprogit
however doing such an xsl:choose is rather a strange way to code things,
why not just apply-templates and then have separate templates matching
each of the possible children?

David


 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]