X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/blobdiff_plain/0cfc607314861a240638506741a2cc8fcf1d3b0b..59ad31c24220f16c6aa52d187ecca215c914831c:/IkiWiki/Plugin/prettydate.pm diff --git a/IkiWiki/Plugin/prettydate.pm b/IkiWiki/Plugin/prettydate.pm index 1fa5e9144..82d8a3df3 100644 --- a/IkiWiki/Plugin/prettydate.pm +++ b/IkiWiki/Plugin/prettydate.pm @@ -1,49 +1,79 @@ #!/usr/bin/perl package IkiWiki::Plugin::prettydate; -use IkiWiki; +use IkiWiki 3.00; use warnings; +no warnings 'redefine'; use strict; -# Blanks duplicate the time before. -my $default_timetable=[ - "late at night on", # 12 - "", # 1 - "in the wee hours of", # 2 - "", # 3 - "", # 4 - "terribly early in the morning of", # 5 - "", # 6 - "in early morning on", # 7 - "", # 8 - "", # 9 - "in mid-morning of", # 10 - "in late morning of", # 11 - "at lunch time on", # 12 - "", # 1 - "in the afternoon of", # 2 - "", # 3 - "", # 4 - "in late afternoon of", # 5 - "in the evening of", # 6 - "", # 7 - "in late evening on", # 8 - "", # 9 - "at night on", # 10 - "", # 11 -]; +sub default_timetable { + # Blanks duplicate the time before. + return [ + #translators: These descriptions of times of day are used + #translators: in messages like "last edited ". + #translators: %A is the name of the day of the week, while + #translators: %A- is the name of the previous day. + gettext("late %A- night"), # 12 + "", # 1 + gettext("in the wee hours of %A- night"), # 2 + "", # 3 + "", # 4 + gettext("terribly early %A morning"), # 5 + "", # 6 + gettext("early %A morning"), # 7 + "", # 8 + "", # 9 + gettext("mid-morning %A"), # 10 + gettext("late %A morning"), # 11 + gettext("at lunch time on %A"), # 12 + "", # 1 + gettext("%A afternoon"), # 2 + "", # 3 + "", # 4 + gettext("late %A afternoon"), # 5 + gettext("%A evening"), # 6 + "", # 7 + gettext("late %A evening"), # 8 + "", # 9 + gettext("%A night"), # 10 + "", # 11 + ]; +} -sub import { #{{{ - hook(type => "checkconfig", id => "skeleton", call => \&checkconfig); -} # }}} +sub import { + hook(type => "getsetup", id => "prettydate", call => \&getsetup); + hook(type => "checkconfig", id => "prettydate", call => \&checkconfig); +} -sub checkconfig () { #{{{ +sub getsetup () { + return + plugin => { + safe => 1, + rebuild => 1, + }, + prettydateformat => { + type => "string", + example => '%X, %B %o, %Y', + description => "format to use to display date", + advanced => 1, + safe => 1, + rebuild => 1, + }, + timetable => { + type => "internal", + description => "array of time descriptions", + safe => 1, + rebuild => 1, + }, +} + +sub checkconfig () { if (! defined $config{prettydateformat} || $config{prettydateformat} eq '%c') { - $config{prettydateformat}='%X %B %o, %Y'; + $config{prettydateformat}='%X, %B %o, %Y'; } if (! ref $config{timetable}) { - $config{timetable}=$default_timetable; + $config{timetable}=default_timetable(); } # Fill in the blanks. @@ -52,39 +82,46 @@ sub checkconfig () { #{{{ $config{timetable}[$h] = $config{timetable}[$h - 1]; } } -} #}}} +} -sub IkiWiki::displaytime ($) { #{{{ +sub IkiWiki::formattime ($;$) { my $time=shift; + my $format=shift; + if (! defined $format) { + $format=$config{prettydateformat}; + } + + eval q{use Date::Format}; + error($@) if $@; my @t=localtime($time); - my ($h, $m)=@t[2, 1]; + my ($h, $m, $wday)=@t[2, 1, 6]; + my $t; if ($h == 16 && $m < 30) { - $time = "at teatime on"; + $t = gettext("at teatime on %A"); } elsif (($h == 0 && $m < 30) || ($h == 23 && $m > 50)) { # well, at 40 minutes it's more like the martian timeslip.. - $time = "at midnight on"; + $t = gettext("at midnight"); } elsif (($h == 12 && $m < 15) || ($h == 11 && $m > 50)) { - $time = "at noon on"; + $t = gettext("at noon on %A"); } # TODO: sunrise and sunset, but to be right I need to do it based on # lat and long, and calculate the appropriate one for the actual # time of year using Astro::Sunrise. Not tonight, it's wee hours # already.. else { - $time = $config{timetable}[$h]; - if (! length $time) { - $time = "sometime"; + $t = $config{timetable}[$h]; + if (! length $t) { + $t = "sometime"; } } - eval q{use Date::Format}; - error($@) if $@; - my $format=$config{prettydateformat}; - $format=~s/\%X/$time/g; + $t=~s{\%A-}{my @yest=@t; $yest[6]--; strftime("%A", \@yest)}eg; + + $format=~s/\%X/$t/g; return strftime($format, \@t); -} #}}} +} 1