]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blobdiff - IkiWiki/Plugin/haiku.pm
ensure_committer: don't do anything if we have the environment variables
[git.ikiwiki.info.git] / IkiWiki / Plugin / haiku.pm
index eb8b786e826d0071ff41b75f08673c781db0bea6..7ce74696ba474aa3e4a75d12f7a2cf3eb49b02cf 100644 (file)
@@ -4,27 +4,34 @@ package IkiWiki::Plugin::haiku;
 
 use warnings;
 use strict;
-use IkiWiki 2.00;
+use IkiWiki 3.00;
 
-sub import { #{{{
+sub import {
        hook(type => "getsetup", id => "haiku", call => \&getsetup);
        hook(type => "preprocess", id => "haiku", call => \&preprocess);
-} # }}}
+}
 
-sub getsetup { #{{{
+sub getsetup {
        return
                plugin => {
                        safe => 1,
                        rebuild => undef,
+                       section => "widget",
                },
-} #}}}
+}
 
-sub preprocess (@) { #{{{
+sub preprocess (@) {
        my %params=@_;
 
        my $haiku;
        eval q{use Coy};
-       if ($@ || ! Coy->can("Coy::with_haiku")) {
+       if ($config{deterministic}) {
+               $haiku = "Coy changes often.
+                         For deterministic builds
+                         try this substitute.
+                        ",
+       }
+       elsif ($@ || ! Coy->can("Coy::with_haiku")) {
                my @canned=(
                        "The lack of a Coy:
                         No darting, subtle haiku.
@@ -54,6 +61,6 @@ sub preprocess (@) { #{{{
        $haiku=~s/\n/<br \/>\n/mg;
        
        return "\n\n<blockquote><p>$haiku</p></blockquote>\n\n";
-} # }}}
+}
 
 1