durusmail: quixote-users: Re: [Cheetahtemplate-discuss] Htmltext and latin-1 characters
Htmltext and latin-1 characters
2006-05-10
Re: [Cheetahtemplate-discuss] Htmltext and latin-1 characters
2006-05-10
Re: [Cheetahtemplate-discuss] Htmltext and latin-1 characters
2006-05-11
Re: [Cheetahtemplate-discuss] Htmltext and latin-1 characters
2006-05-10
2006-05-11
2006-05-11
2006-05-11
2006-05-11
2006-05-11
2006-05-13
2006-05-13
2006-05-15
Re: Htmltext and latin-1 characters
2006-06-04
2006-06-06
2006-06-07
2006-06-08
Re: Htmltext and latin-1 characters
2006-06-05
2006-06-05
2006-06-05
Re: [Cheetahtemplate-discuss] Htmltext and latin-1 characters
Ian Bicking
2006-05-10
You might find the WebHelpers html_quote function useful:
http://pylonshq.com/project/pylonshq/browser/WebHelpers/trunk/webhelpers/util.py

Specifically asciification:

if not isinstance(s, basestring):
     if hasattr(s, '__unicode__'):
         s = unicode(s)
     else:
         s = str(s)
s = cgi.escape(s, True)
if isinstance(s, unicode):
     s = s.encode('ascii', 'xmlcharrefreplace')


--
Ian Bicking  /  ianb@colorstudy.com  /  http://blog.ianbicking.org
reply