aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/pingee.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-03 17:20:21 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-03 17:20:21 -0400
commit39195de96e6f705e4a5741254d6d01d14127005c (patch)
treef117af4aa10e4bc65958b4381379bfd4cfa64c4a /IkiWiki/Plugin/pingee.pm
parent1230e914b1859e1108033319ade26f30693deccc (diff)
downloadikiwiki-39195de96e6f705e4a5741254d6d01d14127005c.tar
ikiwiki-39195de96e6f705e4a5741254d6d01d14127005c.tar.gz
add plugin safe/rebuild info (part 2 of 3)
(brain.. melting..)
Diffstat (limited to 'IkiWiki/Plugin/pingee.pm')
-rw-r--r--IkiWiki/Plugin/pingee.pm11
1 files changed, 10 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/pingee.pm b/IkiWiki/Plugin/pingee.pm
index ee799a57a..c2f21b0cf 100644
--- a/IkiWiki/Plugin/pingee.pm
+++ b/IkiWiki/Plugin/pingee.pm
@@ -6,9 +6,18 @@ use strict;
use IkiWiki 2.00;
sub import { #{{{
- hook(type => "cgi", id => "aggregate", call => \&cgi);
+ hook(type => "getsetup", id => "pingee", call => \&getsetup);
+ hook(type => "cgi", id => "pingee", call => \&cgi);
} # }}}
+sub getsetup () { #{{{
+ return
+ plugin => {
+ safe => 1,
+ rebuild => undef,
+ },
+} #}}}
+
sub cgi ($) { #{{{
my $cgi=shift;