diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-07-29 15:54:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-07-29 15:54:45 -0400 |
commit | 12c5786df4e74c143f24398b8d0028000b61daba (patch) | |
tree | a0f3136499610571b47289f6aa55659094024620 /IkiWiki/Plugin/skeleton.pm.example | |
parent | 73af360e994306c1d0b14a69a4aa04750e61f0ef (diff) | |
parent | 106578f524a7ef8184029ac393dbe9d68b017756 (diff) |
Merge branch 'tova' into autoconfig
Conflicts:
debian/changelog
Diffstat (limited to 'IkiWiki/Plugin/skeleton.pm.example')
-rw-r--r-- | IkiWiki/Plugin/skeleton.pm.example | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/skeleton.pm.example b/IkiWiki/Plugin/skeleton.pm.example index 49c4d88f2..bbf11e603 100644 --- a/IkiWiki/Plugin/skeleton.pm.example +++ b/IkiWiki/Plugin/skeleton.pm.example @@ -12,6 +12,7 @@ sub import { #{{{ hook(type => "getopt", id => "skeleton", call => \&getopt); hook(type => "getsetup", id => "skeleton", call => \&getsetup); 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); @@ -54,6 +55,10 @@ sub checkconfig () { #{{{ debug("skeleton plugin checkconfig"); } #}}} +sub refresh () { #{{{ + debug("skeleton plugin refresh"); +} #}}} + sub needsbuild () { #{{{ debug("skeleton plugin needsbuild"); } #}}} |