From 96bfdbf1be49b4911274569c58d523f7550c5fb1 Mon Sep 17 00:00:00 2001 From: Joey Hess Date: Tue, 16 Oct 2012 10:35:53 -0400 Subject: [PATCH] really fix diff display to not show both types of diff 12fa9c031f7a9dc25dba628aa91fc347586e4ab6 porported to fix this, but failed --- IkiWiki/Plugin/recentchanges.pm | 6 ++++++ debian/changelog | 3 +++ templates/change.tmpl | 4 +++- 3 files changed, 12 insertions(+), 1 deletion(-) diff --git a/IkiWiki/Plugin/recentchanges.pm b/IkiWiki/Plugin/recentchanges.pm index 8ce9474be..4c1863255 100644 --- a/IkiWiki/Plugin/recentchanges.pm +++ b/IkiWiki/Plugin/recentchanges.pm @@ -165,6 +165,7 @@ sub store ($$$) { # Limit pages to first 10, and add links to the changed pages. my $is_excess = exists $change->{pages}[10]; delete @{$change->{pages}}[10 .. @{$change->{pages}}] if $is_excess; + my $has_diffurl=0; $change->{pages} = [ map { if (length $config{cgiurl}) { @@ -180,6 +181,9 @@ sub store ($$$) { else { $_->{link} = pagetitle($_->{page}); } + if (defined $_->{diffurl}) { + $has_diffurl=1; + } $_; } @{$change->{pages}} @@ -227,6 +231,8 @@ sub store ($$$) { wikiname => $config{wikiname}, ); + $template->param(has_diffurl => 1) if $has_diffurl; + $template->param(permalink => urlto($config{recentchangespage})."#change-".titlepage($change->{rev})) if exists $config{url}; diff --git a/debian/changelog b/debian/changelog index b87d6f9eb..051b3048a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -12,6 +12,9 @@ ikiwiki (3.20120726) UNRELEASED; urgency=low To enable this protection, set cgi_overload_delay to the number of seconds to wait. This is not enabled by default. * Add back a 1em margin between archivepage divs. + * recentchangesdiff: Correct broken template that resulted in duplicate + diff icons being displayed, and bloated the recentchanges page with + inline diffs when the configuration should have not allowed them. -- Joey Hess Thu, 30 Aug 2012 11:56:12 -0400 diff --git a/templates/change.tmpl b/templates/change.tmpl index 2b7b058c0..989315a8d 100644 --- a/templates/change.tmpl +++ b/templates/change.tmpl @@ -9,9 +9,11 @@ - +
-- 
2.32.0.93.g670b81a890