X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/dae0f48e91304afcb6ebe0936360e51b22a56548..89484c06d97cc7d47118ba9bcf6039431d3ff368:/IkiWiki/Plugin/orphans.pm diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index 3a8a7954f..39d836a01 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -25,20 +25,21 @@ 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 "All pages are linked to by other pages." unless @orphans; + return gettext("All pages are linked to by other pages.") unless @orphans; return "\n"; } # }}}