X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/99292550fdf3c5bf9feb4a665e2de99f5cfc0d35..35c90a5b582f0d40a122b151580e313c2b157b6f:/IkiWiki/Plugin/orphans.pm diff --git a/IkiWiki/Plugin/orphans.pm b/IkiWiki/Plugin/orphans.pm index 06b51bddc..ac4b77527 100644 --- a/IkiWiki/Plugin/orphans.pm +++ b/IkiWiki/Plugin/orphans.pm @@ -4,9 +4,11 @@ package IkiWiki::Plugin::orphans; use warnings; use strict; +use IkiWiki; sub import { #{{{ - IkiWiki::register_plugin("preprocess", "orphans", \&preprocess); + IkiWiki::hook(type => "preprocess", id => "orphans", + call => \&preprocess); } # }}} sub preprocess (@) { #{{{ @@ -29,12 +31,16 @@ sub preprocess (@) { #{{{ next unless IkiWiki::globlist_match($page, $params{pages}); # 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 && IkiWiki::bestlink($page, $_) ne $page } @{$IkiWiki::links{$page}}; + next if grep { + length $_ && + ($_ !~ /\/Discussion$/i || ! $IkiWiki::config{discussion}) && + IkiWiki::bestlink($page, $_) !~ /^($page|)$/ + } @{$IkiWiki::links{$page}}; push @orphans, $page; } return "All pages are linked to by other pages." unless @orphans; - return "\n"; + return "\n"; } # }}} 1