Comment #8 on issue 1632 by [email protected]: Alphabetial sorting of review requests should not be case sensitive
http://code.google.com/p/reviewboard/issues/detail?id=1632
This seems to be database related (the order_by() function in django can order by a list of fields from a table, but there is no way to ignore case (adding lower() around the sort items makes them invalid fields as far as order_by is concerned), so if the database being used is case-sensitive then this defect will occur.
I think this would either require a sort after retrieving the entire list from the database, or changing the table structure to have a lower-case column for anything that you want to ignore case (which seems hacky).
-- You received this message because you are subscribed to the Google Groups "reviewboard-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/reviewboard-issues?hl=en.
