X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/40959ce76d159cefaf0431ad2cc61ad35a9f99b1..b62270dfdddac257a295d80c1a0b2d9786f9a94e:/IkiWiki/Plugin/skeleton.pm?ds=inline

diff --git a/IkiWiki/Plugin/skeleton.pm b/IkiWiki/Plugin/skeleton.pm
index d1a50c03b..0e7f2e014 100644
--- a/IkiWiki/Plugin/skeleton.pm
+++ b/IkiWiki/Plugin/skeleton.pm
@@ -23,10 +23,12 @@ sub import { #{{{
 	hook(type => "change", id => "skeleton", call => \&change);
 	hook(type => "cgi", id => "skeleton", call => \&cgi);
 	hook(type => "auth", id => "skeleton", call => \&auth);
+	hook(type => "sessioncgi", id => "skeleton", call => \&sessioncgi);
 	hook(type => "canedit", id => "skeleton", call => \&canedit);
+	hook(type => "editcontent", id => "skeleton", call => \&editcontent);
 	hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
 	hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
-	hook(type => "savestate", id => "savestate", call => \&savestate);
+	hook(type => "savestate", id => "skeleton", call => \&savestate);
 } # }}}
 
 sub getopt () { #{{{
@@ -119,6 +121,13 @@ sub auth ($$) { #{{{
 	debug("skeleton plugin running in auth");
 } #}}}
 
+sub sessionncgi ($$) { #{{{
+	my $cgi=shift;
+	my $session=shift;
+
+	debug("skeleton plugin running in sessioncgi");
+} #}}}
+
 sub canedit ($$$) { #{{{
 	my $page=shift;
 	my $cgi=shift;
@@ -127,6 +136,14 @@ sub canedit ($$$) { #{{{
 	debug("skeleton plugin running in canedit");
 } #}}}
 
+sub editcontent ($$$) { #{{{
+	my %params=@_;
+
+	debug("skeleton plugin running in editcontent");
+
+	return $params{content};
+} #}}}
+
 sub formbuilder_setup (@) { #{{{
 	my %params=@_;