Changeset 5042 for freepbx/trunk/amp_conf/htdocs
- Timestamp:
- 09/16/07 19:12:33 (6 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
freepbx/trunk/amp_conf/htdocs/admin/common/libfreepbx.javascripts.js
r4993 r5042 133 133 {return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||(c==":")||(c==",")||(c==".")||(c=="%")||(c=="#")||(c=="-")||(c=="/")||(c=="?")||(c=="&")||(c=="="))} 134 134 function isCallerIDChar(c) 135 {return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||((c>="0")&&(c<="9"))||(c==":")||(c=="_")||(c=="-")||(c=="<")||(c==">")||(c=="(")||(c==")")||(c==" ")||(c=="\"")||(c=="&")||(c=="@")||(c==".") )}135 {return(((c>="a")&&(c<="z"))||((c>="A")&&(c<="Z"))||((c>="0")&&(c<="9"))||(c==":")||(c=="_")||(c=="-")||(c=="<")||(c==">")||(c=="(")||(c==")")||(c==" ")||(c=="\"")||(c=="&")||(c=="@")||(c==".")||(c=="+"))} 136 136 function isDialpatternChar(c) 137 137 {return(((c>="0")&&(c<="9"))||(c=="[")||(c=="]")||(c=="-")||(c=="+")||(c==".")||(c=="|")||(c=="Z"||c=="z")||(c=="X"||c=="x")||(c=="N"||c=="n")||(c=="*")||(c=="#")||(c=="_")||(c=="!"))} freepbx/trunk/amp_conf/htdocs/admin/common/script.legacy.js
r4993 r5042 621 621 622 622 function isCallerIDChar (c) 623 { return ( ((c >= "a") && (c <= "z")) || ((c >= "A") && (c <= "Z")) || ((c >= "0") && (c <= "9")) || (c == ":") || (c == "_") || (c == "-") || (c == "<") || (c == ">") || (c == "(") || (c == ")") || (c == " ") || (c == "\"") || (c == "&") || (c == "@") || (c == ".") )623 { return ( ((c >= "a") && (c <= "z")) || ((c >= "A") && (c <= "Z")) || ((c >= "0") && (c <= "9")) || (c == ":") || (c == "_") || (c == "-") || (c == "<") || (c == ">") || (c == "(") || (c == ")") || (c == " ") || (c == "\"") || (c == "&") || (c == "@") || (c == ".") || (c == "+") ) 624 624 } 625 625
