summaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin
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
parent73f0011836e992c74bd7ac71fae2d149844855ad (diff)
add mising hooks and fix syntax error
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r--IkiWiki/Plugin/rename.pm1
-rw-r--r--IkiWiki/Plugin/skeleton.pm.example3
2 files changed, 3 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/rename.pm b/IkiWiki/Plugin/rename.pm
index f79349561..37f643eef 100644
--- a/IkiWiki/Plugin/rename.pm
+++ b/IkiWiki/Plugin/rename.pm
@@ -107,7 +107,6 @@ sub check_canrename ($$$$$$) {
}
}
});
- return $canrename;
}
sub rename_form ($$$) {
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=@_;