ikiwiki/IkiWiki/Plugin/fortune.pm

26 lines
444 B
Perl
Raw Normal View History

2006-07-29 23:53:57 +02:00
#!/usr/bin/perl
# Include a fortune in a page
package IkiWiki::Plugin::fortune;
use warnings;
use strict;
use IkiWiki 2.00;
2006-07-29 23:53:57 +02:00
sub import { #{{{
hook(type => "preprocess", id => "fortune", call => \&preprocess);
2006-07-29 23:53:57 +02:00
} # }}}
sub preprocess (@) { #{{{
$ENV{PATH}="$ENV{PATH}:/usr/games:/usr/local/games";
my $f = `fortune 2>/dev/null`;
2006-07-29 23:53:57 +02:00
if ($?) {
return "[[".gettext("fortune failed")."]]";
2006-07-29 23:53:57 +02:00
}
else {
return "<pre>$f</pre>\n";
}
} # }}}
1