# HG changeset patch # User Brodie Rao # Date 1319741828 25200 # Node ID fe9d36a6853e76947ce1fcf16249302efaffcd7f # Parent 6cb8b46ea90ac07339a7869735a6ff6d39f1a681 hgweb: fix dynamic date calculation not working under Safari While Chrome, Firefox, and IE 6+ support the current date format being passed to Date(), Safari doesn't: > new Date('Mon Oct 24 13:58:01 2011 +0200') Invalid Date However, the rfc822date format--officially supported by ECMAScript[1]--does work: > new Date('Mon, 24 Oct 2011 13:58:01 +0200') Mon Oct 24 2011 04:58:01 GMT-0700 (PDT) This change replaces all instances of {date|date} in HTML with {date|rfc822date}. For elements that only have the "age" class, there's no outward change for users with JavaScript enabled. For elements with both the "age" and "date" classes, the full date displayed uses the new format. Tested in IE 6, Safari 5.1.1, Google Chrome 15, and Firefox 7.0.1. [1]: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse diff -r 6cb8b46ea90a -r fe9d36a6853e mercurial/templates/coal/map --- a/mercurial/templates/coal/map Thu Oct 27 18:15:34 2011 -0500 +++ b/mercurial/templates/coal/map Thu Oct 27 11:57:08 2011 -0700 @@ -199,7 +199,7 @@ {name|escape} {description} {contact|obfuscate} - {lastchange|date} + {lastchange|rfc822date} {archives%indexarchiveentry} \n' indexarchiveentry = ' ↓{type|escape}' diff -r 6cb8b46ea90a -r fe9d36a6853e mercurial/templates/gitweb/changelogentry.tmpl --- a/mercurial/templates/gitweb/changelogentry.tmpl Thu Oct 27 18:15:34 2011 -0500 +++ b/mercurial/templates/gitweb/changelogentry.tmpl Thu Oct 27 11:57:08 2011 -0700 @@ -1,5 +1,5 @@
-{date|date}{desc|strip|firstline|escape|nonempty} {inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}{bookmarks%bookmarktag} +{date|rfc822date}{desc|strip|firstline|escape|nonempty} {inbranch%inbranchtag}{branches%branchtag}{tags%tagtag}{bookmarks%bookmarktag}