﻿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
18071	urlize is case-sensitive	luke@…	nobody	"When you run urlize() on url schemes that have been uppercased, urlize fails to convert them to clickable links.
{{{
>>> from django.utils.html import urlize
>>> urlize(""foo http://bar.com https://baz.com HTTPS://bar.com"")
u'foo <a href=""http://bar.com"">http://bar.com</a> <a href=""https://baz.com"">https://baz.com</a> HTTPS://bar.com'
}}}
Expected output:
{{{
>>> from django.utils.html import urlize
>>> urlize(""foo http://bar.com https://baz.com HTTPS://bar.com"")
u'foo <a href=""http://bar.com"">http://bar.com</a> <a href=""https://baz.com"">https://baz.com</a> <a href=""https://bar.com"">HTTPS://bar.com</a>'
}}}"	Bug	closed	Uncategorized	1.4	Normal	fixed	urlize	adamzap@…	Accepted	1	0	0	0	1	0
