RE: [xsl] Displaying element value in browser, which is inside CDATA in XML

Subject: RE: [xsl] Displaying element value in browser, which is inside CDATA in XML
From: "Ramkumar V" <ramkumar.v@xxxxxxxxx>
Date: Mon, 18 Jul 2011 17:31:07 +0530
Dear Martin Honnen

Thanks for your quick reply.

I used the same template match, to display anchor attribute('name') value in
browser. But I can't. 

XSL:
====
<xsl:template match="bk:text">
 <p><xsl:value-of select="." disable-output-escaping="yes"/></p>
</xsl:template>

<xsl:template match="a">
<xsl:apply-templates/><sup><font color="red"><xsl:value-of
select="@name"/></font></sup>
</xsl:template>

XML:
====
<?xml version="1.0"?>

<bk:text><![CDATA[Psychologists acknowledge that, as in the heroism of Sully
 Sullenberger, sometimes an individual&#8217;s best moments emerge<a
 class="page_break" name="page7"></a>  amid the most difficult
 circumstances.]]></bk:text>

Required Browser output:
========================
Psychologists acknowledge that, as in the heroism of Sully
 Sullenberger, sometimes an individual&#8217;s best moments emerge
<< the text 'page7' will appear superscript and font color :red >>
amid the most difficult
 circumstances

But unable to get it using this the above XSL.

Regards,

Ramkumar V

-----Original Message-----
From: Martin Honnen [mailto:Martin.Honnen@xxxxxx] 
Sent: Monday, July 18, 2011 5:21 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Displaying element value in browser, which is inside
CDATA in XML

Ramkumar V wrote:

> I want to display anchor element attribute value in browser, but it is in
> CDATA.
>
> Please suggest anyone how to display this value?
>

> <bk:text><![CDATA[Psychologists acknowledge that, as in the heroism of
Sully
> Sullenberger, sometimes an individual&#8217;s best moments emerge<a
> class="page_break" name="page7"></a>  amid the most difficult
> circumstances.]]></bk:text>

   <xsl:template match="bk:text">
     <xsl:value-of select="." disable-output-escaping="yes"/>
   </xsl:template>
would output the contents of the 'bk:text' element and if the XSLT 
processor supports disable-output-escaping that would result in a text 
node plus an 'a' element plus a text node in the result.

Does that help? Or what exactly do you want to output, your subject says 
"element value", your text "element attribute value".




-- 

	Martin Honnen --- MVP Data Platform Development
	http://msmvps.com/blogs/martin_honnen/


===========================================================
***Disclaimer***


This email, and any attachments ("this email"), is confidential. If you are not the addressee please tell the sender immediately, and destroy this email without using, sending or storing it. Any opinions, express or implied, in this email, are those of the sender, and are not necessarily approved by the company.  Except as expressly stated, this e-mail should not be regarded as an offer, solicitation, recommendation or agreement to buy or sell products or services, or to enter into any contract. E-mail transmissions are not secure and may suffer errors, viruses, delay, interception and amendment. The company does not accept liability for damage caused by any of the foregoing.

ALL INCOMING AND OUTGOING MAILS MAY BE MONITORED BY THE COMPANY.
============================================================

Current Thread