summaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2008-11-02 18:08:50 +0100
committerintrigeri <intrigeri@boum.org>2008-11-02 18:08:50 +0100
commit7c173aca3e87d13fdd044cb79dac80ad83d64a38 (patch)
treeab55371334e64f255bc0d7bec406e1a16cd0e408 /IkiWiki
parentc696239b6b1ce6b3a3ee20cc88eb5fcb48c0bb7d (diff)
Revert "added hook urlpath" and "rename urlpath hook into tweakurlpath..."
This reverts commits d9b9022c13af3aa6c469df05beaa293fcf33cafc and 39d44d443d2271ec8787e6192b8b5811bee41ebf. This functionality should now be achieved using the new inject() function. Signed-off-by: intrigeri <intrigeri@boum.org>
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/skeleton.pm.example5
1 files changed, 0 insertions, 5 deletions
diff --git a/IkiWiki/Plugin/skeleton.pm.example b/IkiWiki/Plugin/skeleton.pm.example
index ecf2a2407..af22b3406 100644
--- a/IkiWiki/Plugin/skeleton.pm.example
+++ b/IkiWiki/Plugin/skeleton.pm.example
@@ -35,7 +35,6 @@ sub import { #{{{
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 () { #{{{
@@ -210,8 +209,4 @@ sub targetpage () { #{{{
debug("skeleton plugin running in targetpage");
} #}}}
-sub urlpath () { #{{{
- debug("skeleton plugin running in urlpath");
-} #}}}
-
1