Community Server RSS Feed

I’m doing a little side project for myself that deals with rss, so to
test it I’m using the codebetter.com bloggers feeds. A little quirk (I
think) that I found is that the rss feeds that are produced from
Community Server have some weird elements. For instance, the
<author> element does not exist, instead it uses a
<dc:creator> element which contains the author of the post. 
Another one is the <comments> tag that should have a url for
comments, this one is replaced by <wfw:commentRss>.  Both of
these custom tags are defined in a namespace, per the rss spec, but I
still don’t understand why they don’t just use the typical elements for
this information, I’m starting to realize how difficult it would be to
write a robust feed parser (which is not what I want to do).

I’m attempting to use feedparser to parse my rss feeds, and I wanted to
use it in conjunction with IronPython, which I’ve only started playing
around with.  A key feature that I want is the ability to compile
a .py file so that I can consume that file in my c# code.  I’m
looking to compile the feedparser file, and then use that as my parsing
in my project. feedparser is nice because it appears to be very robust
(its got 2000 unit test, whoa!). So hopefully I can get feedparser
working with IronPython in my c# project, that be sweet. :)

2 Comments so far »

  1. Anonymous said,

    Wrote on July 15, 2005 @ 11:43 pm

    I went down that road and ended up using the Monad beta: http://odetocode.com/Blogs/scott/archive/2005/07/08/1916.aspx

  2. breichelt said,

    Wrote on July 16, 2005 @ 5:24 pm

    Thanks Scott, I’ve been following Adam’s blog, but for some reason, never connected the two! I’ll give it a shot

Comment RSS · TrackBack URI

Leave a Comment

Name: (Required)

E-mail: (Required)

Website:

Enter my name (ben) in this box, so I know you're a human.

Comment: