]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/skeleton.pm.example
po: redesign (once more) automatic POT/PO files update
[ikiwiki.git] / IkiWiki / Plugin / skeleton.pm.example
index ecf2a2407ca135d91503b4ebe3ed27d7bebf89f3..f844ddb91ddaa96680094d792df96af2ddd4a229 100644 (file)
@@ -34,8 +34,6 @@ sub import { #{{{
        hook(type => "formbuilder_setup", id => "skeleton", call => \&formbuilder_setup);
        hook(type => "formbuilder", id => "skeleton", call => \&formbuilder);
        hook(type => "savestate", id => "skeleton", call => \&savestate);
-       hook(type => "targetpage", id => "skeleton", call => \&targetpage);
-       hook(type => "urlpath", id => "skeleton", call => \&urlpath);
 } # }}}
 
 sub getopt () { #{{{
@@ -206,12 +204,4 @@ sub savestate () { #{{{
        debug("skeleton plugin running in savestate");
 } #}}}
 
-sub targetpage () { #{{{
-       debug("skeleton plugin running in targetpage");
-} #}}}
-
-sub urlpath () { #{{{
-       debug("skeleton plugin running in urlpath");
-} #}}}
-
 1