summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--IkiWiki/Plugin/inline.pm9
-rw-r--r--debian/changelog3
2 files changed, 8 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
index 71e71c02e..4410a2017 100644
--- a/IkiWiki/Plugin/inline.pm
+++ b/IkiWiki/Plugin/inline.pm
@@ -5,6 +5,7 @@ package IkiWiki::Plugin::inline;
use warnings;
use strict;
use IkiWiki;
+use HTML::Entities q{encode_entities_numeric};
sub import { #{{{
IkiWiki::hook(type => "preprocess", id => "inline",
@@ -162,7 +163,7 @@ sub genrss ($@) { #{{{
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);
@@ -170,10 +171,12 @@ sub genrss ($@) { #{{{
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),
);
diff --git a/debian/changelog b/debian/changelog
index 2f5f2afd1..7721dd374 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -8,8 +8,9 @@ ikiwiki (1.16) UNRELEASED; urgency=low
* 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