X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/102f29e500df27a79b2895067f8a6a31bb2df7e6..a63929f6cc7778ffc4ba57d784cdf2206ec650c7:/IkiWiki/Plugin/anonok.pm diff --git a/IkiWiki/Plugin/anonok.pm b/IkiWiki/Plugin/anonok.pm index d5e409117..0e74cbfad 100644 --- a/IkiWiki/Plugin/anonok.pm +++ b/IkiWiki/Plugin/anonok.pm @@ -3,27 +3,31 @@ package IkiWiki::Plugin::anonok; use warnings; use strict; -use IkiWiki 2.00; +use IkiWiki 3.00; -sub import { #{{{ +sub import { hook(type => "getsetup", id => "anonok", call => \&getsetup); hook(type => "canedit", id => "anonok", call => \&canedit); -} # }}} +} -sub getsetup () { #{{{ +sub getsetup () { return + plugin => { + safe => 1, + rebuild => 0, + section => "auth", + }, anonok_pagespec => { - type => "string", + type => "pagespec", example => "*/discussion", description => "PageSpec to limit which pages anonymous users can edit", - description_html => htmllink("", "", "ikiwiki/PageSpec", noimageinline => 1). - " to limit which pages anonymous users can edit", + link => "ikiwiki/PageSpec", safe => 1, rebuild => 0, }, -} #}}} +} -sub canedit ($$$) { #{{{ +sub canedit ($$$) { my $page=shift; my $cgi=shift; my $session=shift; @@ -42,6 +46,6 @@ sub canedit ($$$) { #{{{ else { return ""; } -} #}}} +} 1