Hi all, In Turkish, the capital for 'i' (ascii char) is 'İ' (a non-ascii char) and capital for 'ı' (non-ascii) is 'I' (ascii).
I want to match slugified version of a username, which comes from the requested URL to a user. If the username contains 'I', which is a legal ascii character for a username, iexact does not match it with 'i', which is the slugified version of the 'I', but matches with 'ı' (the non-ascii char), when the locale is TR. i.e. I need something like: User.objects.get(username__slug=username) but db backends does not support this. Any suggestions? Thanks, oMat --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---