Advertisement
Advertisement
| 05.02.2008 at 05:50AM PDT, ID: 23371375 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: |
/*
+-------------------------------------------------------------------+
| J S - C H E C K F O R M (v1.3) |
| |
| Copyright Gerd Tentler www.gerd-tentler.de/tools |
| Created: Oct. 23, 2001 Last modified: Jun. 17, 2006 |
+-------------------------------------------------------------------+
| This program may be used and hosted free of charge by anyone for |
| personal purpose as long as this copyright notice remains intact. |
| |
| Obtain permission before selling the code for this program or |
| hosting this software on a commercial website or redistributing |
| this software over the Internet or in any other medium. In all |
| cases copyright must remain intact. |
+-------------------------------------------------------------------+
======================================================================================================
ARGUMENTS:
- form-name or -number
- 'field:title:type:minimum length'[, ...] (type = number / mail / url / date(format) / [none])
Example:
checkForm('frm1', 'name:::2', 'age::number:1', 'eMail:e-mail:mail:1', 'homepage::url:0',
'birthday::date(dmy):1');
------------------------------------------------------------------------------------------------------
This script was tested with the following systems and browsers:
- Windows XP: IE 6, NN 7, Opera 7, Firefox 1
- Mac OS X: IE 5, Safari 1
If you use another browser or system, this script may not work for you - sorry.
NOTE: Safari 1 on Mac OS X does only accept dates between Jan. 1, 1901 and Dec. 31, 2037 as valid.
======================================================================================================
*/
//--------------------------------------------------------------------------------------------------------
// Language settings
//--------------------------------------------------------------------------------------------------------
var msgNumber = "tem que ser apenas numerico (0 a 9).";
var msgEMail = "tem que ser um endereco de email valido.";
var msgURL = "tem que ser um endereco web completo.";
var msgDate = "tem que ser uma data.";
var msgFillOut = "Campo nao preenchido ou incompleto:";
var msgNoForm = "Formulario nao existe.";
var msgNoField = "Campo nao existe.";
//--------------------------------------------------------------------------------------------------------
// Functions
//--------------------------------------------------------------------------------------------------------
function _trim(str) {
if(str) {
str = str.replace(/^\s+/, "");
str = str.replace(/\s+$/, "");
}
return str;
}
function _isDate(year, month, day) {
month--;
if(year < 100) year += 2000;
var d = new Date(year, month, day);
return ((day == d.getDate()) && (month == d.getMonth()) && (year == d.getFullYear()));
}
function checkForm() {
var args = checkForm.arguments;
var f = args[0];
var msg = "";
var arr, field, title, type, minLength, elem, val, cnt, nr, i, j;
var format, d, day, month, year;
var valid_url = /^(https?|ftp):\/\/([a-z0-9._-]+:[a-z0-9._-]+@)?[a-z0-9äöüÄÖÜ#._\/~% -]+(\?([a-z0-9_-]+(=[a-zA-Z0-99äöüÄÖÜß+%?_-]+&?)?)*)?$/i;
var valid_mail = /^[a-z0-9._-]+@[a-z0-9äöüÄÖÜ.-]+\.[a-z]{2,4}$/i;
if(document.forms[f]) {
for(i = 1; i < args.length; i++) {
arr = args[i].split(":");
field = _trim(arr[0]);
title = _trim(arr[1]);
if(!title) title = field;
type = _trim(arr[2].toLowerCase());
minLength = _trim(arr[3]);
elem = document.forms[f].elements[field];
if(elem) {
val = _trim(elem.value);
if(val != "") {
if(type == "number") {
val = val.replace(",", ".");
if(isNaN(val)) msg += '"' + title + '" ' + msgNumber + "\n";
}
else if(type == "mail" && val.search(valid_mail) == -1) msg += '"' + title + '" ' + msgEMail + "\n";
else if(type == "url" && val.search(valid_url) == -1) msg += '"' + title + '" ' + msgURL + "\n";
else if(type.indexOf("date") != -1) {
if(type.indexOf("(") != -1) format = type.substr(type.indexOf("("));
else format = "(dmy)";
d = val;
for(j = 1; j < format.length - 1; j++) {
cnt = d.search(/[^0-9]/);
if(cnt == -1) cnt = d.length;
nr = d.substr(0, cnt);
nr = parseInt(nr.replace(/^0/, ''));
switch(format.charAt(j)) {
case "d": day = nr; d = d.substr(cnt + 1); break;
case "m": month = nr; d = d.substr(cnt + 1); break;
case "y": year = nr; d = d.substr(cnt + 1); break;
}
}
if(!_isDate(year, month, day)) msg += '"' + title + '" ' + msgDate + "\n";
}
}
if(minLength) {
if(elem.length) {
if(elem.options) {
for(j = cnt = 0; j < elem.options.length; j++) {
if(elem.options[j].selected && elem.options[j].value != "") cnt++;
}
}
else for(j = cnt = 0; j < elem.length; j++) {
if(elem[j].checked) cnt++;
}
}
else if(elem.type == "checkbox") cnt = elem.checked ? 1 : 0;
else cnt = val.length;
if(cnt < minLength) msg += msgFillOut + ' "' + title + '"\n';
}
}
else msg += msgNoField + ': "' + field + '"\n';
}
if(msg) alert(msg);
else document.forms[f].submit();
}
else alert(msgNoForm + ': "' + f + '"');
}
//--------------------------------------------------------------------------------------------------------
|