summaryrefslogtreecommitdiffstats
path: root/tests/lib/naturalsort.php
Commit message (Collapse)AuthorAgeFilesLines
* Add PHPunit test for DefaultCollatorAW-UC2015-02-241-9/+95
| | | | | This extends Test_NaturalSort to include a basic test for \OC\NaturalSort_DefaultCollator()
* Make root tests extend the \Test\TestCaseJoas Schilling2014-11-191-1/+3
|
* Fixed sort algo for additional casesVincent Petry2014-08-111-0/+4
|
* Fixed file list sortingVincent Petry2014-08-111-0/+178
Now using a natural sort algorithm that is more consistent between JS and PHP (although not perfect in some corner cases) - added OC.Util.naturalSortComparator that uses the same algo that was used for the user list - changed user list and files list to use OC.Util.naturalSortComparator - removed toLowerCase() and changed the comparator to use String.localeCompare() - added unit tests - added OC_NaturalSort that is used by OCP\Util::naturalSortCompare()