We have a blog (similar to the guest book idea) Users post, It creating dtml documents and the index page iterates through them to give a 'visual' output. We'd like this to be rss compliant and use an internal aggregator so we've written the following xml page to go with it : <?xml version="1.0" encoding="ISO-8859-1" ?> <rss version="2.0"> <channel> <title>KFPL on Zope</title> <link>http://192.168.10.73/kfplsite</link> <description>Kingston Frontenac Public Library Site</description> <language>en-us</language> <image> <title>homepic.JPG</title> <url>http://192.168.10.73/kfplsite/images/homepic.JPG</url> <link>http://192.168.10.73/kfplsite</link> <width>60.1</width> <height>42.9</height> </image> <dtml-in expr="objectValues('DTML Document')"sort="bobobase_modification_time" reverse> <item> <title> Central Blog </title> <link> http://192.168.10.73/staffnet/blog</link> <description><dtml-var document_src html_quote> Submitted by: <dtml-var staff_name html_quote null="Anonymous"> on: <dtml-var bobobase_modification_time fmt=aCommon> </description> </item> </dtml-in> </channel> </rss> To me this seems right but the aggregator seems to be having trouble with it. have I missed something? Katie Legere Kingston Frontenac Public Library
On Tue, Oct 28, 2003 at 03:32:23PM -0500, Katie Legere wrote:
We have a blog (similar to the guest book idea) Users post, It creating dtml documents and the index page iterates through them to give a 'visual' output. We'd like this to be rss compliant and use an internal aggregator so we've written the following xml page to go with it :
<SNIP> example
To me this seems right but the aggregator seems to be having trouble with it. have I missed something?
Try running it through http://feedvalidator.org/; it'll give you plenty of detail on how compliant your RSS feed is. -- Martijn Pieters | Software Engineer mailto:mj@zope.com | Zope Corporation http://www.zope.com/ | Creators of Zope http://www.zope.org/ ---------------------------------------------
participants (2)
-
Katie Legere -
Martijn Pieters