models.URLField with verify_exists=True pass non existent Urls to DB

2010-06-16 Thread aurel...@gmail.com
Hi, I have a model with URLField. Parmether verify_exists is set to True, but when I enter url that does not exists (e.g. http://foobarbarfoo.com, or http://www.google.com/foobar) they somehow manage to get to the DB. Should model report error? Or I do not understand docs: "If True (the default),

Re: models.URLField with verify_exists=True pass non existent Urls to DB

2010-06-16 Thread aurel...@gmail.com
rs a valid URL because the corresponding field is defined as models.URLField." So book has error, at least for Django 1.2 On Jun 16, 7:53 pm, Karen Tracey wrote: > On Wed, Jun 16, 2010 at 1:29 PM, aurel...@gmail.com wrote: > > > Hi, > > > I have a model with URLField. Pa