﻿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
26958	Django urlize inside html tags	Henrique Chehad	nobody	"Hello.

The urlize is processing urls inside params.

It is adding ""<a href="" inside attributes.

Example:


{{{
>>> from django.utils.html import urlize
>>> text = ""<img src=\""https://www.url.com/image.jpg\"">""
>>> urlize(text)


u'<img src=""<a href=""https://www.url.com/image.jpg"">https://www.url.com/image.jpg</a>"">'
>>> text = '<iframe src=""https://www.url.com/image.jpg"">'
>>> urlize(text)
u'<iframe src=""<a href=""https://www.url.com/image.jpg"">https://www.url.com/image.jpg</a>"">'
}}}


It didn't appeared in previous version (tested in 1.6)

"	Bug	closed	Template system	1.9	Normal	invalid			Unreviewed	0	0	0	0	0	0
