]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/skeleton.pm
commas
[git.ikiwiki.info.git] / IkiWiki / Plugin / skeleton.pm
index 226270c38fdaed70d83689f1ca0617bc6deccca6..5947ebb4c2fdc974dfa852ddb1add9b628a0e2d5 100644 (file)
@@ -9,14 +9,20 @@ 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 => "format", id => "skeleton", 
+               call => \&format);
        IkiWiki::hook(type => "pagetemplate", id => "skeleton", 
                call => \&pagetemplate);
        IkiWiki::hook(type => "delete", id => "skeleton", 
@@ -25,8 +31,14 @@ sub import { #{{{
                call => \&change);
        IkiWiki::hook(type => "cgi", id => "skeleton", 
                call => \&cgi);
+       IkiWiki::hook(type => "savestate", id => "savestate", 
+               call => \&savestate);
 } # }}}
 
+sub getopt () { #{{{
+       IkiWiki::debug("skeleton plugin getopt");
+} #}}}
+
 sub checkconfig () { #{{{
        IkiWiki::debug("skeleton plugin checkconfig");
 } #}}}
@@ -45,17 +57,34 @@ sub filter (@) { #{{{
        return $params{content};
 } # }}}
 
-sub sanitize ($) { #{{{
-       my $content=shift;
+sub htmlize (@) { #{{{
+       my %params=@_;
+
+       IkiWiki::debug("skeleton plugin running as htmlize");
+
+       return $params{content};
+} # }}}
+
+sub sanitize (@) { #{{{
+       my %params=@_;
        
        IkiWiki::debug("skeleton plugin running as a sanitizer");
 
-       return $content;
+       return $params{content};
 } # }}}
 
-sub pagetemplate ($$) { #{{{
-       my $page=shift;
-       my $template=shift;
+sub format (@) { #{{{
+       my %params=@_;
+       
+       IkiWiki::debug("skeleton plugin running as a formatter");
+
+       return $params{content};
+} # }}}
+
+sub pagetemplate (@) { #{{{
+       my %params=@_;
+       my $page=$params{page};
+       my $template=$params{template};
        
        IkiWiki::debug("skeleton plugin running as a pagetemplate hook");
 } # }}}
@@ -78,4 +107,8 @@ sub cgi ($) { #{{{
        IkiWiki::debug("skeleton plugin running in cgi");
 } #}}}
 
+sub savestate () { #{{{
+       IkiWiki::debug("skeleton plugin running in savestate");
+} #}}}
+
 1