﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
9891	Add entity2unicode in `django.utils.html`	rafael+django@…	nobody	"The html utils of Django could have this function:
{{{
#!python
import htmlentitydefs
entity_re = re.compile('&([a-z]+);', re.I)
def entity2unicode(text):
    for entity in entity_re.findall(text):
        print entity
        text = text.replace('&%s;'%entity, htmlentitydefs.entitydefs[entity].decode('iso-8859-1'))
    return text
}}}

Maybe it could be useful for someone else"		closed	Uncategorized	1.0		wontfix			Unreviewed	0	0	0	0	0	0
