Hi,

In my app I'm trying to generate friendly user-profile URL (first name + 
last name) using the following module:

http://pydoc.net/Python/redsolutioncms.django-hex-storage/0.1.1/pinyin.urlify/

However, there is no full char mapping done when I run my test code 
(notice: I changed the function name to my_urlify()):

from maps import *
from urlify import *
s = "żźć ńąś łęó"
print my_urlify(s)

- the code above evaluates to: aaa-aaa-aaa, so the function replaces spaces 
with dash but that's it. Special characters like ł, ź etc. are not being 
mapped.

I'm running Python 2.7.3.
Unicode characters are stored as UCS-4 (sys.maxunicode = 1114111)

Any ideas what could be wrong?



-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to