]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/more.pm
updated spanish translation
[ikiwiki.git] / IkiWiki / Plugin / more.pm
index 667cd64154803c37e6aad977932767cadba4f5a6..77d5fb0772846dde323fd78a809f936365224fa5 100644 (file)
@@ -3,15 +3,24 @@ package IkiWiki::Plugin::more;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+use IkiWiki 3.00;
 
 my $linktext = gettext("more");
 
-sub import { #{{{
-       hook(type => "preprocess",  id => "more", call => \&preprocess);
-} # }}}
+sub import {
+       hook(type => "getsetup", id => "more", call => \&getsetup);
+       hook(type => "preprocess", id => "more", call => \&preprocess);
+}
+
+sub getsetup () {
+       return
+               plugin => {
+                       safe => 1,
+                       rebuild => undef,
+               },
+}
 
-sub preprocess (@) { #{{{
+sub preprocess (@) {
        my %params=@_;
 
        $params{linktext} = $linktext unless defined $params{linktext};