You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RWhat steps will reproduce the problem?
1. View book list
2.
3.
What is the expected output? What do you see instead?
Dawkins' book 'The Blind Watchmaker' is sorted by its first word, 'The', but
standard library sort order would sort it by 'Blind', as though the book were
titled without that word, and appear as 'Blind Watchmaker, The'.
What version of the product are you using? On what operating system?
Latest on Market, Android 2.1
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 9 Aug 2010 at 5:34
The text was updated successfully, but these errors were encountered:
I think what you are referring to is not "standard," but yes, commonly used.
Seems like the "mechanical" sort order disregarding leading articles.
http://en.wikipedia.org/wiki/Library_catalog
"In the mechanical sort order, the first word of the title is the first sort
term. Most new catalogs use this scheme, but still include a trace of the
grammatical sort order: they neglect an article (The, A, etc.) at the beginning
of the title."
We could do this for English, but there are complications for other languages
as that article notes.
I looked into this more and it gets tricky. What about "A is for Alibi"? and
such, we don't know to remove the leading article then?
More info
http://stackoverflow.com/questions/1285849/custom-order-by-to-ignore-the
At the same time we do the sort by last name, we could add a "title_sort"
column, and we could strip articles that go in that. Still tough in some cases
though (like "A is for Alibi").
Original issue reported on code.google.com by
[email protected]
on 9 Aug 2010 at 5:34The text was updated successfully, but these errors were encountered: