34 lines
520 B
Perl
34 lines
520 B
Perl
|
#!/usr/bin/perl
|
||
|
package IkiWiki::Plugin::date;
|
||
|
|
||
|
use warnings;
|
||
|
use strict;
|
||
|
use IkiWiki 3.00;
|
||
|
|
||
|
sub import {
|
||
|
hook(type => "getsetup", id => "meta", call => \&getsetup);
|
||
|
hook(type => "preprocess", id => "meta", call => \&preprocess);
|
||
|
}
|
||
|
|
||
|
sub getsetup () {
|
||
|
return
|
||
|
plugin => {
|
||
|
safe => 1,
|
||
|
rebuild => undef,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
sub preprocess (@) {
|
||
|
my $str=shift;
|
||
|
|
||
|
eval q{use Date::Parse};
|
||
|
error $@ if $@;
|
||
|
my $time = str2time($str);
|
||
|
if (! defined $time) {
|
||
|
error("unable to parse $str");
|
||
|
}
|
||
|
return displaytime($time);
|
||
|
}
|
||
|
|
||
|
1
|