﻿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
2215	[patch] django.utils.html.escape does not escape non-english characters properly	Matias Hermanrud Fjeld <mhf@…>	Adrian Holovaty	"This patch makes ''django.utils.html.escape'' use pythons htmlentitydefs module to know what to escape.

Characters like æ, ø, å and alot of other non-english letters are escaped properly:
{{{
#!python
>>> from django.utils.html import escape
>>> escape('<p>æøå</p>')
'&lt;p&gt;&aelig;&oslash;&aring;&lt;/p&gt;'
}}}

It would be nice to use generators here, but alas.
"	enhancement	closed	Tools		normal	wontfix			Unreviewed	1	0	0	0	0	0
