2 package IkiWiki::Plugin::pingee;
9 hook(type => "getsetup", id => "pingee", call => \&getsetup);
10 hook(type => "cgi", id => "pingee", call => \&cgi);
24 if (defined $cgi->param('do') && $cgi->param("do") eq "ping") {
26 print "Content-Type: text/plain\n\n";
30 print gettext("Ping received.")."\n\n";
34 require IkiWiki::Render;
35 IkiWiki::rcs_update();