Fixed #6291 -- Fixed error in CASocialInsuranceNumberField documentation and error message. Thanks, jeff+django@ivany.org and arien
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6985 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
aa728422bc
commit
f6336737a0
|
@ -80,12 +80,12 @@ class CASocialInsuranceNumberField(Field):
|
||||||
|
|
||||||
Checks the following rules to determine whether the number is valid:
|
Checks the following rules to determine whether the number is valid:
|
||||||
|
|
||||||
* Conforms to the XXX-XXX-XXXX format.
|
* Conforms to the XXX-XXX-XXX format.
|
||||||
* Passes the check digit process "Luhn Algorithm"
|
* Passes the check digit process "Luhn Algorithm"
|
||||||
See: http://en.wikipedia.org/wiki/Social_Insurance_Number
|
See: http://en.wikipedia.org/wiki/Social_Insurance_Number
|
||||||
"""
|
"""
|
||||||
default_error_messages = {
|
default_error_messages = {
|
||||||
'invalid': ugettext('Enter a valid Canadian Social Insurance number in XXX-XXX-XXXX format.'),
|
'invalid': ugettext('Enter a valid Canadian Social Insurance number in XXX-XXX-XXX format.'),
|
||||||
}
|
}
|
||||||
|
|
||||||
def clean(self, value):
|
def clean(self, value):
|
||||||
|
|
|
@ -181,7 +181,7 @@ CASocialInsuranceNumberField
|
||||||
----------------------------
|
----------------------------
|
||||||
|
|
||||||
A form field that validates input as a Canadian Social Insurance Number (SIN).
|
A form field that validates input as a Canadian Social Insurance Number (SIN).
|
||||||
A valid number must have the format XXX-XXX-XXXX and pass a `Luhn mod-10
|
A valid number must have the format XXX-XXX-XXX and pass a `Luhn mod-10
|
||||||
checksum`_.
|
checksum`_.
|
||||||
|
|
||||||
.. _Luhn mod-10 checksum: http://en.wikipedia.org/wiki/Luhn_algorithm
|
.. _Luhn mod-10 checksum: http://en.wikipedia.org/wiki/Luhn_algorithm
|
||||||
|
|
|
@ -213,13 +213,13 @@ u'046-454-286'
|
||||||
>>> f.clean('046-454-287')
|
>>> f.clean('046-454-287')
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
ValidationError: [u'Enter a valid Canadian Social Insurance number in XXX-XXX-XXXX format.']
|
ValidationError: [u'Enter a valid Canadian Social Insurance number in XXX-XXX-XXX format.']
|
||||||
>>> f.clean('046 454 286')
|
>>> f.clean('046 454 286')
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
ValidationError: [u'Enter a valid Canadian Social Insurance number in XXX-XXX-XXXX format.']
|
ValidationError: [u'Enter a valid Canadian Social Insurance number in XXX-XXX-XXX format.']
|
||||||
>>> f.clean('046-44-286')
|
>>> f.clean('046-44-286')
|
||||||
Traceback (most recent call last):
|
Traceback (most recent call last):
|
||||||
...
|
...
|
||||||
ValidationError: [u'Enter a valid Canadian Social Insurance number in XXX-XXX-XXXX format.']
|
ValidationError: [u'Enter a valid Canadian Social Insurance number in XXX-XXX-XXX format.']
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in New Issue