Skip to content

Commit

Permalink
small modification to tauren's parseISO8601 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
arshaw committed Apr 4, 2011
1 parent 0183fd3 commit cb4a3eb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
6 changes: 0 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
build/fullcalendar
build/fullcalendar-*
dist
.project
.settings
.classpath
target
hs_err*
.tmp_*
9 changes: 3 additions & 6 deletions src/date_util.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,11 +162,7 @@ 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

// 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}))?))?)?)?)?$/);

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 @@ -207,7 +203,8 @@ 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 + (m[19] ? Number(m[19]) : 0);
console.log(m[18]);
var offset = Number(m[16]) * 60 + (m[18] ? Number(m[18]) : 0);
offset *= m[15] == '-' ? 1 : -1;
date = new Date(+date + (offset * 60 * 1000));
}
Expand Down

0 comments on commit cb4a3eb

Please sign in to comment.