Tablesorter: Remove not really necessary setTimeout.
[lhc/web/wiklou.git] / resources / jquery / jquery.tablesorter.js
1 /*
2 *
3 * TableSorter for MediaWiki
4 *
5 * Written 2011 Leo Koppelkamm
6 * Based on tablesorter.com plugin, written (c) 2007 Christian Bach.
7 *
8 * Dual licensed under the MIT and GPL licenses:
9 * http://www.opensource.org/licenses/mit-license.php
10 * http://www.gnu.org/licenses/gpl.html
11 *
12 */
13 /**
14 *
15 * @description Create a sortable table with multi-column sorting capabilitys
16 *
17 * @example $( 'table' ).tablesorter();
18 * @desc Create a simple tablesorter interface.
19 *
20 * @option String cssHeader ( optional ) A string of the class name to be appended
21 * to sortable tr elements in the thead of the table. Default value:
22 * "header"
23 *
24 * @option String cssAsc ( optional ) A string of the class name to be appended to
25 * sortable tr elements in the thead on a ascending sort. Default value:
26 * "headerSortUp"
27 *
28 * @option String cssDesc ( optional ) A string of the class name to be appended
29 * to sortable tr elements in the thead on a descending sort. Default
30 * value: "headerSortDown"
31 *
32 * @option String sortInitialOrder ( optional ) A string of the inital sorting
33 * order can be asc or desc. Default value: "asc"
34 *
35 * @option String sortMultisortKey ( optional ) A string of the multi-column sort
36 * key. Default value: "shiftKey"
37 *
38 * @option Boolean sortLocaleCompare ( optional ) Boolean flag indicating whatever
39 * to use String.localeCampare method or not. Set to false.
40 *
41 * @option Boolean cancelSelection ( optional ) Boolean flag indicating if
42 * tablesorter should cancel selection of the table headers text.
43 * Default value: true
44 *
45 * @option Boolean debug ( optional ) Boolean flag indicating if tablesorter
46 * should display debuging information usefull for development.
47 *
48 * @type jQuery
49 *
50 * @name tablesorter
51 *
52 * @cat Plugins/Tablesorter
53 *
54 * @author Christian Bach/christian.bach@polyester.se
55 */
56
57 ( function ($) {
58 $.extend( {
59 tablesorter: new
60
61 function () {
62
63 var parsers = [];
64
65 this.defaults = {
66 cssHeader: "headerSort",
67 cssAsc: "headerSortUp",
68 cssDesc: "headerSortDown",
69 cssChildRow: "expand-child",
70 sortInitialOrder: "asc",
71 sortMultiSortKey: "shiftKey",
72 sortLocaleCompare: false,
73 parsers: {},
74 widgets: [],
75 headers: {},
76 cancelSelection: true,
77 sortList: [],
78 headerList: [],
79 selectorHeaders: 'thead tr:eq(0) th',
80 debug: false
81 };
82
83 /* debuging utils */
84 //
85 // function benchmark( s, d ) {
86 // console.log( s + " " + ( new Date().getTime() - d.getTime() ) + "ms" );
87 // }
88 //
89 // this.benchmark = benchmark;
90 //
91 /* parsers utils */
92
93 function buildParserCache( table, $headers ) {
94 var rows = table.tBodies[0].rows,
95 sortType;
96
97 if ( rows[0] ) {
98
99 var list = [],
100 cells = rows[0].cells,
101 l = cells.length;
102
103 for ( var i = 0; i < l; i++ ) {
104 var p = false;
105 sortType = $headers.eq(i).data('sort-type');
106 if ( typeof sortType != 'undefined' ) {
107 p = getParserById( sortType );
108 }
109
110 if (p === false) {
111 p = detectParserForColumn( table, rows, i );
112 }
113 // if ( table.config.debug ) {
114 // console.log( "column:" + i + " parser:" + p.id + "\n" );
115 // }
116 list.push(p);
117 }
118 }
119 return list;
120 }
121
122 function detectParserForColumn( table, rows, cellIndex ) {
123 var l = parsers.length,
124 nodeValue,
125 // Start with 1 because 0 is the fallback parser
126 i = 1,
127 rowIndex = 0,
128 concurrent = 0,
129 needed = (rows.length > 4 ) ? 5 : rows.length;
130 while( i<l ) {
131 nodeValue = getTextFromRowAndCellIndex( rows, rowIndex, cellIndex );
132 if ( nodeValue != '') {
133 if ( parsers[i].is( nodeValue, table ) ) {
134 concurrent++;
135 rowIndex++;
136 if (concurrent >= needed ) {
137 // Confirmed the parser for multiple cells, let's return it
138 return parsers[i];
139 }
140 } else {
141 // Check next parser, reset rows
142 i++;
143 rowIndex = 0;
144 concurrent = 0;
145 }
146 } else {
147 // Empty cell
148 rowIndex++;
149 if ( rowIndex > rows.length ) {
150 rowIndex = 0;
151 i++;
152 }
153 }
154 }
155
156 // 0 is always the generic parser ( text )
157 return parsers[0];
158 }
159
160 function getTextFromRowAndCellIndex( rows, rowIndex, cellIndex ) {
161 if ( rows[rowIndex] && rows[rowIndex].cells[cellIndex] ) {
162 return $.trim( getElementText( rows[rowIndex].cells[cellIndex] ) );
163 } else {
164 return '';
165 }
166 }
167
168 function getParserById( name ) {
169 var l = parsers.length;
170 for ( var i = 0; i < l; i++ ) {
171 if ( parsers[i].id.toLowerCase() == name.toLowerCase() ) {
172 return parsers[i];
173 }
174 }
175 return false;
176 }
177
178 /* utils */
179
180 function buildCache( table ) {
181 // if ( table.config.debug ) {
182 // var cacheTime = new Date();
183 // }
184 var totalRows = ( table.tBodies[0] && table.tBodies[0].rows.length ) || 0,
185 totalCells = ( table.tBodies[0].rows[0] && table.tBodies[0].rows[0].cells.length ) || 0,
186 parsers = table.config.parsers,
187 cache = {
188 row: [],
189 normalized: []
190 };
191
192 for ( var i = 0; i < totalRows; ++i ) {
193
194 // Add the table data to main data array
195 var c = $( table.tBodies[0].rows[i] ),
196 cols = [];
197
198 // if this is a child row, add it to the last row's children and
199 // continue to the next row
200 if ( c.hasClass( table.config.cssChildRow ) ) {
201 cache.row[cache.row.length - 1] = cache.row[cache.row.length - 1].add(c);
202 // go to the next for loop
203 continue;
204 }
205
206 cache.row.push(c);
207
208 for ( var j = 0; j < totalCells; ++j ) {
209 cols.push( parsers[j].format( getElementText( c[0].cells[j] ), table, c[0].cells[j] ) );
210 }
211
212 cols.push( cache.normalized.length ); // add position for rowCache
213 cache.normalized.push( cols );
214 cols = null;
215 }
216
217 // if ( table.config.debug ) {
218 // benchmark( "Building cache for " + totalRows + " rows:", cacheTime );
219 // }
220 return cache;
221 }
222
223 function getElementText( node ) {
224 if ( node.hasAttribute && node.hasAttribute( "data-sort-value" ) ) {
225 return node.getAttribute( "data-sort-value" );
226 } else {
227 return $( node ).text();
228 }
229 }
230
231 function appendToTable( table, cache ) {
232 // if ( table.config.debug ) {
233 // var appendTime = new Date()
234 // }
235 var c = cache,
236 r = c.row,
237 n = c.normalized,
238 totalRows = n.length,
239 checkCell = (n[0].length - 1),
240 tableBody = $( table.tBodies[0] ),
241 fragment = document.createDocumentFragment();
242
243 for ( var i = 0; i < totalRows; i++ ) {
244 var pos = n[i][checkCell];
245
246 var l = r[pos].length;
247
248 for ( var j = 0; j < l; j++ ) {
249 fragment.appendChild( r[pos][j] );
250 }
251
252 }
253 tableBody[0].appendChild( fragment );
254 // if ( table.config.debug ) {
255 // benchmark( "Rebuilt table:", appendTime );
256 // }
257 }
258
259 function buildHeaders( table, msg ) {
260 var maxSeen = 0;
261 var longest;
262 // if ( table.config.debug ) {
263 // var time = new Date();
264 // }
265 //var header_index = computeTableHeaderCellIndexes( table );
266 var realCellIndex = 0;
267 var $tableHeaders = $( "thead:eq(0) tr", table );
268 if ( $tableHeaders.length > 1 ) {
269 $tableHeaders.each(function() {
270 if (this.cells.length > maxSeen) {
271 maxSeen = this.cells.length;
272 longest = this;
273 }
274 });
275 $tableHeaders = $( longest );
276 }
277 $tableHeaders = $tableHeaders.find('th').each( function ( index ) {
278 //var normalIndex = allCells.index( this );
279 //var realCellIndex = 0;
280 this.column = realCellIndex;
281
282 var colspan = this.colspan;
283 colspan = colspan ? parseInt( colspan, 10 ) : 1;
284 realCellIndex += colspan;
285
286 //this.column = header_index[this.parentNode.rowIndex + "-" + this.cellIndex];
287 this.order = 0;
288 this.count = 0;
289
290 if ( $( this ).is( '.unsortable' ) ) this.sortDisabled = true;
291
292 if ( !this.sortDisabled ) {
293 var $th = $( this ).addClass( table.config.cssHeader ).attr( 'title', msg[1] );
294
295 //if ( table.config.onRenderHeader ) table.config.onRenderHeader.apply($th);
296 }
297
298 // add cell to headerList
299 table.config.headerList[index] = this;
300 } );
301
302 // if ( table.config.debug ) {
303 // benchmark( "Built headers:", time );
304 // console.log( $tableHeaders );
305 // }
306 //
307 return $tableHeaders;
308
309 }
310
311 function isValueInArray( v, a ) {
312 var l = a.length;
313 for ( var i = 0; i < l; i++ ) {
314 if ( a[i][0] == v ) {
315 return true;
316 }
317 }
318 return false;
319 }
320
321 function setHeadersCss( table, $headers, list, css, msg ) {
322 // remove all header information
323 $headers.removeClass( css[0] ).removeClass( css[1] );
324
325 var h = [];
326 $headers.each( function ( offset ) {
327 if ( !this.sortDisabled ) {
328 h[this.column] = $( this );
329 }
330 } );
331
332 var l = list.length;
333 for ( var i = 0; i < l; i++ ) {
334 h[ list[i][0] ].addClass( css[ list[i][1] ] ).attr( 'title', msg[ list[i][1] ] );
335 }
336 }
337
338 function checkSorting (array1, array2, sortList) {
339 var col, fn, ret;
340 for ( var i = 0, len = sortList.length; i < len; i++ ) {
341 col = sortList[i][0];
342 fn = ( sortList[i][1] ) ? sortTextDesc : sortText;
343 ret = fn.call( this, array1[col], array2[col] );
344 if ( ret !== 0 ) {
345 return ret;
346 }
347 }
348 return ret;
349 }
350
351 // Merge sort algorithm
352 // Based on http://en.literateprograms.org/Merge_sort_(JavaScript)
353 function mergeSortHelper(array, begin, beginRight, end, sortList) {
354 for (; begin < beginRight; ++begin) {
355 if (checkSorting( array[begin], array[beginRight], sortList )) {
356 var v = array[begin];
357 array[begin] = array[beginRight];
358 var begin2 = beginRight;
359 while ( begin2 + 1 < end && checkSorting( v, array[begin2 + 1], sortList ) ) {
360 var tmp = array[begin2];
361 array[begin2] = array[begin2 + 1];
362 array[begin2 + 1] = tmp;
363 ++begin2;
364 }
365 array[begin2] = v;
366 }
367 }
368 }
369
370 function mergeSort(array, begin, end, sortList) {
371 var size = end - begin;
372 if (size < 2) return;
373
374 var beginRight = begin + Math.floor(size / 2);
375
376 mergeSort(array, begin, beginRight, sortList);
377 mergeSort(array, beginRight, end, sortList);
378 mergeSortHelper(array, begin, beginRight, end, sortList);
379 }
380
381 function multisort( table, sortList, cache ) {
382 //var sortTime = new Date();
383
384 var i = sortList.length;
385 mergeSort(cache.normalized, 0, cache.normalized.length, sortList);
386
387 //benchmark( "Sorting in dir " + order + " time:", sortTime );
388
389 return cache;
390 }
391
392 function sortText( a, b ) {
393 return ((a < b) ? false : ((a > b) ? true : 0));
394 }
395
396 function sortTextDesc( a, b ) {
397 return ((b < a) ? false : ((b > a) ? true : 0));
398 }
399
400 function buildTransformTable() {
401 var digits = '0123456789,.'.split('');
402 var separatorTransformTable = mw.config.get( 'wgSeparatorTransformTable' );
403 var digitTransformTable = mw.config.get( 'wgDigitTransformTable' );
404 if ( separatorTransformTable == null || ( separatorTransformTable[0] == '' && digitTransformTable[2] == '' ) ) {
405 ts.transformTable = false;
406 } else {
407 ts.transformTable = {};
408
409 // Unpack the transform table
410 var ascii = separatorTransformTable[0].split( "\t" ).concat( digitTransformTable[0].split( "\t" ) );
411 var localised = separatorTransformTable[1].split( "\t" ).concat( digitTransformTable[1].split( "\t" ) );
412
413 // Construct regex for number identification
414 for ( var i = 0; i < ascii.length; i++ ) {
415 ts.transformTable[localised[i]] = ascii[i];
416 digits.push( $.escapeRE( localised[i] ) );
417 }
418 }
419 var digitClass = '[' + digits.join( '', digits ) + ']';
420
421 // We allow a trailing percent sign, which we just strip. This works fine
422 // if percents and regular numbers aren't being mixed.
423 ts.numberRegex = new RegExp("^(" + "[-+\u2212]?[0-9][0-9,]*(\\.[0-9,]*)?(E[-+\u2212]?[0-9][0-9,]*)?" + // Fortran-style scientific
424 "|" + "[-+\u2212]?" + digitClass + "+[\\s\\xa0]*%?" + // Generic localised
425 ")$", "i");
426 }
427
428 function buildDateTable() {
429 var r = '';
430 ts.monthNames = [
431 [],
432 []
433 ];
434 ts.dateRegex = [];
435
436 for ( var i = 1; i < 13; i++ ) {
437 ts.monthNames[0][i] = mw.config.get( 'wgMonthNames' )[i].toLowerCase();
438 ts.monthNames[1][i] = mw.config.get( 'wgMonthNamesShort' )[i].toLowerCase().replace( '.', '' );
439 r += $.escapeRE( ts.monthNames[0][i] ) + '|';
440 r += $.escapeRE( ts.monthNames[1][i] ) + '|';
441 }
442
443 //Remove trailing pipe
444 r = r.slice( 0, -1 );
445
446 //Build RegEx
447 //Any date formated with . , ' - or /
448 ts.dateRegex[0] = new RegExp(/^\s*\d{1,2}[\,\.\-\/'\s]{1,2}\d{1,2}[\,\.\-\/'\s]{1,2}\d{2,4}\s*?/i);
449
450 //Written Month name, dmy
451 ts.dateRegex[1] = new RegExp('^\\s*\\d{1,2}[\\,\\.\\-\\/\'\\s]*(' + r + ')' + '[\\,\\.\\-\\/\'\\s]*\\d{2,4}\\s*$', 'i');
452
453 //Written Month name, mdy
454 ts.dateRegex[2] = new RegExp('^\\s*(' + r + ')' + '[\\,\\.\\-\\/\'\\s]*\\d{1,2}[\\,\\.\\-\\/\'\\s]*\\d{2,4}\\s*$', 'i');
455
456 }
457
458 function explodeRowspans( $table ) {
459 // Split multi row cells into multiple cells with the same content
460 $table.find( '[rowspan]' ).each(function() {
461 var rowSpan = this.rowSpan;
462 this.rowSpan = 1;
463 var cell = $( this );
464 var next = cell.parent().nextAll();
465 for ( var i = 0; i < rowSpan - 1; i++ ) {
466 next.eq(0).find( 'td' ).eq( this.cellIndex ).before( cell.clone() );
467 }
468 });
469 }
470
471 function buildCollationTable() {
472 ts.collationTable = mw.config.get('tableSorterCollation');
473 if ( typeof ts.collationTable === "object" ) {
474 ts.collationRegex = [];
475
476 //Build array of key names
477 for ( var key in ts.collationTable ) {
478 if ( ts.collationTable.hasOwnProperty(key) ) { //to be safe
479 ts.collationRegex.push(key);
480 }
481 }
482 ts.collationRegex = new RegExp( '[' + ts.collationRegex.join('') + ']', 'ig' );
483 }
484 }
485
486 function cacheRegexs() {
487 ts.rgx = {
488 IPAddress: [new RegExp(/^\d{1,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$/)],
489 currency: [new RegExp(/^[£$€?.]/), new RegExp(/[£$€]/g)],
490 url: [new RegExp(/^(https?|ftp|file):\/\/$/), new RegExp(/(https?|ftp|file):\/\//)],
491 isoDate: [new RegExp(/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/)],
492 usLongDate: [new RegExp(/^[A-Za-z]{3,10}\.? [0-9]{1,2}, ([0-9]{4}|'?[0-9]{2}) (([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(AM|PM)))$/)],
493 time: [new RegExp(/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/)]
494 };
495 } /* public methods */
496 this.construct = function ( settings ) {
497 return this.each( function () {
498 // if no thead or tbody quit.
499 if ( !this.tHead || !this.tBodies ) return;
500 // declare
501 var $this, $document, $headers, cache, config, shiftDown = 0,
502 sortOrder, firstTime = true, that = this;
503 // new blank config object
504 this.config = {};
505 // merge and extend.
506 config = $.extend( this.config, $.tablesorter.defaults, settings );
507
508 // store common expression for speed
509 $this = $( this );
510 // save the settings where they read
511 $.data( this, "tablesorter", config );
512
513 // get the css class names, could be done else where.
514 var sortCSS = [ config.cssDesc, config.cssAsc ];
515 var sortMsg = [ mw.msg( 'sort-descending' ), mw.msg( 'sort-ascending' ) ];
516
517 // build headers
518 $headers = buildHeaders( this, sortMsg );
519 // Grab and process locale settings
520 buildTransformTable();
521 buildDateTable();
522 buildCollationTable();
523
524 //Precaching regexps can bring 10 fold
525 //performance improvements in some browsers
526 cacheRegexs();
527
528 // apply event handling to headers
529 // this is to big, perhaps break it out?
530 $headers.click(
531
532 function (e) {
533 //var clickTime= new Date();
534 if (firstTime) {
535 firstTime = false;
536 explodeRowspans( $this );
537 // try to auto detect column type, and store in tables config
538 that.config.parsers = buildParserCache( that, $headers );
539 // build the cache for the tbody cells
540 cache = buildCache( that );
541 }
542 var totalRows = ( $this[0].tBodies[0] && $this[0].tBodies[0].rows.length ) || 0;
543 if ( !this.sortDisabled && totalRows > 0 ) {
544 // Only call sortStart if sorting is
545 // enabled.
546 //$this.trigger( "sortStart" );
547
548 // store exp, for speed
549 var $cell = $( this );
550 // get current column index
551 var i = this.column;
552 // get current column sort order
553 this.order = this.count % 2;
554 this.count++;
555 // user only whants to sort on one
556 // column
557 if ( !e[config.sortMultiSortKey] ) {
558 // flush the sort list
559 config.sortList = [];
560 // add column to sort list
561 config.sortList.push( [i, this.order] );
562 // multi column sorting
563 } else {
564 // the user has clicked on an already sorted column.
565 if ( isValueInArray( i, config.sortList ) ) {
566 // revers the sorting direction
567 // for all tables.
568 for ( var j = 0; j < config.sortList.length; j++ ) {
569 var s = config.sortList[j],
570 o = config.headerList[s[0]];
571 if ( s[0] == i ) {
572 o.count = s[1];
573 o.count++;
574 s[1] = o.count % 2;
575 }
576 }
577 } else {
578 // add column to sort list array
579 config.sortList.push( [i, this.order] );
580 }
581 }
582
583 // set css for headers
584 setHeadersCss( $this[0], $headers, config.sortList, sortCSS, sortMsg );
585 appendToTable(
586 $this[0], multisort(
587 $this[0], config.sortList, cache ) );
588 //benchmark( "Sorting " + totalRows + " rows:", clickTime );
589
590 // stop normal event by returning false
591 return false;
592 }
593 // cancel selection
594 } ).mousedown( function () {
595 if ( config.cancelSelection ) {
596 this.onselectstart = function () {
597 return false;
598 };
599 return false;
600 }
601 } );
602 // apply easy methods that trigger binded events
603 //Can't think of any use for these in a mw context
604 // $this.bind( "update", function () {
605 // var me = this;
606 // setTimeout( function () {
607 // // rebuild parsers.
608 // me.config.parsers = buildParserCache(
609 // me, $headers );
610 // // rebuild the cache map
611 // cache = buildCache(me);
612 // }, 1 );
613 // } ).bind( "updateCell", function ( e, cell ) {
614 // var config = this.config;
615 // // get position from the dom.
616 // var pos = [( cell.parentNode.rowIndex - 1 ), cell.cellIndex];
617 // // update cache
618 // cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format(
619 // getElementText( cell ), cell );
620 // } ).bind( "sorton", function ( e, list ) {
621 // $( this ).trigger( "sortStart" );
622 // config.sortList = list;
623 // // update and store the sortlist
624 // var sortList = config.sortList;
625 // // update header count index
626 // updateHeaderSortCount( this, sortList );
627 // // set css for headers
628 // setHeadersCss( this, $headers, sortList, sortCSS );
629 // // sort the table and append it to the dom
630 // appendToTable( this, multisort( this, sortList, cache ) );
631 // } ).bind( "appendCache", function () {
632 // appendToTable( this, cache );
633 // } );
634 } );
635 };
636 this.addParser = function ( parser ) {
637 var l = parsers.length,
638 a = true;
639 for ( var i = 0; i < l; i++ ) {
640 if ( parsers[i].id.toLowerCase() == parser.id.toLowerCase() ) {
641 a = false;
642 }
643 }
644 if (a) {
645 parsers.push( parser );
646 }
647 };
648 this.formatDigit = function (s) {
649 if ( ts.transformTable != false ) {
650 var out = '',
651 c;
652 for ( var p = 0; p < s.length; p++ ) {
653 c = s.charAt(p);
654 if ( c in ts.transformTable ) {
655 out += ts.transformTable[c];
656 } else {
657 out += c;
658 }
659 }
660 s = out;
661 }
662 var i = parseFloat( s.replace(/[, ]/g, '').replace( "\u2212", '-' ) );
663 return ( isNaN(i)) ? 0 : i;
664 };
665 this.formatFloat = function (s) {
666 var i = parseFloat(s);
667 return ( isNaN(i)) ? 0 : i;
668 };
669 this.formatInt = function (s) {
670 var i = parseInt( s, 10 );
671 return ( isNaN(i)) ? 0 : i;
672 };
673 this.clearTableBody = function ( table ) {
674 if ( $.browser.msie ) {
675 function empty() {
676 while ( this.firstChild )
677 this.removeChild( this.firstChild );
678 }
679 empty.apply( table.tBodies[0] );
680 } else {
681 table.tBodies[0].innerHTML = "";
682 }
683 };
684 }
685 } );
686
687 // extend plugin scope
688 $.fn.extend( {
689 tablesorter: $.tablesorter.construct
690 } );
691
692 // make shortcut
693 var ts = $.tablesorter;
694
695 // add default parsers
696 ts.addParser( {
697 id: "text",
698 is: function (s) {
699 return true;
700 },
701 format: function (s) {
702 s = $.trim( s.toLowerCase() );
703 if ( ts.collationRegex ) {
704 var tsc = ts.collationTable;
705 s = s.replace( ts.collationRegex, function ( match ) {
706 var r = tsc[match] ? tsc[match] : tsc[match.toUpperCase()];
707 return r.toLowerCase();
708 } );
709 }
710 return s;
711 },
712 type: "text"
713 } );
714
715 ts.addParser( {
716 id: "IPAddress",
717 is: function (s) {
718 return ts.rgx.IPAddress[0].test(s);
719 },
720 format: function (s) {
721 var a = s.split("."),
722 r = "",
723 l = a.length;
724 for ( var i = 0; i < l; i++ ) {
725 var item = a[i];
726 if ( item.length == 2 ) {
727 r += "0" + item;
728 } else {
729 r += item;
730 }
731 }
732 return $.tablesorter.formatFloat(r);
733 },
734 type: "numeric"
735 } );
736
737 ts.addParser( {
738 id: "currency",
739 is: function (s) {
740 return ts.rgx.currency[0].test(s);
741 },
742 format: function (s) {
743 return $.tablesorter.formatDigit( s.replace( ts.rgx.currency[1], "" ) );
744 },
745 type: "numeric"
746 } );
747
748 ts.addParser( {
749 id: "url",
750 is: function (s) {
751 return ts.rgx.url[0].test(s);
752 },
753 format: function (s) {
754 return $.trim( s.replace( ts.rgx.url[1], '' ) );
755 },
756 type: "text"
757 } );
758
759 ts.addParser( {
760 id: "isoDate",
761 is: function (s) {
762 return ts.rgx.isoDate[0].test(s);
763 },
764 format: function (s) {
765 return $.tablesorter.formatFloat((s != "") ? new Date(s.replace(
766 new RegExp(/-/g), "/")).getTime() : "0");
767 },
768 type: "numeric"
769 } );
770
771 ts.addParser( {
772 id: "usLongDate",
773 is: function (s) {
774 return ts.rgx.usLongDate[0].test(s);
775 },
776 format: function (s) {
777 return $.tablesorter.formatFloat( new Date(s).getTime() );
778 },
779 type: "numeric"
780 } );
781
782 ts.addParser( {
783 id: "date",
784 is: function (s) {
785 return ( ts.dateRegex[0].test(s) || ts.dateRegex[1].test(s) || ts.dateRegex[2].test(s ));
786 },
787 format: function ( s, table ) {
788 s = $.trim( s.toLowerCase() );
789
790 for ( var i = 1, j = 0; i < 13 && j < 2; i++ ) {
791 s = s.replace( ts.monthNames[j][i], i );
792 if ( i == 12 ) {
793 j++;
794 i = 0;
795 }
796 }
797
798 s = s.replace(/[\-\.\,' ]/g, "/");
799
800 //Replace double slashes
801 s = s.replace(/\/\//g, "/");
802 s = s.replace(/\/\//g, "/");
803 s = s.split('/');
804
805 //Pad Month and Day
806 if ( s[0] && s[0].length == 1 ) s[0] = "0" + s[0];
807 if ( s[1] && s[1].length == 1 ) s[1] = "0" + s[1];
808
809 if ( !s[2] ) {
810 //Fix yearless dates
811 s[2] = 2000;
812 } else if ( ( y = parseInt( s[2], 10) ) < 100 ) {
813 //Guestimate years without centuries
814 if ( y < 30 ) {
815 s[2] = 2000 + y;
816 } else {
817 s[2] = 1900 + y;
818 }
819 }
820 //Resort array depending on preferences
821 if ( mw.config.get( 'wgDefaultDateFormat' ) == "mdy" || mw.config.get('wgContentLanguage') == 'en' ) {
822 s.push( s.shift() );
823 s.push( s.shift() );
824 } else if ( mw.config.get( 'wgDefaultDateFormat' ) == "dmy" ) {
825 var d = s.shift();
826 s.push( s.shift() );
827 s.push(d);
828 }
829 return parseInt( s.join(''), 10 );
830 },
831 type: "numeric"
832 } );
833 ts.addParser( {
834 id: "time",
835 is: function (s) {
836 return ts.rgx.time[0].test(s);
837 },
838 format: function (s) {
839 return $.tablesorter.formatFloat( new Date( "2000/01/01 " + s ).getTime() );
840 },
841 type: "numeric"
842 } );
843 ts.addParser( {
844 id: "number",
845 is: function ( s, table ) {
846 return $.tablesorter.numberRegex.test( $.trim(s ));
847 },
848 format: function (s) {
849 return $.tablesorter.formatDigit(s);
850 },
851 type: "numeric"
852 } );
853
854 } )( jQuery );