vote up 0 vote down star

I'm creating an RSS (and/or Atom) feed for my website. Now, I can immediately think of two ways to do this:

  1. Use the same templating system I use to generate the HTML (Clearsilver if anyone's wondering), basically just treating the RSS feed like any other web page that happens to be in RSS+XML instead of XHTML
  2. Use an XML library, or an RSS library specifically, in my programming language of choice (Python) to create the feed programmatically and then write it out

Are there particular reasons to choose one approach over the other? From initial impressions, I'm leaning toward option 1, mostly because it's easier to understand.

EDIT: so I got one good answer from Bill. But in this particular case all the values for the fields of the RSS feed are already formatted as well-formed, properly escaped XHTML... any other opinions?

flag

67% accept rate
Wow, there are still people out there using clearsilver? I thought it had died years ago. – rabble Mar 27 at 20:46

2 Answers

vote up 1 vote down

Having done it both ways, I prefer #2. It'll do a better job escaping entities as needed, ensuring you produce well-formed XML, etc.

link|flag
vote up 0 vote down

Template are often faster and easier but if you want to make sure you generate valid xml and rss/atom then you should use the xml library. If you write a test which validates your template generated xml then you should be fine.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.