add refresh hook

master
Joey Hess 2008-07-29 15:04:34 -04:00
parent a81dfc9063
commit 37245a9988
1 changed files with 5 additions and 0 deletions

View File

@ -11,6 +11,7 @@ use IkiWiki 2.00;
sub import { #{{{
hook(type => "getopt", id => "skeleton", call => \&getopt);
hook(type => "checkconfig", id => "skeleton", call => \&checkconfig);
hook(type => "refresh", id => "skeleton", call => \&refresh);
hook(type => "needsbuild", id => "skeleton", call => \&needsbuild);
hook(type => "preprocess", id => "skeleton", call => \&preprocess);
hook(type => "filter", id => "skeleton", call => \&filter);
@ -42,6 +43,10 @@ sub checkconfig () { #{{{
debug("skeleton plugin checkconfig");
} #}}}
sub refresh () { #{{{
debug("skeleton plugin refresh");
} #}}}
sub needsbuild () { #{{{
debug("skeleton plugin needsbuild");
} #}}}