Subversion Repositories Applications.papyrus

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2150 mathias 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
 
14
The DojoX Wire project is a set of functions that build a generic data binding
15
and service invocation library to simplify how data values across a wide
16
variety of widget and non-widget JavaScript constructs are accessed, updated,
17
and passed to and from services.  It also provides a set of widgets
18
within the dojox.wire.ml package to allow for declarative data binding
19
definitions in addition to the programmatic APIs.
20
 
21
In essense, this project is an API to provide a simplified way of doing MVC
22
patterns in the client.
23
 
24
-------------------------------------------------------------------------------
25
Dependencies:
26
 
27
DojoX Wire has dependencies on core dojo, the dijit widget system (for classes
28
in the dojox.wire.ml package), dojox.data, and the D.O.H. unit test framework.
29
-------------------------------------------------------------------------------
30
Documentation:
31
 
32
See the Dojo API tool (http://dojotoolkit.org/api)
33
-------------------------------------------------------------------------------
34
Installation instructions
35
 
36
Grab the following from the Dojo SVN Repository:
37
http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/wire.js
38
http://svn.dojotoolkit.org/var/src/dojo/dojox/trunk/wire/*
39
 
40
Install into the following directory structure:
41
/dojox/wire/
42
 
43
...which should be at the same level as your Dojo checkout.
44
 
45
It should look like:
46
/dojox/wire.js
47
/dojox/wire/*
48
 
49
Require in dojox.wire for all baseline functions (dojox.wire.connect,
50
dojox.wire.register, etc).  For specific Wire classes,
51
require in the appropriate dojox.wire.<Class>.
52
-------------------------------------------------------------------------------
53