]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/skeleton.pm
* Patch from Tuomov to link to the directory in feeds when usedirs is in
[ikiwiki.git] / IkiWiki / Plugin / skeleton.pm
index feb0f7419b26948624e1d3d96b5af3fc82e906a4..8b51b155081c20a943f2b0dc2ffb8db29441be95 100644 (file)
@@ -6,7 +6,7 @@ package IkiWiki::Plugin::skeleton;
 
 use warnings;
 use strict;
-use IkiWiki '1.00';
+use IkiWiki '1.02';
 
 sub import { #{{{
        hook(type => "getopt", id => "skeleton",  call => \&getopt);
@@ -21,6 +21,7 @@ sub import { #{{{
        hook(type => "change", id => "skeleton", call => \&change);
        hook(type => "cgi", id => "skeleton", call => \&cgi);
        hook(type => "auth", id => "skeleton", call => \&auth);
+       hook(type => "canedit", id => "skeleton", call => \&canedit);
        hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
        hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
        hook(type => "savestate", id => "savestate", call => \&savestate);
@@ -105,6 +106,14 @@ sub auth ($$) { #{{{
        debug("skeleton plugin running in auth");
 } #}}}
 
+sub canedit ($$$) { #{{{
+       my $page=shift;
+       my $cgi=shift;
+       my $session=shift;
+
+       debug("skeleton plugin running in canedit");
+} #}}}
+
 sub formbuilder_setup (@) { #{{{
        my %params=@_;