diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-10-17 21:21:07 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-10-17 21:21:07 -0400 |
commit | 02ec92c6cb0cfb86fb9a0b65addbd8c0934869c7 (patch) | |
tree | b3ba13fd9c1c9d5a2ba3592e92958c629313823f | |
parent | ef4b9b54206bec2930d387b57ebbb5d7b2a5dce2 (diff) | |
download | ikiwiki-02ec92c6cb0cfb86fb9a0b65addbd8c0934869c7.tar ikiwiki-02ec92c6cb0cfb86fb9a0b65addbd8c0934869c7.tar.gz |
make relativedate work for the dates on the recentchanges page
Having a always current relative date on recentchanges is very, very nice.
-rw-r--r-- | IkiWiki/Plugin/recentchanges.pm | 1 | ||||
-rw-r--r-- | templates/change.tmpl | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/recentchanges.pm b/IkiWiki/Plugin/recentchanges.pm index eb23b184b..d25c7abff 100644 --- a/IkiWiki/Plugin/recentchanges.pm +++ b/IkiWiki/Plugin/recentchanges.pm @@ -173,6 +173,7 @@ sub store ($$$) { #{{{ $template->param( %$change, commitdate => displaytime($change->{when}, "%X %x"), + commitdate_raw => scalar localtime($change->{when}), wikiname => $config{wikiname}, ); IkiWiki::run_hooks(pagetemplate => sub { diff --git a/templates/change.tmpl b/templates/change.tmpl index 4a99cf5ff..3a1086cf0 100644 --- a/templates/change.tmpl +++ b/templates/change.tmpl @@ -24,7 +24,7 @@ <span class="desc"><br />Commit type:</span> <span class="committype"><TMPL_VAR COMMITTYPE></span> <span class="desc"><br />Date:</span> -<span class="changedate"><TMPL_VAR COMMITDATE></span> +<span class="changedate"><span class="date" title="<TMPL_VAR COMMITDATE_RAW>"><TMPL_VAR COMMITDATE></span></span> </div> <div class=changelog> <TMPL_LOOP NAME="MESSAGE"> |