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