﻿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
14941	URLField (in django.contrib.admin) rejects IDN domain	Nedec	nobody	"I tried to add a new entry using the admin interface.
But when the URLField contains any unicode char (for IDN domains), like ''http://de.wikipedia.org/wiki/Tür'', I am getting the following error:

''Enter a valid URL.''

According to the [http://docs.djangoproject.com/en/dev/ref/forms/fields/#urlfield documentation], this bug was fixed in 1.2 and it does work in the shell:

{{{
>>> from django.core.validators import URLValidator
>>> v = URLValidator()
>>> v('http://de.wikipedia.org/wiki/Tür')
>>>
}}}
"		closed	Core (Other)	1.2		fixed			Accepted	1	0	0	0	0	0
