Skip to content

Commit

Permalink
support for all ISO8601 timezone offset formats
Browse files Browse the repository at this point in the history
  • Loading branch information
tauren committed Feb 1, 2011
1 parent bef6f92 commit 7e305a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .gitignore
@@ -1,3 +1,9 @@
build/fullcalendar
build/fullcalendar-*
dist
.project
.settings
.classpath
target
hs_err*
.tmp_*
8 changes: 6 additions & 2 deletions src/date_util.js
Expand Up @@ -162,7 +162,11 @@ function parseDate(s, ignoreTimezone) { // ignoreTimezone defaults to true
function parseISO8601(s, ignoreTimezone) { // ignoreTimezone defaults to false
// derived from http://delete.me.uk/2005/03/iso8601.html
// TODO: for a know glitch/feature, read tests/issue_206_parseDate_dst.html
var m = s.match(/^([0-9]{4})(-([0-9]{2})(-([0-9]{2})([T ]([0-9]{2}):([0-9]{2})(:([0-9]{2})(\.([0-9]+))?)?(Z|(([-+])([0-9]{2}):([0-9]{2})))?)?)?)?$/);

// TNM 2011-02-01: Updated regex to support +0000 or +00 timezones in addition to +00:00
// See: http://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC
var m = s.match(/^([0-9]{4})(-([0-9]{2})(-([0-9]{2})([T ]([0-9]{2}):([0-9]{2})(:([0-9]{2})(\.([0-9]+))?)?(Z|(([-+])([0-9]{2})((:?)([0-9]{2}))?))?)?)?)?$/);

if (!m) {
return null;
}
Expand Down Expand Up @@ -203,7 +207,7 @@ function parseISO8601(s, ignoreTimezone) { // ignoreTimezone defaults to false
m[10] || 0,
m[12] ? Number("0." + m[12]) * 1000 : 0
);
var offset = Number(m[16]) * 60 + Number(m[17]);
var offset = Number(m[16]) * 60 + (m[19] ? Number(m[19]) : 0);
offset *= m[15] == '-' ? 1 : -1;
date = new Date(+date + (offset * 60 * 1000));
}
Expand Down

0 comments on commit 7e305a8

Please sign in to comment.