mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
New build scripts
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5282 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
50
source/web/scripts/tiny_mce/utils/validate.js
vendored
Normal file
50
source/web/scripts/tiny_mce/utils/validate.js
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
/**
|
||||
* $RCSfile: validate.js,v $
|
||||
* $Revision: 1.3 $
|
||||
* $Date: 2006/02/06 20:11:09 $
|
||||
*
|
||||
* Various form validation methods.
|
||||
*
|
||||
* @author Moxiecode
|
||||
* @copyright Copyright <20> 2004-2006, Moxiecode Systems AB, All rights reserved.
|
||||
*/
|
||||
|
||||
function testRegExp(form_name, element_name, re) {
|
||||
return new RegExp(re).test(document.forms[form_name].elements[element_name].value);
|
||||
}
|
||||
|
||||
function validateString(form_name, element_name) {
|
||||
return (document.forms[form_name].elements[element_name].value.length > 0);
|
||||
}
|
||||
|
||||
function validateSelection(form_name, element_name) {
|
||||
return (document.forms[form_name].elements[element_name].selectedIndex > 0);
|
||||
}
|
||||
|
||||
function validateCheckBox(form_name, element_name) {
|
||||
return document.forms[form_name].elements[element_name].checked;
|
||||
}
|
||||
|
||||
function validateCleanString(form_name, element_name) {
|
||||
return testRegExp(form_name, element_name, '^[A-Za-z0-9_]+$');
|
||||
}
|
||||
|
||||
function validateEmail(form_name, element_name) {
|
||||
return testRegExp(form_name, element_name, '^[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+@[-!#$%&\'*+\\/0-9=?A-Z^_`a-z{|}~]+\.[-!#$%&\'*+\\./0-9=?A-Z^_`a-z{|}~]+$');
|
||||
}
|
||||
|
||||
function validateAbsUrl(form_name, element_name) {
|
||||
return testRegExp(form_name, element_name, '^(news|telnet|nttp|file|http|ftp|https)://[-A-Za-z0-9\\.]+$');
|
||||
}
|
||||
|
||||
function validateNumber(form_name, element_name, allow_blank) {
|
||||
return (!allow_blank && value == '') ? false : testRegExp(form_name, element_name, '^-?[0-9]*\\.?[0-9]*$');
|
||||
}
|
||||
|
||||
function validateSize(form_name, element_name,) {
|
||||
return testRegExp(form_name, element_name, '^[0-9]+(px|%)?$');
|
||||
}
|
||||
|
||||
function validateID(form_name, element_name,) {
|
||||
return testRegExp(form_name, element_name, '^[A-Za-z_]([A-Za-z0-9_])*$');
|
||||
}
|
Reference in New Issue
Block a user