mirror of
https://github.com/django/django.git
synced 2025-11-20 03:30:00 +00:00
Fixed #3421 -- Added IP and localhost validation to newforms URLField. Thanks, SmileyChris.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6152 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
8b0eaba0ee
commit
a2ce7669d9
2 changed files with 16 additions and 6 deletions
|
|
@ -1607,10 +1607,18 @@ ValidationError: [u'This field is required.']
|
|||
Traceback (most recent call last):
|
||||
...
|
||||
ValidationError: [u'This field is required.']
|
||||
>>> f.clean('http://localhost')
|
||||
u'http://localhost'
|
||||
>>> f.clean('http://example.com')
|
||||
u'http://example.com'
|
||||
>>> f.clean('http://www.example.com')
|
||||
u'http://www.example.com'
|
||||
>>> f.clean('http://www.example.com:8000/test')
|
||||
u'http://www.example.com:8000/test'
|
||||
>>> f.clean('http://200.8.9.10')
|
||||
u'http://200.8.9.10'
|
||||
>>> f.clean('http://200.8.9.10:8000/test')
|
||||
u'http://200.8.9.10:8000/test'
|
||||
>>> f.clean('foo')
|
||||
Traceback (most recent call last):
|
||||
...
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue