RE: [xsl] testing parent node with xsl:choose

Subject: RE: [xsl] testing parent node with xsl:choose
From: "Ross Ken" <Ken.Ross@xxxxxxxxxxxxxx>
Date: Wed, 22 Jan 2003 08:46:49 +1000
<li>'s parent is <ul>.  You may want to use ancestor to check grandparents, great grandparents etc.

Ken Ross
Ph: +61 7 32359370
Mob: +61 (0)419 772299
Email: Ken.Ross@xxxxxxxxxxxxxx


-----Original Message-----
From: raven [mailto:ra5en2000@xxxxxxxxx]
Sent: Wednesday, 22 January 2003 8:35 AM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] testing parent node with xsl:choose


I want to test whether a particular node has a
particular parent node. For example, in 1.xml I have


<spool>
  <identification> 
    <ul> <li>This Text</li></ul>
  </identification>
</spool>

In 2.xml I have

text text text <ul><li>more text </li></ul> text text
text

The template I wrote:

<xsl:template match="li">
<xsl:choose>
<xsl:when test="parent::spool">
<xsl:apply-templates /><br /></xsl:when>

<xsl:otherwise><li><xsl:apply-templates/>
</li>
</xsl:otherwise>

</xsl:choose>
</xsl:template>

The commands however, produce the same result which
tells me that the condition is not being tested, or
that I am not properly testing the node. How do I fix
it?

Thank you.

ra5en@xxxxxxxxx


__________________________________________________
Do you Yahoo!?
Yahoo! Mail Plus - Powerful. Affordable. Sign up now.
http://mailplus.yahoo.com

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

IMPORTANT: This email (including any attachments) may contain confidential,
private or legally privileged information and may be protected by copyright. You may
only use it if you are the person(s) it was intended to be sent to and if you use it in an
authorised way. No one is allowed to use, review, alter, transmit, disclose, distribute,
print or copy this e-mail without appropriate authority.
 
If this e-mail was not intended for you and was sent to you by mistake, please
telephone or e-mail me immediately, destroy any hard copies of this e-mail and delete
it and any copies of it from your computer system. Any legal privilege and 
confidentiality attached to this e-mail is not waived or destroyed by that mistake.
 
It is your responsibility to ensure that this e-mail does not contain and is not affected
by computer viruses, defects or interference by third parties or replication problems
(including incompatibility with your computer system).




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


Current Thread