README 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. -------------------------------------------------------------------------------
  2. dojox.lang
  3. -------------------------------------------------------------------------------
  4. Version 0.991
  5. Release date: 07/30/2007
  6. -------------------------------------------------------------------------------
  7. Project state:
  8. beta
  9. -------------------------------------------------------------------------------
  10. Credits
  11. Eugene Lazutkin (eugene.lazutkin@gmail.com)
  12. Kris Zyp (kris@sitepen.com)
  13. -------------------------------------------------------------------------------
  14. Project description
  15. Implementation of common functional operations, and provisions, aspect-oriented
  16. helpers. Later we can add other JS language-related helpers.
  17. dojox.lang.observable - Provides construction of objects that such that
  18. property access and modification can be controlled, i.e. provides a form of
  19. getters/setters.
  20. dojox.lang.typed - Provides type checking for JavaScript classes, enforcing
  21. types on properties and method parameters using JSON Schema definitions.
  22. dojox.lang.docs - Provides schemas on Dojo's classes from the API
  23. documentation. This can used for runtime access to class metadata information
  24. such as descriptions and type information. This can be used in conjunction with
  25. dojox.lang.typed to enforce typing on Dojo's classes using the API information.
  26. -------------------------------------------------------------------------------
  27. Dependencies:
  28. None.
  29. -------------------------------------------------------------------------------
  30. Documentation
  31. For now:
  32. dojox.lang.functional:
  33. http://lazutkin.com/blog/2008/jan/12/functional-fun-javascript-dojo/
  34. -------------------------------------------------------------------------------
  35. Installation instructions
  36. Grab the following from the Dojo SVN Repository:
  37. http://svn.dojotoolkit.org/src/dojo/dojox/trunk/lang/*
  38. Install into the following directory structure:
  39. /dojox/lang/
  40. ...which should be at the same level as your Dojo checkout.
  41. -------------------------------------------------------------------------------
  42. Additional Notes
  43. See tests and the source for more details.
  44. LICENSE in this directory contains the MIT license by Oliver Steele for
  45. dojox.lang.functional.lambda, which was derived from his original implementation.