X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/912521ef0711204965aa2319d41c7741bd3f4f4c..35ab3237fa367d82c7062eb172e1a8c90278bef0:/IkiWiki/Plugin/orphans.pm diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index 6ba37615e..f221954b8 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -25,21 +25,30 @@ sub preprocess (@) { #{{{ } my @orphans; + my $discussion=gettext("discussion"); foreach my $page (keys %renderedfiles) { next if $linkedto{$page}; - next unless pagespec_match($page, $params{pages}); + next unless pagespec_match($page, $params{pages}, $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 { length $_ && - ($_ !~ /\/Discussion$/i || ! $config{discussion}) && + ($_ !~ /\/\Q$discussion\E$/i || ! $config{discussion}) && bestlink($page, $_) !~ /^($page|)$/ } @{$links{$page}}; push @orphans, $page; } return gettext("All pages are linked to by other pages.") unless @orphans; - return "\n"; + return "\n"; } # }}} 1