X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/b144831e462e0d2ba8225f6e5f7d9138efb03c77..f8cc87e8ee68d83eced465e90e9fd657646ad3c8:/IkiWiki/Plugin/pingee.pm diff --git a/IkiWiki/Plugin/pingee.pm b/IkiWiki/Plugin/pingee.pm index ee799a57a..fcbe6b57b 100644 --- a/IkiWiki/Plugin/pingee.pm +++ b/IkiWiki/Plugin/pingee.pm @@ -5,11 +5,20 @@ use warnings; use strict; use IkiWiki 2.00; -sub import { #{{{ - hook(type => "cgi", id => "aggregate", call => \&cgi); -} # }}} +sub import { + hook(type => "getsetup", id => "pingee", call => \&getsetup); + hook(type => "cgi", id => "pingee", call => \&cgi); +} -sub cgi ($) { #{{{ +sub getsetup () { + return + plugin => { + safe => 1, + rebuild => undef, + }, +} + +sub cgi ($) { my $cgi=shift; if (defined $cgi->param('do') && $cgi->param("do") eq "ping") { @@ -28,6 +37,6 @@ sub cgi ($) { #{{{ IkiWiki::saveindex(); exit 0; } -} #}}} +} 1