aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/skeleton.pm.example
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-01-26 14:00:28 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-01-26 14:00:28 -0500
commitcf374e97cf571c847a21efce9c26b01315a054a1 (patch)
tree70ab1a40961011395325cfdf11395451c8a14d1e /IkiWiki/Plugin/skeleton.pm.example
parent73f0011836e992c74bd7ac71fae2d149844855ad (diff)
downloadikiwiki-cf374e97cf571c847a21efce9c26b01315a054a1.tar
ikiwiki-cf374e97cf571c847a21efce9c26b01315a054a1.tar.gz
add mising hooks and fix syntax error
Diffstat (limited to 'IkiWiki/Plugin/skeleton.pm.example')
-rw-r--r--IkiWiki/Plugin/skeleton.pm.example3
1 files changed, 3 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/skeleton.pm.example b/IkiWiki/Plugin/skeleton.pm.example
index 59503a462..f5e401c05 100644
--- a/IkiWiki/Plugin/skeleton.pm.example
+++ b/IkiWiki/Plugin/skeleton.pm.example
@@ -30,6 +30,8 @@ sub import {
hook(type => "auth", id => "skeleton", call => \&auth);
hook(type => "sessioncgi", id => "skeleton", call => \&sessioncgi);
hook(type => "canedit", id => "skeleton", call => \&canedit);
+ hook(type => "canremove", id => "skeleton", call => \&canremove);
+ hook(type => "canrename", id => "skeleton", call => \&canrename);
hook(type => "checkcontent", id => "skeleton", call => \&checkcontent);
hook(type => "editcontent", id => "skeleton", call => \&editcontent);
hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
@@ -195,6 +197,7 @@ sub canrename ($$$) {
my $session=shift;
debug("skeleton plugin running in canrename");
+}
sub checkcontent (@) {
my %params=@_;