Re: tiny patch to improve the url validating regex

2006-02-10 Thread EricHsu
Adrian Holovaty wrote: > Hey Eric, > > Thanks for the pointer on this. I've updated the code in trunk to > accept "https". > > Adrian > My pleasure! I've updated my django source to the latest trunk :) - Eric

Re: tiny patch to improve the url validating regex

2006-02-10 Thread Adrian Holovaty
On 2/9/06, EricHsu <[EMAIL PROTECTED]> wrote: > when I tried to save an "https://..."; url into the db, the django's > manipulator kept complaining that it was invalid. It is because the > django/core/validators.py's url_re is a little bit too simple, the > url_re pattern accepts only url begins w

tiny patch to improve the url validating regex

2006-02-09 Thread EricHsu
hey guys, when I tried to save an "https://..."; url into the db, the django's manipulator kept complaining that it was invalid. It is because the django/core/validators.py's url_re is a little bit too simple, the url_re pattern accepts only url begins with "http://";. I've read the RFC3986 whic