Changeset 686
- Timestamp:
- 12/07/07 23:49:19 (1 year ago)
- Files:
-
- trunk/build/manifests/testapp.mn (modified) (1 diff)
- trunk/build/manifests/testapp.mn (modified) (1 diff)
- trunk/lib/jelix-www/js/jforms.js (modified) (1 diff)
- trunk/lib/jelix-www/js/jforms.js (modified) (1 diff)
- trunk/lib/jelix/CREDITS (modified) (1 diff)
- trunk/lib/jelix/CREDITS (modified) (1 diff)
- trunk/testapp/INSTALL (added)
- trunk/testapp/INSTALL (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/manifests/testapp.mn
r668 r686 3 3 .htaccess 4 4 application.init.php 5 INSTALL 5 6 cd testapp/plugins 6 7 .htaccess trunk/build/manifests/testapp.mn
r668 r686 3 3 .htaccess 4 4 application.init.php 5 INSTALL 5 6 cd testapp/plugins 6 7 .htaccess trunk/lib/jelix-www/js/jforms.js
r650 r686 65 65 var ok = false; 66 66 switch(c.datatype){ 67 case 'string' : 67 case 'string' : 68 68 ok = true; 69 break; 70 case 'boolean' : 69 if(c.minLength != -1 && val.length < c.minLength) 70 ok = false; 71 if(c.maxLength != -1 && val.length > c.maxLength) 72 ok = false; 73 break; 74 case 'boolean' : 71 75 ok = (val == 'true' || val == 'false'); 72 76 break; trunk/lib/jelix-www/js/jforms.js
r650 r686 65 65 var ok = false; 66 66 switch(c.datatype){ 67 case 'string' : 67 case 'string' : 68 68 ok = true; 69 break; 70 case 'boolean' : 69 if(c.minLength != -1 && val.length < c.minLength) 70 ok = false; 71 if(c.maxLength != -1 && val.length > c.maxLength) 72 ok = false; 73 break; 74 case 'boolean' : 71 75 ok = (val == 'true' || val == 'false'); 72 76 break; trunk/lib/jelix/CREDITS
r685 r686 100 100 101 101 Christian Tritten 102 - improvements on pag links plugin (#340)102 - improvements on pagelinks plugin (#340) 103 103 104 104 Yann trunk/lib/jelix/CREDITS
r685 r686 100 100 101 101 Christian Tritten 102 - improvements on pag links plugin (#340)102 - improvements on pagelinks plugin (#340) 103 103 104 104 Yann
