Have a RSS feed xml file
<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<item>
<title>news title 1</title>
<link>http://URL</link>
<description>
<div><b>Article_Title:</b> AAAAA</div>
<div><b>Article_Summary:</b> AAAAAA</div>
<div><b>Article_Date:</b> 05/08/2013</div>
</description>
<author>QWERT</author>
<pubDate>Mon, 27 May 2013 16:13:50 GMT</pubDate>
<guid isPermaLink="true">http://URL</guid>
</item>
<item>
<title>news title 2</title>
<link>http://URL</link>
<description>
<div><b>Article_Title:</b>BBB</div>
<div><b>Article_Summary:</b>BBB</div>
<div><b>Article_Date:</b> 05/10/2013</div>
</description>
<author>ASDF</author>
<pubDate>Tue, 28 May 2013 09:50:51 GMT</pubDate>
<guid isPermaLink="true">http://URL</guid>
</item>
</channel>
</rss>
This RSS Feed XML file is residing at server. I am fetching this XML and want to do some changes to <description>
tags using XSL.
All this should happen at the client side. So i want to do changes to the original RSS feed file at the client side.
Is it possible to change the original file using XSL.
Thanks in advance.