From 26d62b386ec0a2ee8f0c00cf48ccc21a8213063b Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 1 Jul 2014 08:52:48 +0100 Subject: [PATCH 1/1] edittemplate: use unambiguous RFC 3339 datestamps These take into account the timezone offset (and convert it to UTC+0000) rather than being in an unspecified timezone. --- IkiWiki/Plugin/edittemplate.pm | 2 +- doc/ikiwiki/directive/edittemplate.mdwn | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/IkiWiki/Plugin/edittemplate.pm b/IkiWiki/Plugin/edittemplate.pm index 947c8f215..c2a8da29f 100644 --- a/IkiWiki/Plugin/edittemplate.pm +++ b/IkiWiki/Plugin/edittemplate.pm @@ -156,7 +156,7 @@ sub filltemplate ($$) { } my $time = time(); - $template->param(time => IkiWiki::formattime($time, "%Y-%m-%d %H:%M:%S")); + $template->param(time => IkiWiki::date_3339($time)); return $template->output; } diff --git a/doc/ikiwiki/directive/edittemplate.mdwn b/doc/ikiwiki/directive/edittemplate.mdwn index 11cc89851..6269f5dd8 100644 --- a/doc/ikiwiki/directive/edittemplate.mdwn +++ b/doc/ikiwiki/directive/edittemplate.mdwn @@ -39,6 +39,8 @@ These variables might be set: (Requires the `UUID::Tiny` Perl module if not running on Linux.) * `` is replaced with the current (template generation) - time, using a fixed format, `%Y-%m-%d %H:%M:%S`. + time using a fixed format (RFC 3339, `%Y-%m-%dT%H:%M:%SZ`), + suitable for use in `\[[!meta date=""]]` + (see [[meta]]) or `\[[!date ""]]` (see [[date]]). [[!meta robots="noindex, follow"]] -- 2.45.0