Location: A review of cardiac cellular electrophysiology models @ a80b964384c0 / dojo-presentation / js / dojo / dojox / validate / ca.js

Author:
David Nickerson <nickerso@users.sourceforge.net>
Date:
2010-05-04 12:37:19+12:00
Desc:
adding initial version of SED-ML L1V1 file reproducing what is in graphs/BR-INa-variants.xml
Permanent Source URI:
https://models.cellml.org/workspace/a1/rawfile/a80b964384c0c7683d7c5d07b73a5af7a973d46c/dojo-presentation/js/dojo/dojox/validate/ca.js

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);
};