README 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. -------------------------------------------------------------------------------
  2. DojoX Wire
  3. -------------------------------------------------------------------------------
  4. Version 1.0
  5. Release date: 05/29/2007
  6. -------------------------------------------------------------------------------
  7. Project state: stable
  8. -------------------------------------------------------------------------------
  9. Project authors
  10. Jared Jurkiewicz (jared.jurkiewicz@gmail.com)
  11. -------------------------------------------------------------------------------
  12. Project description
  13. The DojoX Wire project is a set of functions that build a generic data binding
  14. and service invocation library to simplify how data values across a wide
  15. variety of widget and non-widget JavaScript constructs are accessed, updated,
  16. and passed to and from services. It also provides a set of widgets
  17. within the dojox.wire.ml package to allow for declarative data binding
  18. definitions in addition to the programmatic APIs.
  19. In essense, this project is an API to provide a simplified way of doing MVC
  20. patterns in the client.
  21. -------------------------------------------------------------------------------
  22. Dependencies:
  23. DojoX Wire has dependencies on core dojo, the dijit widget system (for classes
  24. in the dojox.wire.ml package), dojox.data, and the D.O.H. unit test framework.
  25. -------------------------------------------------------------------------------
  26. Documentation:
  27. See the Dojo API tool (http://dojotoolkit.org/api)
  28. -------------------------------------------------------------------------------
  29. Installation instructions
  30. Grab the following from the Dojo SVN Repository:
  31. http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/wire.js
  32. http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/wire/*
  33. Install into the following directory structure:
  34. /dojox/wire/
  35. ...which should be at the same level as your Dojo checkout.
  36. It should look like:
  37. /dojox/wire.js
  38. /dojox/wire/*
  39. Require in dojox.wire for all baseline functions (dojox.wire.connect,
  40. dojox.wire.register, etc). For specific Wire classes,
  41. require in the appropriate dojox.wire.<Class>.
  42. -------------------------------------------------------------------------------