﻿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
30589	urlize parses email addresses with apostrophes incorrectly.	Mark Gregson	Pystar	"In 1.11.21 I've observed that the urlize template tag messes up email addresses containing apostrophes in the local part, specifically, it excludes any characters before the apostrophe from the link text and href attribute. 

A simple example using django.utils.htmls.urlize:
{{{
>>> from django.utils.html import urlize
>>> urlize(""o'neill@example.com"")
u'o\'<a href=""mailto:neill@example.com"">neill@example.com</a>'
}}}
I would expect this to return:
{{{
u'<a href=""mailto:o\'neill@example.com"">o\'neill@example.com</a>'
}}}"	Cleanup/optimization	closed	Documentation	dev	Normal	fixed		Shai Berger	Accepted	1	0	0	0	1	0
