X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/2d3dc86d07a7ebf5f638084259ae2d9c2c63e6b6..5d53fab853def09bcc2c7455cabdbc9a002746e2:/IkiWiki/Plugin/ddate.pm diff --git a/IkiWiki/Plugin/ddate.pm b/IkiWiki/Plugin/ddate.pm index d081cb509..6c36de0a6 100644 --- a/IkiWiki/Plugin/ddate.pm +++ b/IkiWiki/Plugin/ddate.pm @@ -6,14 +6,15 @@ use IkiWiki 2.00; no warnings; sub import { #{{{ - hook(type => "checkconfig", id => "ddate", call => \&checkconfig); + hook(type => "getsetup", id => "ddate", call => \&getsetup); } # }}} -sub checkconfig () { #{{{ - if (! defined $config{timeformat} || - $config{timeformat} eq '%c') { - $config{timeformat}='on %A, the %e of %B, %Y. %N%nCelebrate %H'; - } +sub getsetup { #{{{ + return + plugin => { + safe => 1, + rebuild => 1, + }, } #}}} sub IkiWiki::displaytime ($;$) { #{{{ @@ -21,6 +22,9 @@ sub IkiWiki::displaytime ($;$) { #{{{ my $format=shift; if (! defined $format) { $format=$config{timeformat}; + if ($format eq '%c') { + $format='on %A, the %e of %B, %Y. %N%nCelebrate %H'; + } } eval q{ use DateTime;