[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: conditional display of content
2008/5/31 Ganesh Babu N <nbabuganesh@xxxxxxxxx>: > 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> Looking back through the email chain for the input, the pbl:roleref element is like this: <pbl:roleref xlink:role="http://docbook.org/xlink/role/olink" xlink:href="9780141182742_DeathSalesman_001_INC.xml#dea0000044"/> As you can see, the href attribute is in the xlink namespace, so you need to modify the code to be: substring-after(@xlink:href, '#') -- Andrew Welch http://andrewjwelch.com Kernow: http://kernowforsaxon.sf.net/
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|