* src/RelImage.py: remove PIL

* src/Imgmanip.py: remove PIL
* src/MediaView.py: remove PIL
* src/accent.py: support of unaccenting characters for comparison,
and sorting
* src/RelLib.py: build sort name using unaccented version
* src/PeopleView.py: get bold working again
* src/PeopleModel.py: sort using unaccented characters


svn: r3428
This commit is contained in:
Don Allingham
2004-08-18 03:55:55 +00:00
parent baa5ec71f4
commit ec9723a390
8 changed files with 51 additions and 118 deletions

View File

@ -42,6 +42,7 @@ import pango
#
#-------------------------------------------------------------------------
from RelLib import *
import accent
#-------------------------------------------------------------------------
#
@ -266,7 +267,7 @@ class PeopleModel(gtk.GenericTreeModel):
if col == 0:
return iter
elif col == COLUMN_NAME_SORT:
return iter.upper()
return accent.deaccent(iter.upper())
else:
return u''
else: