[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: preceding-sibling

Subject: RE: preceding-sibling
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Wed, 11 Aug 2004 10:43:45 +0100
preceding sibling
The general syntax for steps in a path expression is

axis::nodetest[predicate]

Examples of axes are "self", "child", and "preceding-sibling"

When you write self::preceding-sibling it is looking for elements named
"preceding-sibling" on the self axis, and there aren't any elements with
that name.

Michael Kay 

> -----Original Message-----
> From: Kaarle Kaila [mailto:kaarle.kaila@xxxxxx] 
> Sent: 11 August 2004 10:30
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  preceding-sibling
> 
> I have tried to understand how the preceding-sibling axes 
> functions but
> without success.
> 
> 
> I have an xml-file with contents like this:
> 
> 
> <table>
> <section gen="1">
> <person>John</person>
> </section>
> <section gen="2">
> <person>Mary</person>
> </section>
> <section gen="3">
> <person>William</person>
> </section>
> </table>
> 
> 
> Here Mary is Johns mother and William is Marys father.
> 
> I have as xslt file where I want to connect parent to child like this:
> 
> <xsl:stylesheet version = '1.0'
>      xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
> >
> 
> <xsl:template match="table">
> <xsl:apply-templates select="section"/>
> </xsl:template>
> 
> <xsl:template match="section">
> <xsl:if test="position()>1">
> Parent:<xsl:value-of select="person"/>, child::<xsl:value-of
> select="self::preceding-sibling/person"/>.
> </xsl:if>
> </xsl:template>
> </xsl:stylesheet>
> 
> =================
> What am I doing wrong as the result I get is:
> <?xml version="1.0"?>
> Parent:Mary, child::.
> Parent:William, child::.
> =====================
> I have tried to write the expression with the preceding 
> sibling in may ways
> but never get any values from it.
> 
> What would be the correct way to use this:
> 
> regards
> Kaarle Kaila

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.