Adding a collation test to tablesorter, fixing var ref from r90630
[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 ts.collationRegex = null;
474 if ( ts.collationTable ) {
475 var keys = [];
476
477 //Build array of key names
478 for ( var key in ts.collationTable ) {
479 if ( ts.collationTable.hasOwnProperty(key) ) { //to be safe
480 keys.push(key);
481 }
482 }
483 if (keys.length) {
484 ts.collationRegex = new RegExp( '[' + keys.join('') + ']', 'ig' );
485 }
486 }
487 }
488
489 function cacheRegexs() {
490 ts.rgx = {
491 IPAddress: [new RegExp(/^\d{1,3}[\.]\d{1,3}[\.]\d{1,3}[\.]\d{1,3}$/)],
492 currency: [new RegExp(/^[£$€?.]/), new RegExp(/[£$€]/g)],
493 url: [new RegExp(/^(https?|ftp|file):\/\/$/), new RegExp(/(https?|ftp|file):\/\//)],
494 isoDate: [new RegExp(/^\d{4}[\/\-]\d{1,2}[\/\-]\d{1,2}$/)],
495 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)))$/)],
496 time: [new RegExp(/^(([0-2]?[0-9]:[0-5][0-9])|([0-1]?[0-9]:[0-5][0-9]\s(am|pm)))$/)]
497 };
498 } /* public methods */
499 this.construct = function ( settings ) {
500 return this.each( function () {
501 // if no thead or tbody quit.
502 if ( !this.tHead || !this.tBodies ) return;
503 // declare
504 var $this, $document, $headers, cache, config, shiftDown = 0,
505 sortOrder, firstTime = true, that = this;
506 // new blank config object
507 this.config = {};
508 // merge and extend.
509 config = $.extend( this.config, $.tablesorter.defaults, settings );
510
511 // store common expression for speed
512 $this = $( this );
513 // save the settings where they read
514 $.data( this, "tablesorter", config );
515
516 // get the css class names, could be done else where.
517 var sortCSS = [ config.cssDesc, config.cssAsc ];
518 var sortMsg = [ mw.msg( 'sort-descending' ), mw.msg( 'sort-ascending' ) ];
519
520 // build headers
521 $headers = buildHeaders( this, sortMsg );
522 // Grab and process locale settings
523 buildTransformTable();
524 buildDateTable();
525 buildCollationTable();
526
527 //Precaching regexps can bring 10 fold
528 //performance improvements in some browsers
529 cacheRegexs();
530
531 // apply event handling to headers
532 // this is to big, perhaps break it out?
533 $headers.click(
534
535 function (e) {
536 //var clickTime= new Date();
537 if (firstTime) {
538 firstTime = false;
539 explodeRowspans( $this );
540 // try to auto detect column type, and store in tables config
541 that.config.parsers = buildParserCache( that, $headers );
542 // build the cache for the tbody cells
543 cache = buildCache( that );
544 }
545 var totalRows = ( $this[0].tBodies[0] && $this[0].tBodies[0].rows.length ) || 0;
546 if ( !this.sortDisabled && totalRows > 0 ) {
547 // Only call sortStart if sorting is
548 // enabled.
549 //$this.trigger( "sortStart" );
550
551 // store exp, for speed
552 var $cell = $( this );
553 // get current column index
554 var i = this.column;
555 // get current column sort order
556 this.order = this.count % 2;
557 this.count++;
558 // user only whants to sort on one
559 // column
560 if ( !e[config.sortMultiSortKey] ) {
561 // flush the sort list
562 config.sortList = [];
563 // add column to sort list
564 config.sortList.push( [i, this.order] );
565 // multi column sorting
566 } else {
567 // the user has clicked on an already sorted column.
568 if ( isValueInArray( i, config.sortList ) ) {
569 // revers the sorting direction
570 // for all tables.
571 for ( var j = 0; j < config.sortList.length; j++ ) {
572 var s = config.sortList[j],
573 o = config.headerList[s[0]];
574 if ( s[0] == i ) {
575 o.count = s[1];
576 o.count++;
577 s[1] = o.count % 2;
578 }
579 }
580 } else {
581 // add column to sort list array
582 config.sortList.push( [i, this.order] );
583 }
584 }
585
586 // set css for headers
587 setHeadersCss( $this[0], $headers, config.sortList, sortCSS, sortMsg );
588 appendToTable(
589 $this[0], multisort(
590 $this[0], config.sortList, cache ) );
591 //benchmark( "Sorting " + totalRows + " rows:", clickTime );
592
593 // stop normal event by returning false
594 return false;
595 }
596 // cancel selection
597 } ).mousedown( function () {
598 if ( config.cancelSelection ) {
599 this.onselectstart = function () {
600 return false;
601 };
602 return false;
603 }
604 } );
605 // apply easy methods that trigger binded events
606 //Can't think of any use for these in a mw context
607 // $this.bind( "update", function () {
608 // var me = this;
609 // setTimeout( function () {
610 // // rebuild parsers.
611 // me.config.parsers = buildParserCache(
612 // me, $headers );
613 // // rebuild the cache map
614 // cache = buildCache(me);
615 // }, 1 );
616 // } ).bind( "updateCell", function ( e, cell ) {
617 // var config = this.config;
618 // // get position from the dom.
619 // var pos = [( cell.parentNode.rowIndex - 1 ), cell.cellIndex];
620 // // update cache
621 // cache.normalized[pos[0]][pos[1]] = config.parsers[pos[1]].format(
622 // getElementText( cell ), cell );
623 // } ).bind( "sorton", function ( e, list ) {
624 // $( this ).trigger( "sortStart" );
625 // config.sortList = list;
626 // // update and store the sortlist
627 // var sortList = config.sortList;
628 // // update header count index
629 // updateHeaderSortCount( this, sortList );
630 // // set css for headers
631 // setHeadersCss( this, $headers, sortList, sortCSS );
632 // // sort the table and append it to the dom
633 // appendToTable( this, multisort( this, sortList, cache ) );
634 // } ).bind( "appendCache", function () {
635 // appendToTable( this, cache );
636 // } );
637 } );
638 };
639 this.addParser = function ( parser ) {
640 var l = parsers.length,
641 a = true;
642 for ( var i = 0; i < l; i++ ) {
643 if ( parsers[i].id.toLowerCase() == parser.id.toLowerCase() ) {
644 a = false;
645 }
646 }
647 if (a) {
648 parsers.push( parser );
649 }
650 };
651 this.formatDigit = function (s) {
652 if ( ts.transformTable != false ) {
653 var out = '',
654 c;
655 for ( var p = 0; p < s.length; p++ ) {
656 c = s.charAt(p);
657 if ( c in ts.transformTable ) {
658 out += ts.transformTable[c];
659 } else {
660 out += c;
661 }
662 }
663 s = out;
664 }
665 var i = parseFloat( s.replace(/[, ]/g, '').replace( "\u2212", '-' ) );
666 return ( isNaN(i)) ? 0 : i;
667 };
668 this.formatFloat = function (s) {
669 var i = parseFloat(s);
670 return ( isNaN(i)) ? 0 : i;
671 };
672 this.formatInt = function (s) {
673 var i = parseInt( s, 10 );
674 return ( isNaN(i)) ? 0 : i;
675 };
676 this.clearTableBody = function ( table ) {
677 if ( $.browser.msie ) {
678 function empty() {
679 while ( this.firstChild )
680 this.removeChild( this.firstChild );
681 }
682 empty.apply( table.tBodies[0] );
683 } else {
684 table.tBodies[0].innerHTML = "";
685 }
686 };
687 }
688 } );
689
690 // extend plugin scope
691 $.fn.extend( {
692 tablesorter: $.tablesorter.construct
693 } );
694
695 // make shortcut
696 var ts = $.tablesorter;
697
698 // add default parsers
699 ts.addParser( {
700 id: "text",
701 is: function (s) {
702 return true;
703 },
704 format: function (s) {
705 s = $.trim( s.toLowerCase() );
706 if ( ts.collationRegex ) {
707 var tsc = ts.collationTable;
708 s = s.replace( ts.collationRegex, function ( match ) {
709 var r = tsc[match] ? tsc[match] : tsc[match.toUpperCase()];
710 return r.toLowerCase();
711 } );
712 }
713 return s;
714 },
715 type: "text"
716 } );
717
718 ts.addParser( {
719 id: "IPAddress",
720 is: function (s) {
721 return ts.rgx.IPAddress[0].test(s);
722 },
723 format: function (s) {
724 var a = s.split("."),
725 r = "",
726 l = a.length;
727 for ( var i = 0; i < l; i++ ) {
728 var item = a[i];
729 if ( item.length == 1 ) {
730 r += "00" + item;
731 } else if ( item.length == 2 ) {
732 r += "0" + item;
733 } else {
734 r += item;
735 }
736 }
737 return $.tablesorter.formatFloat(r);
738 },
739 type: "numeric"
740 } );
741
742 ts.addParser( {
743 id: "currency",
744 is: function (s) {
745 return ts.rgx.currency[0].test(s);
746 },
747 format: function (s) {
748 return $.tablesorter.formatDigit( s.replace( ts.rgx.currency[1], "" ) );
749 },
750 type: "numeric"
751 } );
752
753 ts.addParser( {
754 id: "url",
755 is: function (s) {
756 return ts.rgx.url[0].test(s);
757 },
758 format: function (s) {
759 return $.trim( s.replace( ts.rgx.url[1], '' ) );
760 },
761 type: "text"
762 } );
763
764 ts.addParser( {
765 id: "isoDate",
766 is: function (s) {
767 return ts.rgx.isoDate[0].test(s);
768 },
769 format: function (s) {
770 return $.tablesorter.formatFloat((s != "") ? new Date(s.replace(
771 new RegExp(/-/g), "/")).getTime() : "0");
772 },
773 type: "numeric"
774 } );
775
776 ts.addParser( {
777 id: "usLongDate",
778 is: function (s) {
779 return ts.rgx.usLongDate[0].test(s);
780 },
781 format: function (s) {
782 return $.tablesorter.formatFloat( new Date(s).getTime() );
783 },
784 type: "numeric"
785 } );
786
787 ts.addParser( {
788 id: "date",
789 is: function (s) {
790 return ( ts.dateRegex[0].test(s) || ts.dateRegex[1].test(s) || ts.dateRegex[2].test(s ));
791 },
792 format: function ( s, table ) {
793 s = $.trim( s.toLowerCase() );
794
795 for ( var i = 1, j = 0; i < 13 && j < 2; i++ ) {
796 s = s.replace( ts.monthNames[j][i], i );
797 if ( i == 12 ) {
798 j++;
799 i = 0;
800 }
801 }
802
803 s = s.replace(/[\-\.\,' ]/g, "/");
804
805 //Replace double slashes
806 s = s.replace(/\/\//g, "/");
807 s = s.replace(/\/\//g, "/");
808 s = s.split('/');
809
810 //Pad Month and Day
811 if ( s[0] && s[0].length == 1 ) s[0] = "0" + s[0];
812 if ( s[1] && s[1].length == 1 ) s[1] = "0" + s[1];
813
814 if ( !s[2] ) {
815 //Fix yearless dates
816 s[2] = 2000;
817 } else if ( ( y = parseInt( s[2], 10) ) < 100 ) {
818 //Guestimate years without centuries
819 if ( y < 30 ) {
820 s[2] = 2000 + y;
821 } else {
822 s[2] = 1900 + y;
823 }
824 }
825 //Resort array depending on preferences
826 if ( mw.config.get( 'wgDefaultDateFormat' ) == "mdy" || mw.config.get('wgContentLanguage') == 'en' ) {
827 s.push( s.shift() );
828 s.push( s.shift() );
829 } else if ( mw.config.get( 'wgDefaultDateFormat' ) == "dmy" ) {
830 var d = s.shift();
831 s.push( s.shift() );
832 s.push(d);
833 }
834 return parseInt( s.join(''), 10 );
835 },
836 type: "numeric"
837 } );
838 ts.addParser( {
839 id: "time",
840 is: function (s) {
841 return ts.rgx.time[0].test(s);
842 },
843 format: function (s) {
844 return $.tablesorter.formatFloat( new Date( "2000/01/01 " + s ).getTime() );
845 },
846 type: "numeric"
847 } );
848 ts.addParser( {
849 id: "number",
850 is: function ( s, table ) {
851 return $.tablesorter.numberRegex.test( $.trim(s ));
852 },
853 format: function (s) {
854 return $.tablesorter.formatDigit(s);
855 },
856 type: "numeric"
857 } );
858
859 } )( jQuery );