Blosxom hack

Well after a bit of reading through the code for Blosxom I’ve tracked down the right place to put a temporary hack in to create the required entry into the RSS output. It lacks the seconds information on the time so I have manually set them to :00 (not a major issue, but untidy to my mind). There also doesn’t appear to be a suitable variable to use for the timezone information. For now I’ve done another nasty manual configuration of +0100, but clearly this isn’t going to work well once the clocks go back again! The question is will this hack actually work beyond a visual inspection of the output!

Here’s the diff from the original Blosxom code for anyone interested:

436c436
< rss story   <item>\n   <title>$title</title>\n   <link>$url/$yr/$mo_num/$da#$fn
</link>\n<description>$body</description>\n   </item>\n
---
> rss story   <item>\n   <title>$title</title>\n   <link>$url/$yr/$mo_num/$da#$fn
</link>\n<description>$body</description>\n   <pubDate>$dw, $da $mo $yr $ti:00 +0
100</pubDate>\n   </item>\n

Splitting the Atom

OK, a very quick update here to note that I’ve made a few modifications to my Blosxom install. First off I’ve added a calendar plugin (currently on the left hand side). Nothing fancy, but looks to do the job – and I’m hoping that the movement between months will present some live links once I’ve got some posts in more than just the single month!

The second one is the new Atom feed. This is partly a stop gap pending getting an RSS 2.0 feed working properly, but I’ll probably leave it there. This took a little bit of playing around with to get it working, but in the end all that was needed was installing XML/Parser.pm which came in the libxml-parser-perl Debian package. This brought a small selection of other packages with it, but I’ll investigate that later 🙂