<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Creating browser-friendly RSS feeds</title>
	<atom:link href="http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/feed/" rel="self" type="application/rss+xml" />
	<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/</link>
	<description>In my blog I'll try to describe about interesting technologies, my discovery in IT and some useful things about programming.</description>
	<pubDate>Sun, 20 Jul 2008 13:48:16 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Kpumuk</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-3172</link>
		<dc:creator>Kpumuk</dc:creator>
		<pubDate>Fri, 30 Nov 2007 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-3172</guid>
		<description>&lt;p&gt;No, on client side you can do this too :-) Just in my xslt replace template match for / with following:&lt;/p&gt;
[cc lang="xml"]
  &lt;xsl:template match="/"&gt;
    &lt;xsl:variable name="doc" select="document('http://kpumuk.info/feed/')" /&gt;
    &lt;html&gt;
      &lt;head&gt;
        &lt;title&gt;&lt;xsl:value-of select="$doc/rss/channel/title"/&gt;&lt;/title&gt;
        &lt;link rel="stylesheet" href="digg.css" type="text/css"/&gt;
      &lt;/head&gt;
      &lt;xsl:apply-templates select="$doc/rss/channel"/&gt;
    &lt;/html&gt;
  &lt;/xsl:template&gt;
[/cc]</description>
		<content:encoded><![CDATA[<p>No, on client side you can do this too <img src='http://kpumuk.info/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> Just in my xslt replace template match for / with following:</p>
<div class="codecolorer-container xml"><div class="codecolorer" style="font-family: monospace;"><span class="sc3"><span class="re1">&lt;xsl:template</span> <span class="re0">match</span>=<span class="st0">&quot;/&quot;</span><span class="re2">&gt;</span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;xsl:variable</span> <span class="re0">name</span>=<span class="st0">&quot;doc&quot;</span> <span class="re0">select</span>=<span class="st0">&quot;document('http://kpumuk.info/feed/')&quot;</span> <span class="re2">/&gt;</span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;html<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;head<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;title<span class="re2">&gt;</span></span></span><span class="sc3"><span class="re1">&lt;xsl:value-of</span> <span class="re0">select</span>=<span class="st0">&quot;$doc/rss/channel/title&quot;</span><span class="re2">/&gt;</span></span><span class="sc3"><span class="re1">&lt;/title<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;link</span> <span class="re0">rel</span>=<span class="st0">&quot;stylesheet&quot;</span> <span class="re0">href</span>=<span class="st0">&quot;digg.css&quot;</span> <span class="re0">type</span>=<span class="st0">&quot;text/css&quot;</span><span class="re2">/&gt;</span></span><br />
&nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/head<span class="re2">&gt;</span></span></span><br />
&nbsp; &nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;xsl:apply-templates</span> <span class="re0">select</span>=<span class="st0">&quot;$doc/rss/channel&quot;</span><span class="re2">/&gt;</span></span><br />
&nbsp; &nbsp; <span class="sc3"><span class="re1">&lt;/html<span class="re2">&gt;</span></span></span><br />
&nbsp; <span class="sc3"><span class="re1">&lt;/xsl:template<span class="re2">&gt;</span></span></span></div></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spoonman</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-3170</link>
		<dc:creator>Spoonman</dc:creator>
		<pubDate>Thu, 30 Nov 2006 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-3170</guid>
		<description>Is this only usable "server-side"?  For example, I have a del.icio.us feed for a few bookmarks that I'd like to share between browsers.  I'd like them sorted alphabetically, but I can't seem to find a method of forcing Firefox to sort a feed how I want.  The easy part is creating the transform, the hard part is forcing Firefox to use it. :)  Any ideas?</description>
		<content:encoded><![CDATA[<p>Is this only usable &#8220;server-side&#8221;?  For example, I have a del.icio.us feed for a few bookmarks that I&#8217;d like to share between browsers.  I&#8217;d like them sorted alphabetically, but I can&#8217;t seem to find a method of forcing Firefox to sort a feed how I want.  The easy part is creating the transform, the hard part is forcing Firefox to use it. <img src='http://kpumuk.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kpumuk</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-2158</link>
		<dc:creator>Kpumuk</dc:creator>
		<pubDate>Fri, 30 Nov 2001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-2158</guid>
		<description>Yeah! It's very common needed feature, therefor it's implemented in standard PHP library.
Check the manual for &lt;a href="http://ua2.php.net/manual/en/function.strip-tags.php" rel="nofollow"&gt;strip_tags&lt;/a&gt; function.</description>
		<content:encoded><![CDATA[<p>Yeah! It&#8217;s very common needed feature, therefor it&#8217;s implemented in standard PHP library.<br />
Check the manual for <a href="http://ua2.php.net/manual/en/function.strip-tags.php" rel="nofollow" onclick="javascript:pageTracker._trackPageview ('/outbound/ua2.php.net');">strip_tags</a> function.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vishal Khapre</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-2157</link>
		<dc:creator>Vishal Khapre</dc:creator>
		<pubDate>Thu, 30 Nov 2000 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-2157</guid>
		<description>This is amazing information. Do you know how to remove unwated tags in post data, and display everything else?
Like if there are object tags in post or javascript in post, I would like to ignore that.</description>
		<content:encoded><![CDATA[<p>This is amazing information. Do you know how to remove unwated tags in post data, and display everything else?<br />
Like if there are object tags in post or javascript in post, I would like to ignore that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: IMHO</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-172</link>
		<dc:creator>IMHO</dc:creator>
		<pubDate>Wed, 30 Nov 2011 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-172</guid>
		<description>[...] Создание RSS-лент с возможностью просмотра из браузераВ этой заметке я попытаюсь создать ленту, которая будет нормально отображаться как в браузере, так и в RSS-клиенте. Я буду использовать технологию XSLT 1.0 (так как мой Firefox не поддерживает XSLT 1.1). [...]</description>
		<content:encoded><![CDATA[<p>[...] Создание RSS-лент с возможностью просмотра из браузераВ этой заметке я попытаюсь создать ленту, которая будет нормально отображаться как в браузере, так и в RSS-клиенте. Я буду использовать технологию XSLT 1.0 (так как мой Firefox не поддерживает XSLT 1.1). [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dmytro Shteflyuk&#8217;s Home &#187; Sorting RSS-feed by date using XSLT</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-92</link>
		<dc:creator>Dmytro Shteflyuk&#8217;s Home &#187; Sorting RSS-feed by date using XSLT</dc:creator>
		<pubDate>Fri, 30 Nov 2007 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-92</guid>
		<description>[...] In my previous post I&#8217;ve described how to display RSS-feed in browser using XSLT. But sometimes It&#8217;s necessary to change order of items in feed, for example sort them by date. XSLT 1.1 allows sorting by complex data types, but XSLT 1.0 does not and we need extract separate date parts. [...]</description>
		<content:encoded><![CDATA[<p>[...] In my previous post I&#8217;ve described how to display RSS-feed in browser using XSLT. But sometimes It&#8217;s necessary to change order of items in feed, for example sort them by date. XSLT 1.1 allows sorting by complex data types, but XSLT 1.0 does not and we need extract separate date parts. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Splurov</title>
		<link>http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-91</link>
		<dc:creator>Splurov</dc:creator>
		<pubDate>Thu, 30 Nov 2006 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://kpumuk.info/xslt/creating-browser-friendly-rss-feeds/#comment-91</guid>
		<description>Осталось сделать расширение для FF, которое по-умолчанию применяет к rss-лентам xslt :)</description>
		<content:encoded><![CDATA[<p>Осталось сделать расширение для FF, которое по-умолчанию применяет к rss-лентам xslt <img src='http://kpumuk.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
</channel>
</rss>
