Sha256: b1a19ca144e027c5d3e35a01a1b11bd50b6887e3de706e3ffeee7d0140585c09

Contents?: true

Size: 1.05 KB

Versions: 19

Compression:

Stored size: 1.05 KB

Contents

/*! ISO-8601 date parser
 * This parser will work with dates in ISO8601 format
 * 2013-02-18T18:18:44+00:00
 * Written by Sean Ellingham :https://github.com/seanellingham
 * See https://github.com/Mottie/tablesorter/issues/247
 */
/*global jQuery: false */
;(function($){
"use strict";

	var iso8601date = /^([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})))?)?)?)?$/;
	$.tablesorter.addParser({
		id : 'iso8601date',
		is : function(s) {
			return s.match(iso8601date);
		},
		format : function(s) {
			var result = s.match(iso8601date);
			if (result) {
				var date = new Date(result[1], 0, 1);
				if (result[3]) { date.setMonth(result[3] - 1); }
				if (result[5]) { date.setDate(result[5]); }
				if (result[7]) { date.setHours(result[7]); }
				if (result[8]) { date.setMinutes(result[8]); }
				if (result[10]) { date.setSeconds(result[10]); }
				if (result[12]) { date.setMilliseconds(Number('0.' + result[12]) * 1000); }
				return date;
			}
			return s;
		},
		type : 'numeric'
	});

})(jQuery);

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
jquery-tablesorter-1.12.8 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.7 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.6 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.5 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.4 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.3 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.2 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.1 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.12.0 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.11.2 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.11.1 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.11.0 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.10 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.9 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.8 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.7 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.6 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.5 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js
jquery-tablesorter-1.10.4 vendor/assets/javascripts/jquery-tablesorter/parsers/parser-date-iso8601.js