
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this page|
You searched for keyword:unicode |
found 0 photos and 4 blogs in and 0 blog comments in 0.00 seconds |
Blogs |
|
|
|
Valuble site: Commonly Confused Characters - 28th of December 2004 Found this site when I was trying to figure out the HTML entity codes for certain characters that had slipped into my XML file. |
|
|
Unicode strings to ASCII ...nicely - 8th of August 2006 This has been a problem for a long time for me. Whenever someone enters a title in my CMS the id of the document is derived from the title. Spaces are replaced with '-
>>> title = u"Klüft skräms inför på fédéral électoral große"
>>> print title.encode('ascii','ignore')
Klft skrms infr p fdral lectoral groe
|
|
|
Sending HTML emails in Zope - 26th of October 2006 Here are a few lessons learnt when sending HTML emails in Zope with unicode data. I'm still a beginner with this stuff and still probably have a lot to learn. What I've achived now works but might break with different encodings or on different systems so don't assume that these patterns will work in your setup. |
|
|
is is not the same as equal in Python - 1st of December 2006 Don't do the silly misstake that I did today. I improved my code to better support unicode by replacing all plain strings with unicode strings. In there I had code that looked like this:
if type_ is 'textarea':
do something |

