On 29 Jan 2008 Tue 02:58:30 Collin Grady wrote: > Personally, I'd love to see the username validation expanded - unicode, > email addresses, etc, are all fair game in my opinion :) > > Registration forms could easily be limited if people wanted to restrict > allowed characters, but you can't really go the other direction :)
I think, making unicode available would be great because there is no obstacles in controlling it. When we don't want to unicode character names, we can just control it with newform validation. [~/tmp]> python Python 2.4.4 (#1, Jan 4 2008, 00:58:13) [GCC 3.4.6] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> foo = "not unicode" >>> bar = u"unicode iĞü" >>> isinstance(foo, unicode) False >>> isinstance(bar, unicode) True >>> --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" 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/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
