RssFeed


The RSS feed is generated by EricHsu's RSSFeedEH plugin.

A small hack was implemented to serve the RssFeed as text/xml. It was based on mike808's patch, but suffered a small modification because this wiki attempts to validate as XHTML 1.0 Strict, wherefore all of this wiki's pages have an XML declaration at the top:

} else { my $header = $driver->cookie->header; + # Cheap hack to convert HTML to XML content type + if ($html =~ m/\n<rss version="0.91">/) { # Sniff for XML + $header =~ s{^(Content-Type:\s+).*}{$1text/xml}im; + } $driver->encode($header); $driver->encode($html); print $header, $html; }