X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/aa27f9adb0593e21d1d477fe466289c6bb91f97d..fa90bdf4bf44d108bd8c3d53104b48aa20dc18eb:/doc/todo/different_search_engine.mdwn diff --git a/doc/todo/different_search_engine.mdwn b/doc/todo/different_search_engine.mdwn index 7014acd33..81cb04539 100644 --- a/doc/todo/different_search_engine.mdwn +++ b/doc/todo/different_search_engine.mdwn @@ -66,20 +66,20 @@ Index: IkiWiki/Plugin/search.pm + sub import { #{{{ - hook(type => "getopt", id => "hyperestraier", -- call => \&getopt); +- call => \&getopt); - hook(type => "checkconfig", id => "hyperestraier", + hook(type => "checkconfig", id => "plucene", - call => \&checkconfig); + call => \&checkconfig); - hook(type => "pagetemplate", id => "hyperestraier", -- call => \&pagetemplate); +- call => \&pagetemplate); - hook(type => "delete", id => "hyperestraier", + hook(type => "delete", id => "plucene", - call => \&delete); + call => \&delete); - hook(type => "change", id => "hyperestraier", + hook(type => "change", id => "plucene", - call => \&change); + call => \&change); - hook(type => "cgi", id => "hyperestraier", -- call => \&cgi); +- call => \&cgi); } # }}} -sub getopt () { #{{{