web pages: use UTC for computing month names

Otherwise, generated web pages can differ depending on which timezone
is used to render them.
This commit is contained in:
Matthew Flatt 2014-07-23 09:42:30 +01:00
parent ce2d7f040a
commit 7d87e5ab23

View File

@ -16,5 +16,5 @@
(define s (read i))
(unless (number? s) (error "release info does not start with a number of seconds"))
(regexp-match #px"^[\\s]*" i) ; discard whitespace
(list (seconds->date s)
(list (seconds->date s #f) ; UTC
(port->string i))))))