]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/skeleton.pm
* Add the needsbuild hook. Plugins can use this to manipulate which files
[ikiwiki.git] / IkiWiki / Plugin / skeleton.pm
index f3244ae14ce05bd7b9fff85acb21a15ed1ddb9a7..fb4cfe9afada4bc62398f32b208cb9c1490b2ec8 100644 (file)
@@ -6,11 +6,12 @@ package IkiWiki::Plugin::skeleton;
 
 use warnings;
 use strict;
-use IkiWiki '1.00';
+use IkiWiki 2.00;
 
 sub import { #{{{
        hook(type => "getopt", id => "skeleton",  call => \&getopt);
        hook(type => "checkconfig", id => "skeleton", call => \&checkconfig);
+       hook(type => "needsbuild", id => "skeleton", call => \&needsbuild);
        hook(type => "preprocess", id => "skeleton", call => \&preprocess);
        hook(type => "filter", id => "skeleton", call => \&filter);
        hook(type => "htmlize", id => "skeleton", call => \&htmlize);
@@ -21,6 +22,9 @@ 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);
 } # }}}
 
@@ -32,6 +36,10 @@ sub checkconfig () { #{{{
        debug("skeleton plugin checkconfig");
 } #}}}
 
+sub needsbuild () { #{{{
+       debug("skeleton plugin needsbuild");
+} #}}}
+
 sub preprocess (@) { #{{{
        my %params=@_;
 
@@ -103,6 +111,26 @@ 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=@_;
+       
+       debug("skeleton plugin running in formbuilder_setup");
+} # }}}
+
+sub formbuilder (@) { #{{{
+       my %params=@_;
+       
+       debug("skeleton plugin running in formbuilder");
+} # }}}
+
 sub savestate () { #{{{
        debug("skeleton plugin running in savestate");
 } #}}}