]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/anonok.pm
add plugin safe/rebuild info (part 1 of 2)
[ikiwiki.git] / IkiWiki / Plugin / anonok.pm
index ba02325ff7e1b8a8089797952623c9e4f4cd77b0..521b07f40897abf8f1f0567f20a41af93100099b 100644 (file)
@@ -6,9 +6,26 @@ use strict;
 use IkiWiki 2.00;
 
 sub import { #{{{
-       hook(type => "canedit", id => "anonok", call => \&canedit,);
+       hook(type => "getsetup", id => "anonok", call => \&getsetup);
+       hook(type => "canedit", id => "anonok", call => \&canedit);
 } # }}}
 
+sub getsetup () { #{{{
+       return
+               plugin => {
+                       safe => 0,
+                       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;
@@ -16,7 +33,7 @@ sub canedit ($$$) { #{{{
 
        my $ret;
 
-       if (length $config{anonok_pagespec}) {
+       if (exists $config{anonok_pagespec} && length $config{anonok_pagespec}) {
                if (pagespec_match($page, $config{anonok_pagespec},
                                   location => $page)) {
                        return "";