Coding style change: Remove explcit vim folding markers.
[ikiwiki.git] / IkiWiki / Plugin / anonok.pm
index 1880516d568b35e2b96463676d23c04c62f103f2..1cbdfe4e5f337972c5c2a92e3cbb84aa5ebd514b 100644 (file)
@@ -5,11 +5,28 @@ use warnings;
 use strict;
 use IkiWiki 2.00;
 
-sub import { #{{{
-       hook(type => "canedit", id => "anonok", call => \&canedit,);
-} # }}}
+sub import {
+       hook(type => "getsetup", id => "anonok", call => \&getsetup);
+       hook(type => "canedit", id => "anonok", call => \&canedit);
+}
 
-sub canedit ($$$) { #{{{
+sub getsetup () {
+       return
+               plugin => {
+                       safe => 1,
+                       rebuild => 0,
+               },
+               anonok_pagespec => {
+                       type => "pagespec",
+                       example => "*/discussion",
+                       description => "PageSpec to limit which pages anonymous users can edit",
+                       link => "ikiwiki/PageSpec",
+                       safe => 1,
+                       rebuild => 0,
+               },
+}
+
+sub canedit ($$$) {
        my $page=shift;
        my $cgi=shift;
        my $session=shift;
@@ -28,6 +45,6 @@ sub canedit ($$$) { #{{{
        else {
                return "";
        }
-} #}}}
+}
 
 1