Re: stable sort for list views in the admin interface

2009-11-15 Thread Javier Guerra
Karen Tracey wrote: > Thus, the actual sort is done by the database. IOW, it's not about stable vs. non-stable sort algorithms, since it doesn't transform one view's data to the next. instead, both views are generated from the same data with different parameters. -- Javier -- You received t

Re: stable sort for list views in the admin interface

2009-11-15 Thread Karen Tracey
On Sun, Nov 15, 2009 at 10:55 AM, Andrew Ball wrote: > I've noticed that in Django 1.1 when I sort based on a column in the admin > interface's list view for one of my models and then sort by a different > column, the second result set is no longer sorted based on the first column > selected. Th

stable sort for list views in the admin interface

2009-11-15 Thread Andrew Ball
I've noticed that in Django 1.1 when I sort based on a column in the admin interface's list view for one of my models and then sort by a different column, the second result set is no longer sorted based on the first column selected. This means that the sorting algorithm used is not a stable sortin