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

Re: conditional display of content

Subject: Re: conditional display of content
From: "Ganesh Babu N" <nbabuganesh@xxxxxxxxx>
Date: Sat, 31 May 2008 09:59:14 +0530
Re:  conditional display of content
Thank you Andrew,

I have copied the below code into my stylesheet. and it is not
working. Can you help in getting the output. Anything i have to modify
from this.


<xsl:key name="role-by-id" match="pbl:role" use="@xml:id"/>

<xsl:template match="pbl:roleref>
 <xsl:value-of select="key('role-by-id', substring-after(@href, '#'))"/>
</xsl:template>

Regards,
Ganesh


On Tue, May 27, 2008 at 2:42 PM, Andrew Welch <andrew.j.welch@xxxxxxxxx> wrote:
> 2008/5/27 Ganesh Babu N <nbabuganesh@xxxxxxxxx>:
>> This is the XML file:
>
> horrible sample XML fragment by the way... what's wrong with indenting it?
>
>> My requirement is to display the corresponding the role/personname in
>> the speaker tag. The condition is id and href should match.
>>
>> <xsl:template match="pbl:roleref>
>>      <xsl:if test="substring-after(@href),#) =
>> //pbl:castmember/pbl:role/@xml:id">
>>            <xsl:value-of select="//pbl:castmember/pbl:role/personname"/>
>>      </xsl:if>
>> </xsl:template>
>
> Your xpath needs to at least be //pbl:castmember/pbl:role[$id =
> @xml:id]/personname
>
> where $id is a variable defined before the select as:
>
> substring-after(@href), '#')    (notice the single quotes around the
> hash... or "pound" sign if you speak American)
>
> or just use substring-after(current()/@href), '#') directly in the XPath.
>
> Ultimately though this should be rewritten to use a key:
>
> <xsl:key name="role-by-id" match="pbl:role" use="@xml:id"/>
>
> and then just
>
> <xsl:template match="pbl:roleref>
>  <xsl:value-of select="key('role-by-id', substring-after(@href, '#'))"/>
>
> If the lookup value doesn't exist in the key then nothing is returned.
>
> --
> Andrew Welch
> http://andrewjwelch.com
> Kernow: http://kernowforsaxon.sf.net/

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.