X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/d67c4817aab8b1ec0d70d453e35c47efd162a5bc..833610a5b4b2ebcb96c25751bef173d85f767522:/IkiWiki/Plugin/orphans.pm diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index def8e92d6..0f96b9397 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -4,7 +4,7 @@ package IkiWiki::Plugin::orphans; use warnings; use strict; -use IkiWiki; +use IkiWiki 2.00; sub import { #{{{ hook(type => "preprocess", id => "orphans", call => \&preprocess); @@ -26,9 +26,9 @@ sub preprocess (@) { #{{{ my @orphans; my $discussion=gettext("discussion"); - foreach my $page (keys %renderedfiles) { - next if $linkedto{$page}; - next unless pagespec_match($page, $params{pages}); + foreach my $page (keys %pagesources) { + next if $linkedto{$page} || $page eq 'index'; + next unless pagespec_match($page, $params{pages}, location => $params{page}); # If the page has a link to some other page, it's # indirectly linked to a page via that page's backlinks. next if grep { @@ -40,7 +40,15 @@ sub preprocess (@) { #{{{ } return gettext("All pages are linked to by other pages.") unless @orphans; - return "\n"; + return "\n"; } # }}} 1