2007-02-16 05:26:43 +08:00
|
|
|
"""
|
|
|
|
UK-specific Form helpers
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.newforms.fields import RegexField
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
from django.utils.translation import ugettext
|
2007-02-16 05:26:43 +08:00
|
|
|
|
|
|
|
class UKPostcodeField(RegexField):
|
|
|
|
"""
|
|
|
|
A form field that validates its input is a UK postcode.
|
|
|
|
|
|
|
|
The regular expression used is sourced from the schema for British Standard
|
|
|
|
BS7666 address types: http://www.govtalk.gov.uk/gdsc/schemas/bs7666-v2-0.xsd
|
|
|
|
"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(UKPostcodeField, self).__init__(r'^(GIR 0AA|[A-PR-UWYZ]([0-9]{1,2}|([A-HIK-Y][0-9](|[0-9]|[ABEHMNPRVWXY]))|[0-9][A-HJKSTUW]) [0-9][ABD-HJLNP-UW-Z]{2})$',
|
|
|
|
max_length=None, min_length=None,
|
Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 20:11:04 +08:00
|
|
|
error_message=ugettext(u'Enter a postcode. A space is required between the two postcode parts.'),
|
2007-02-16 05:26:43 +08:00
|
|
|
*args, **kwargs)
|