diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2008-11-13 09:49:11 +0000 |
commit | e44a7e37b6c7b5961adaffc62b9042b8d442938e (patch) | |
tree | 95b67c356e93163467db2451f2b8cce84ed5d582 /includes/js/dojox/validate/ca.js | |
parent | a62b9742ee5e28bcec6872d88f50f25b820914f6 (diff) | |
download | semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.gz semanticscuttle-e44a7e37b6c7b5961adaffc62b9042b8d442938e.tar.bz2 |
New feature: basic Ajax suggestion for tags and implementation of Dojo toolkit
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@151 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'includes/js/dojox/validate/ca.js')
-rw-r--r-- | includes/js/dojox/validate/ca.js | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/includes/js/dojox/validate/ca.js b/includes/js/dojox/validate/ca.js new file mode 100644 index 0000000..dbd3aa5 --- /dev/null +++ b/includes/js/dojox/validate/ca.js @@ -0,0 +1,44 @@ +if(!dojo._hasResource["dojox.validate.ca"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. +dojo._hasResource["dojox.validate.ca"] = true; +dojo.provide("dojox.validate.ca"); + +dojo.require("dojox.validate._base"); + +dojox.validate.ca.isPhoneNumber = function(/* String */value) { + // summary: Validates 10 Canadian digit phone number for several common formats + // returns: Boolean + return dojox.validate.us.isPhoneNumber(value); // same as US +}; + +dojox.validate.ca.isProvince = function(/* String[2] */value) { + // summary: Validates Canadian province abbreviations (2 chars) + // returns: Boolean + var re = new RegExp("^" + dojox.regexp.ca.province() + "$", "i"); + return re.test(value); +}; + +dojox.validate.ca.isSocialInsuranceNumber = function(/* String */value) { + // summary: Validates Canadian 9 digit social insurance number for several common formats + // This routine only pattern matches and does not use the Luhn Algorithm to validate number. + // returns: Boolean + var flags = { + format: [ + "###-###-###", + "### ### ###", + "#########" + ] + }; + return dojox.validate.isNumberFormat(value, flags); +}; + +dojox.validate.ca.isPostalCode = function(value) { + // summary: Validates Canadian 6 digit postal code: + // Canadian postal codes are in the format ANA NAN, + // where A is a letter and N is a digit, with a space + // separating the third and fourth characters. + // returns: Boolean + var re = new RegExp("^" + dojox.regexp.ca.postalCode() + "$", "i"); + return re.test(value); +}; + +} |