]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/skeleton.pm
web commit by hb: titles
[ikiwiki.git] / IkiWiki / Plugin / skeleton.pm
index 8b51b155081c20a943f2b0dc2ffb8db29441be95..fb4cfe9afada4bc62398f32b208cb9c1490b2ec8 100644 (file)
@@ -6,11 +6,12 @@ package IkiWiki::Plugin::skeleton;
 
 use warnings;
 use strict;
-use IkiWiki '1.02';
+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);
@@ -35,6 +36,10 @@ sub checkconfig () { #{{{
        debug("skeleton plugin checkconfig");
 } #}}}
 
+sub needsbuild () { #{{{
+       debug("skeleton plugin needsbuild");
+} #}}}
+
 sub preprocess (@) { #{{{
        my %params=@_;