]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/skeleton.pm
* Add getopt hook type, this allows plugins to add new command-line options.
[ikiwiki.git] / IkiWiki / Plugin / skeleton.pm
index d6d8cc0eddf588804519895d7355941c5d1ed9df..27da50e6fba80fe7c998dbbcb7b4265c56f42a76 100644 (file)
@@ -9,18 +9,32 @@ use strict;
 use IkiWiki;
 
 sub import { #{{{
+       IkiWiki::hook(type => "getopt", id => "skeleton", 
+               call => \&getopt);
        IkiWiki::hook(type => "checkconfig", id => "skeleton", 
                call => \&checkconfig);
        IkiWiki::hook(type => "preprocess", id => "skeleton", 
                call => \&preprocess);
+       IkiWiki::hook(type => "filter", id => "skeleton", 
+               call => \&filter);
+       IkiWiki::hook(type => "htmlize", id => "skeleton",
+               call => \&htmlize);
+       IkiWiki::hook(type => "sanitize", id => "skeleton", 
+               call => \&sanitize);
+       IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
+               call => \&pagetemplate);
        IkiWiki::hook(type => "delete", id => "skeleton", 
                call => \&delete);
-       IkiWiki::hook(type => "render", id => "skeleton", 
-               call => \&render);
+       IkiWiki::hook(type => "change", id => "skeleton", 
+               call => \&change);
        IkiWiki::hook(type => "cgi", id => "skeleton", 
                call => \&cgi);
 } # }}}
 
+sub getopt () { #{{{
+       IkiWiki::debug("skeleton plugin getopt");
+} #}}}
+
 sub checkconfig () { #{{{
        IkiWiki::debug("skeleton plugin checkconfig");
 } #}}}
@@ -31,16 +45,48 @@ sub preprocess (@) { #{{{
        return "skeleton plugin result";
 } # }}}
 
+sub filter (@) { #{{{
+       my %params=@_;
+       
+       IkiWiki::debug("skeleton plugin running as filter");
+
+       return $params{content};
+} # }}}
+
+sub htmlize ($) { #{{{
+       my $content=shift;
+
+       IkiWiki::debug("skeleton plugin running as htmlize");
+
+       return $content;
+} # }}}
+
+sub sanitize ($) { #{{{
+       my $content=shift;
+       
+       IkiWiki::debug("skeleton plugin running as a sanitizer");
+
+       return $content;
+} # }}}
+
+sub pagetemplate (@) { #{{{
+       my %params=@_;
+       my $page=$params{page};
+       my $template=$params{template};
+       
+       IkiWiki::debug("skeleton plugin running as a pagetemplate hook");
+} # }}}
+
 sub delete (@) { #{{{
        my @files=@_;
 
        IkiWiki::debug("skeleton plugin told that files were deleted: @files");
 } #}}}
 
-sub render (@) { #{{{
+sub change (@) { #{{{
        my @files=@_;
 
-       IkiWiki::debug("skeleton plugin told that files were rendered: @files");
+       IkiWiki::debug("skeleton plugin told that changed files were rendered: @files");
 } #}}}
 
 sub cgi ($) { #{{{