Re: URLField verify_exists is ignored

2009-02-05 Thread Rajesh Dhawan
On Feb 5, 10:17 am, Adam Radestock wrote: > I'm trying to get a URLField to NOT check the URL is valid on form > submission, but the damn thing won't listen! > I have the following model defined in my models.py: > > class SubversionRepository(models.Model): >

Re: URLField verify_exists is ignored

2009-02-05 Thread josesoa
It might be checking if the URL is in a correct format and not checking if the URL exists. Make sure the URL is in a valid format. On Feb 5, 10:17 am, Adam Radestock wrote: > I'm trying to get a URLField to NOT check the URL is valid on form   > submission, but the

URLField verify_exists is ignored

2009-02-05 Thread Adam Radestock
I'm trying to get a URLField to NOT check the URL is valid on form submission, but the damn thing won't listen! I have the following model defined in my models.py: class SubversionRepository(models.Model): name = models.CharField(max_length=200) url =