<?xml version="1.0" encoding="UTF-8"?>
<rss version="0.92" xml:lang="en-US.utf8">
<CFQUERY NAME="Threads" datasource="onehit" maxrows="10" > 
SELECT  Threads.Thread_ID, Threads.Name, Messages.ThreadUserName, Messages.Body, Messages.Posted
FROM Messages Messages INNER JOIN Threads Threads ON Messages.Thread_ID = Threads.Thread_ID
WHERE (Messages.Parent_message_ID = 0)
ORDER BY Threads.Thread_ID DESC
</CFQUERY>
	<channel>
		<title>One Hit Wonder Central - Recent Posts</title>
		<link>http://www.onehitwondercentral.com/forum/</link>
		<description><![CDATA[A discussion of all music but especially one hit wonders.]]></description>
<cfoutput query="Threads">
		<item>
			<title><![CDATA[#Name#]]></title>
			<link>http://www.onehitwondercentral.com/forum/thread.cfm?threadid=#Thread_ID#</link>
			<description><![CDATA[#Body#]]></description>
			<category>General Discussion</category>
			<comments>http://www.onehitwondercentral.com/forum/thread.cfm?threadid=#Thread_ID#</comments>
			<pubDate>#DateFormat(Posted, 'ddd, dd mmm yyyy hh:mm:ss')# CST</pubDate>
			<guid>http://www.onehitwondercentral.com/forum/thread.cfm?threadid=#Thread_ID#</guid>
		</item>
</cfoutput>
	</channel>
</rss>
