The new forums will be named Coin Return (based on the most recent vote)! You can check on the status and timeline of the transition to the new forums here.
The Guiding Principles and New Rules document is now in effect.
The fixes aren't difficult: the dates need to be formatted in the correct format, the description elements need to be either entity encoded or wrapped in CDATA directives, both of which are easy fixes.
One other change that ought to be made is that the guid element contains bad information: it should be globally unique, not just unique within the feed. The best fix would be to take the URL that's currently being used to populate the link element in each feed entry, put that in the guid elements, add the attribute isPermaLink="true" to the guid, and remove the link element entirely.
Basically, rather than this:
<item>
<link>
http://penny-arcade.com/patv/episode/games-you-might-not-have-tried-2
</link>
<title><![CDATA[Extra Credits Season 3, Ep. 10: Games You Might Not Have Tried #2]]></title>
<description>This week, we list off some more interesting games you might never have heard of (or gotten around to trying).<br />
Come discuss the topic with us in the forums!<br />
<a href="http://extracurricular.tk/forum/viewtopic.php?&t=528">http://extracurricular.tk/forum/viewtopic.php?&t=528</a>
</description>
<pubDate>2011-09-28T07:01:55+00:00</pubDate>
<guid>/patv/episode/games-you-might-not-have-tried-2</guid>
</item>
You'd have this:
<item>
<guid isPermaLink="true">
http://penny-arcade.com/patv/episode/games-you-might-not-have-tried-2
</guid>
<title><![CDATA[Extra Credits Season 3, Ep. 10: Games You Might Not Have Tried #2]]></title>
<description><![CDATA[
This week, we list off some more interesting games you might never have heard of (or gotten around to trying).<br />
Come discuss the topic with us in the forums!<br />
<a href="http://extracurricular.tk/forum/viewtopic.php?&t=528">http://extracurricular.tk/forum/viewtopic.php?&t=528</a>
]]></description>
<pubDate>Wed, 28 Sep 2011 07:01:55 GMT</pubDate>
</item>
The lastBuildDate element in the feed metadata would have to have its format fixed similarly to the pubDate element in the example above.
I checked, and the feed for the PA comic has similar issues, but oddly, the contents of the description element is being wrapped in a CDATA directive properly. This may then be a site-wide issue with the RSS generation code, and not just isolated to the video section of the site.
Posts
The fixes aren't difficult: the dates need to be formatted in the correct format, the description elements need to be either entity encoded or wrapped in CDATA directives, both of which are easy fixes.
One other change that ought to be made is that the guid element contains bad information: it should be globally unique, not just unique within the feed. The best fix would be to take the URL that's currently being used to populate the link element in each feed entry, put that in the guid elements, add the attribute isPermaLink="true" to the guid, and remove the link element entirely.
Basically, rather than this:
You'd have this:
The lastBuildDate element in the feed metadata would have to have its format fixed similarly to the pubDate element in the example above.