use warnings;
use strict;
use IkiWiki;
+use HTML::Entities q{encode_entities_numeric};
sub import { #{{{
IkiWiki::hook(type => "preprocess", id => "inline",
my $page=shift;
my @pages=@_;
- my $url="$config{url}/".htmlpage($page);
+ my $url=encode_entities_numeric("$config{url}/".htmlpage($page));
my $itemtemplate=template("rssitem.tmpl", blind_cache => 1,
die_on_bad_params => 0);
foreach my $p (@pages) {
next unless exists $renderedfiles{$p};
+ my $u=encode_entities_numeric("$config{url}/$renderedfiles{$p}");
+
$itemtemplate->param(
title => pagetitle(basename($p)),
- url => "$config{url}/$renderedfiles{$p}",
- permalink => "$config{url}/$renderedfiles{$p}",
+ url => $u,
+ permalink => $u,
pubdate => date_822($pagectime{$p}),
content => absolute_urls(get_inline_content($p, $page), $url),
);
* Add permalink and author support to meta plugin, affecting RSS feeds
and blog pages.
* Various CSS and formatting changes.
+ * Encode link and guid urls in rss feeds to avoid illegal utf8 slipping in.
- -- Joey Hess <joeyh@debian.org> Thu, 3 Aug 2006 18:45:36 -0400
+ -- Joey Hess <joeyh@debian.org> Thu, 3 Aug 2006 21:36:09 -0400
ikiwiki (1.15) unstable; urgency=low