I found some time this weekend to do some more work on my TPF grant to improve Smolder. I'll be doing a presentation to the Raliegh Perl Mongers on Smolder the first week of June, so I'll need to find some more time pretty soon too. Plus I'll need to definitely finish this round of work before YAPC and OSCON.
The first milestone (ditching the old XML format for plain TAP) is now feature complete (with tests of course). The accepted format is now a TAR archive containing TAP files with one YAML file with META information about the test run. To see more documentation see http://smolder.svn.sourceforge.net/viewvc/smolder/trunk/docs/upload_file_format
The next 2 milestones have to do with setting up a system to easily automate CPAN style distributions for automatic testing from svn, etc. I've put this off for a few days but will get to it soon.
The 4th milestone was to add project specific RSS feeds. I was originally planning on using XML::RSS, but I've decided to go a simpler route. I don't need to parse RSS or do anything fancy other than emit XML using RSS tags. Using a template would be much easier. It also means I don't need to include the dependencies of XML::RSS inside of Smolder either, so it's that much smaller.
This milestone is now feature complete as well. That just leaves 2 left.
How about XML::Atom::SimpleFeed? (Score:1)
First – please, please emit Atom, not RSS. It is much better tech than RSS 2.0, and just as widely supported. If you’re writing new code to consume feeds, you need to support both formats (and more besides), but if you’re writing new code to produce feeds, there’s no technical reason to emit anything but Atom.
As for generating XML using templates: that isn’t difficult if you know what you’re doing, but there is a whole host of niggly little issues that you need to be aw
Re: (Score:1)
I understand that people are pretty opinionated on the RSS vs Atom debate (and there may be a "right" side... I admit to not having followed it too closely), but RSS is simply more recognized as a term for a data feed. I have no problems with emitting both though.
Re: (Score:1)
Sure. So just call the Atom feed “RSS”. Nobody will notice, and those who do won’t care. (I sure won’t.) Works for “Kleenex”.
The devil is in the “just” – writing a different template is no easier than writing code to use another module.
Btw, if you choose to take the template route, you’ll still want to pick Atom – it
Re: (Score:1)
Thanks for the heads up about both points.
Re: (Score:1)
Oh yeah, Carp::Clean; forgot about that. That will be going away in the next release too. :-)