Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
po(match_lang, match_currentlang): use the lang() function
[git.ikiwiki.info.git]
/
IkiWiki
/
Plugin
/
brokenlinks.pm
diff --git
a/IkiWiki/Plugin/brokenlinks.pm
b/IkiWiki/Plugin/brokenlinks.pm
index 0295a8fe6b570d7b49503ba6587ae41a28f0cfa7..37752dd3ef9e9b4113bfcaa1a9b49bb0a4e06bab 100644
(file)
--- a/
IkiWiki/Plugin/brokenlinks.pm
+++ b/
IkiWiki/Plugin/brokenlinks.pm
@@
-7,9
+7,18
@@
use strict;
use IkiWiki 2.00;
sub import { #{{{
use IkiWiki 2.00;
sub import { #{{{
+ hook(type => "getsetup", id => "brokenlinks", call => \&getsetup);
hook(type => "preprocess", id => "brokenlinks", call => \&preprocess);
} # }}}
hook(type => "preprocess", id => "brokenlinks", call => \&preprocess);
} # }}}
+sub getsetup { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => undef,
+ },
+} #}}}
+
sub preprocess (@) { #{{{
my %params=@_;
$params{pages}="*" unless defined $params{pages};
sub preprocess (@) { #{{{
my %params=@_;
$params{pages}="*" unless defined $params{pages};