<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: More gifts</title>
	<atom:link href="http://www.purinchu.net/wp/2007/11/29/more-gifts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.purinchu.net/wp/2007/11/29/more-gifts/</link>
	<description>The answer to life, the universe, and everything</description>
	<lastBuildDate>Fri, 10 Feb 2012 03:15:56 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: <img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=d41d8cd98f00b204e9800998ecf8427e&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/969a61db97440b6.png" alt="Sola Identicon Icon" height="35" width="35" /> Sola</title>
		<link>http://www.purinchu.net/wp/2007/11/29/more-gifts/comment-page-1/#comment-5605</link>
		<dc:creator><img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=d41d8cd98f00b204e9800998ecf8427e&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/969a61db97440b6.png" alt="Sola Identicon Icon" height="35" width="35" /> Sola</dc:creator>
		<pubDate>Thu, 31 Jan 2008 16:09:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.purinchu.net/wp/2007/11/29/more-gifts/#comment-5605</guid>
		<description>It works great, thank you.</description>
		<content:encoded><![CDATA[<p>It works great, thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=d99d78ac06ff66b3b9a168ed20cce623&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/22cb3f07816e094.png" alt="Tomasu Identicon Icon" height="35" width="35" /> Tomasu</title>
		<link>http://www.purinchu.net/wp/2007/11/29/more-gifts/comment-page-1/#comment-5551</link>
		<dc:creator><img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=d99d78ac06ff66b3b9a168ed20cce623&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/22cb3f07816e094.png" alt="Tomasu Identicon Icon" height="35" width="35" /> Tomasu</dc:creator>
		<pubDate>Fri, 30 Nov 2007 20:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.purinchu.net/wp/2007/11/29/more-gifts/#comment-5551</guid>
		<description>You rule, very very hard. I almost did this myself months ago, but libtool made me stop... Too annoying developing extensions for kde when you have to have stuff registered with libtool and stuff.</description>
		<content:encoded><![CDATA[<p>You rule, very very hard. I almost did this myself months ago, but libtool made me stop&#8230; Too annoying developing extensions for kde when you have to have stuff registered with libtool and stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=77bfae11a6e64f5e8dba6236fbc65bbc&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/85999e16b245759.png" alt="mpyne Identicon Icon" height="35" width="35" /> mpyne</title>
		<link>http://www.purinchu.net/wp/2007/11/29/more-gifts/comment-page-1/#comment-5547</link>
		<dc:creator><img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=77bfae11a6e64f5e8dba6236fbc65bbc&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/85999e16b245759.png" alt="mpyne Identicon Icon" height="35" width="35" /> mpyne</dc:creator>
		<pubDate>Fri, 30 Nov 2007 05:10:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.purinchu.net/wp/2007/11/29/more-gifts/#comment-5547</guid>
		<description>The following patch was sent in by Bruce Eckel to fix formatting of some bulleted lists which had &#039;*&#039; everywhere.  It will be in the next kio_perldoc, or you can apply it to your pod2html.pl in the source directory and then reinstall.

&lt;pre&gt;kde-svn $ ~/projects/kio_perldoc $ svn diff -r4:5
Index: pod2html.pl
===================================================================
--- pod2html.pl (revision 4)
+++ pod2html.pl (revision 5)
@@ -1450,6 +1450,7 @@
 sub evt_on_item {
     my $this = shift;
     my ( $txt, $a_name ) = @_;
+    return qq{&lt;li&gt;$NL} if $txt eq &#039;*&#039;;
     return qq{&lt;li&gt;&lt;a name=&#039;$a_name&#039;&gt;&lt;/a&gt;&lt;b&gt;$txt&lt;/b&gt;&lt;/li&gt;$NL};
 }&lt;/pre&gt;

</description>
		<content:encoded><![CDATA[<p>The following patch was sent in by Bruce Eckel to fix formatting of some bulleted lists which had &#8216;*&#8217; everywhere.  It will be in the next kio_perldoc, or you can apply it to your pod2html.pl in the source directory and then reinstall.</p>
<pre>kde-svn $ ~/projects/kio_perldoc $ svn diff -r4:5
Index: pod2html.pl
===================================================================
--- pod2html.pl (revision 4)
+++ pod2html.pl (revision 5)
@@ -1450,6 +1450,7 @@
 sub evt_on_item {
     my $this = shift;
     my ( $txt, $a_name ) = @_;
+    return qq{&lt;li&gt;$NL} if $txt eq '*';
     return qq{&lt;li&gt;&lt;a name='$a_name'&gt;&lt;/a&gt;&lt;b&gt;$txt&lt;/b&gt;&lt;/li&gt;$NL};
 }</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=8eda5e9ed07a1e8f4b8681cae4fc09a1&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/2844fe5a13009f8.png" alt="Andreas Pakulat Identicon Icon" height="35" width="35" /> Andreas Pakulat</title>
		<link>http://www.purinchu.net/wp/2007/11/29/more-gifts/comment-page-1/#comment-5545</link>
		<dc:creator><img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=8eda5e9ed07a1e8f4b8681cae4fc09a1&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/2844fe5a13009f8.png" alt="Andreas Pakulat Identicon Icon" height="35" width="35" /> Andreas Pakulat</dc:creator>
		<pubDate>Thu, 29 Nov 2007 17:29:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.purinchu.net/wp/2007/11/29/more-gifts/#comment-5545</guid>
		<description>Hi, as one of the KDevelop developers I&#039;d say bring the KDE4 version straight into kdesdk when its ready. KDevelop4 won&#039;t have any perl support out of the box, so there&#039;s no reason to keep a perldoc ioslave in kdevelop.</description>
		<content:encoded><![CDATA[<p>Hi, as one of the KDevelop developers I&#8217;d say bring the KDE4 version straight into kdesdk when its ready. KDevelop4 won&#8217;t have any perl support out of the box, so there&#8217;s no reason to keep a perldoc ioslave in kdevelop.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: <img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=dffac244e94fc95dac63e8c57c02c96a&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/d9f6558fe31b747.png" alt="AK108 Identicon Icon" height="35" width="35" /> AK108</title>
		<link>http://www.purinchu.net/wp/2007/11/29/more-gifts/comment-page-1/#comment-5543</link>
		<dc:creator><img class="identicon" src="http://www.gravatar.com/avatar.php?gravatar_id=dffac244e94fc95dac63e8c57c02c96a&#38;size=35&#38;default=http://www.purinchu.net/wp/wp-content/plugins/wp-identicon/identicon/d9f6558fe31b747.png" alt="AK108 Identicon Icon" height="35" width="35" /> AK108</dc:creator>
		<pubDate>Thu, 29 Nov 2007 07:20:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.purinchu.net/wp/2007/11/29/more-gifts/#comment-5543</guid>
		<description>Thanks for this. It works great and was easy to install.</description>
		<content:encoded><![CDATA[<p>Thanks for this. It works great and was easy to install.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
