Re: Validating GB telephone numbers in Django forms.

2012-09-11 Thread g1smd.1
Brad Pitcher stepped in and made the various code conversions. There's just a few more changes and updates to go and the module will be complete. On Wednesday, September 5, 2012 11:05:45 PM UTC, g1smd.1 wrote: > > > The GB number plan is quite complicated, with a variety of number lengths > a

Re: Validating GB telephone numbers in Django forms.

2012-09-05 Thread g1smd.1
The GB number plan is quite complicated, with a variety of number lengths and formats. Some of it is detailed here: http://www.aa-asterisk.org.uk/index.php/Number_format I already compiled all the RegEx patterns that are needed. Some are listed here: http://www.aa-asterisk.org.uk/index.php/Regu

Re: Validating GB telephone numbers in Django forms.

2012-09-05 Thread Amyth Arora
To be frank , i am not really familiar with all possibilities of GB phone numbers, if you could throw some light on this, i might be able to help ya. On Wed, Sep 5, 2012 at 5:59 PM, g1smd.1 wrote: > > Thanks for the reply and information. > > > The jQuery validation routines for GB telephone num

Re: Validating GB telephone numbers in Django forms.

2012-09-05 Thread g1smd.1
Thanks for the reply and information. The jQuery validation routines for GB telephone numbers contain significant errors and shortcomings. I already posted some patches correcting many of those problems at least a month ago, but they haven't been reviewed yet. The new Python/django telephone

Re: Validating GB telephone numbers in Django forms.

2012-09-05 Thread Amyth Arora
you can alternatively use jquery to validate the field, i do not have the link handy as m on my phone right now but google validation engine, it is one of the most powerful jquery validation library which also has builtin method of validating uk phone numbers. On Sep 4, 2012 5:00 AM, "g1smd.1" wro

Re: Validating GB telephone numbers in Django forms.

2012-09-04 Thread g1smd.1
On Monday, September 3, 2012 8:10:46 PM UTC, g1smd.1 wrote: > > I see that there are routines for validating telephone numbers in forms in > Django for several countries. > > The code for that can usually be found in the forms.py file located in the > various country folders here: > https://githu

Validating GB telephone numbers in Django forms.

2012-09-03 Thread g1smd.1
I see that there are routines for validating telephone numbers in forms in Django for several countries. The code for that can usually be found in the forms.py file located in the various country folders here: https://github.com/django/django/tree/master/django/contrib/localflavor So far, ther