<?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: Podcastamatic</title>
	<atom:link href="http://kenwardtown.com/podcastamatic/feed/" rel="self" type="application/rss+xml" />
	<link>http://kenwardtown.com</link>
	<description></description>
	<lastBuildDate>Sat, 17 Dec 2011 18:13:25 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Yann</title>
		<link>http://kenwardtown.com/podcastamatic/comment-page-1/#comment-3746</link>
		<dc:creator>Yann</dc:creator>
		<pubDate>Sat, 08 Nov 2008 15:05:38 +0000</pubDate>
		<guid isPermaLink="false">http://kenwardtown.com/podcastamatic/#comment-3746</guid>
		<description>I installed podcastamatic a couple of days ago on FreeBSD/Perl5.8.8 machine and I ran across a problem with MP3 where the tags contains accented characters. This resulted in an invalid feed beeing generated because the latin1 encoded text was output as is in the feed. I patched the source so that the conversion to UTF-8 would be done before generating the feed and it worked. I thought I&#039;d share that fix with you.

BTW the first google result for &quot;podcastamatic&quot; returns an old page of yours with broken links and no way to contact you, I had to dig deep to find your real, active blog.

--- podcastamatic.pl	2008-11-08 15:57:13.000000000 +0100
+++ /usr/local/bin/podcastamatic	2008-11-08 16:05:00.000000000 +0100
@@ -178,10 +178,10 @@
 sub MakeHTML {
 	logprint &quot;Building automatic HTML file \&quot;$Config{HTMLServerSide}\&quot;\n&quot;;
 	
-	open (HTMLFILE, &#039;&gt;&#039;, $Config{HTMLServerSide}) or logdie &quot;Can&#039;t open \&quot;$Config{HTMLServerSide}\&quot; for HTML output.\n&quot;;
+	open (HTMLFILE, &#039;&gt;utf8&#039;, $Config{HTMLServerSide}) or logdie &quot;Can&#039;t open \&quot;$Config{HTMLServerSide}\&quot; for HTML output.\n&quot;;
 	print HTMLFILE &quot;&quot;;
 	print HTMLFILE &quot;\n\n&quot;;
-	print HTMLFILE &quot;\n&quot;;
+	print HTMLFILE &quot;\n&quot;;
 	print HTMLFILE &quot;\n&quot;;
 	print HTMLFILE &quot;\n&quot;;
 	print HTMLFILE &quot;$Config{Title}\n&quot;;
@@ -212,7 +212,7 @@
 	
 	logprint &quot;Building XML file \&quot;$Config{XMLServerSide}\&quot;\n&quot;;
 	
-	open (XMLFILE, &#039;&gt;&#039;, $Config{XMLServerSide}) or logdie &quot;Can&#039;t open \&quot;$Config{XMLServerSide}\&quot; for XML output.\n&quot;;
+	open (XMLFILE, &#039;&gt;utf8&#039;, $Config{XMLServerSide}) or logdie &quot;Can&#039;t open \&quot;$Config{XMLServerSide}\&quot; for XML output.\n&quot;;
 	
 	print XMLFILE &quot;\n&quot;;</description>
		<content:encoded><![CDATA[<p>I installed podcastamatic a couple of days ago on FreeBSD/Perl5.8.8 machine and I ran across a problem with MP3 where the tags contains accented characters. This resulted in an invalid feed beeing generated because the latin1 encoded text was output as is in the feed. I patched the source so that the conversion to UTF-8 would be done before generating the feed and it worked. I thought I&#8217;d share that fix with you.</p>
<p>BTW the first google result for &#8220;podcastamatic&#8221; returns an old page of yours with broken links and no way to contact you, I had to dig deep to find your real, active blog.</p>
<p>&#8212; podcastamatic.pl	2008-11-08 15:57:13.000000000 +0100<br />
+++ /usr/local/bin/podcastamatic	2008-11-08 16:05:00.000000000 +0100<br />
@@ -178,10 +178,10 @@<br />
 sub MakeHTML {<br />
 	logprint &#8220;Building automatic HTML file \&#8221;$Config{HTMLServerSide}\&#8221;\n&#8221;;</p>
<p>-	open (HTMLFILE, &#8216;&gt;&#8217;, $Config{HTMLServerSide}) or logdie &#8220;Can&#8217;t open \&#8221;$Config{HTMLServerSide}\&#8221; for HTML output.\n&#8221;;<br />
+	open (HTMLFILE, &#8216;&gt;utf8&#8242;, $Config{HTMLServerSide}) or logdie &#8220;Can&#8217;t open \&#8221;$Config{HTMLServerSide}\&#8221; for HTML output.\n&#8221;;<br />
 	print HTMLFILE &#8220;&#8221;;<br />
 	print HTMLFILE &#8220;\n\n&#8221;;<br />
-	print HTMLFILE &#8220;\n&#8221;;<br />
+	print HTMLFILE &#8220;\n&#8221;;<br />
 	print HTMLFILE &#8220;\n&#8221;;<br />
 	print HTMLFILE &#8220;\n&#8221;;<br />
 	print HTMLFILE &#8220;$Config{Title}\n&#8221;;<br />
@@ -212,7 +212,7 @@</p>
<p> 	logprint &#8220;Building XML file \&#8221;$Config{XMLServerSide}\&#8221;\n&#8221;;</p>
<p>-	open (XMLFILE, &#8216;&gt;&#8217;, $Config{XMLServerSide}) or logdie &#8220;Can&#8217;t open \&#8221;$Config{XMLServerSide}\&#8221; for XML output.\n&#8221;;<br />
+	open (XMLFILE, &#8216;&gt;utf8&#8242;, $Config{XMLServerSide}) or logdie &#8220;Can&#8217;t open \&#8221;$Config{XMLServerSide}\&#8221; for XML output.\n&#8221;;</p>
<p> 	print XMLFILE &#8220;\n&#8221;;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

