Fix #2103 : WebUI: Sorting by name is case-sensitive

This commit is contained in:
sedulous 2012-11-24 12:34:20 +00:00 committed by Calum Lind
parent 0676d7e2dc
commit 84bc2e78bc
3 changed files with 10 additions and 5 deletions

View File

@ -265,7 +265,7 @@
idProperty: 'id',
fields: [
{name: 'queue', sortType: Deluge.data.SortTypes.asQueuePosition},
{name: 'name'},
{name: 'name', sortType: Deluge.data.SortTypes.asName},
{name: 'total_size', type: 'int'},
{name: 'state'},
{name: 'progress', type: 'float'},

View File

@ -1,6 +1,6 @@
/*!
* Deluge.data.SortTypes.js
*
*
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
@ -39,7 +39,7 @@ Ext.namespace('Deluge.data');
*
* @class Deluge.data.SortTypes
* @singleton
*/
*/
Deluge.data.SortTypes = {
asIPAddress: function(value) {
var d = value.match(/(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\:(\d+)/);
@ -48,5 +48,9 @@ Deluge.data.SortTypes = {
asQueuePosition: function(value) {
return (value > -1) ? value : Number.MAX_VALUE;
},
asName: function(value) {
return String(value).toLowerCase();
}
}

View File

@ -1,6 +1,6 @@
/*!
* Deluge.data.TorrentRecord.js
*
*
* Copyright (c) Damien Churchill 2009-2010 <damoxc@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
@ -47,7 +47,8 @@ Deluge.data.Torrent = Ext.data.Record.create([{
type: 'int'
}, {
name: 'name',
type: 'string'
type: 'string',
sortType: Deluge.data.SortTypes.asName
}, {
name: 'total_size',
type: 'int'