README 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. -------------------------------------------------------------------------------
  2. dojox.validate
  3. -------------------------------------------------------------------------------
  4. Version 0.02
  5. Release date: 07/12/2007
  6. -------------------------------------------------------------------------------
  7. Project state: experimental / beta
  8. -------------------------------------------------------------------------------
  9. Credits
  10. port: Peter Higgins (dante)
  11. contributions: Kun Xi (bookstack at gmail com), Jared Jurkiewicz
  12. -------------------------------------------------------------------------------
  13. Project description
  14. Provides a set of validation functions to match
  15. values against known constants for use in form
  16. validation, such as email address, TLD, ipAddress,
  17. country-specific phone numbers and SSN, among
  18. others..
  19. It is broken into many parts. dojox.validate._base
  20. is required by most named modules in this project.
  21. ca.js provides Canadian specific functionality
  22. check.js provides an experimental form-management utility,
  23. which will likely be deprecated in favor
  24. creditCard.js provides validation functions for most standard
  25. credit card types.
  26. isbn.js validates ISBN numbers
  27. regexp.js provides a strange place to put regular expressions
  28. related to validation. It was formerly polluting namespaces
  29. and created in `dojox.regexp`. This is now `dojox.validate.regexp`
  30. to confine values to the dojox.validate project.
  31. us.js provides US-Specific validation. Zip, Social, etc.
  32. web.js provides url and email address validation, as well as a number
  33. of web/network related validation functions.
  34. br.js provides Brazil specific validators for CNPJ and CPF numbers.
  35. -------------------------------------------------------------------------------
  36. Dependencies:
  37. Requires Base Dojo and dojo.regexp.
  38. -------------------------------------------------------------------------------
  39. Installation instructions
  40. Grab the following from the Dojo SVN Repository:
  41. http://svn.dojotoolkit.org/src/dojox/trunk/validate.js
  42. http://svn.dojotoolkit.org/src/dojox/trunk/validate
  43. Install into the following directory structure:
  44. /dojox/validate/
  45. ...which should be at the same level as your Dojo checkout.