-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.txt
65 lines (54 loc) · 1.8 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
Try it out
===========
Open this page in your browser
http://.../dools/app/apidoc/dojo/
Run the tests
==============
Inside the dools directory are a couple of test directories, not all tests pass yet, so there is still some stuff
to do, if you feel like go ahead and fix stuff.
http://.../dools/docs/docStringParser/tests/runTests.html
http://.../dools/docs/fileParser/tests/runTests.html
http://.../dools/docs/fileParser/tests/runTests.html
Run the demos
==============
A couple of widgets, which form the base of the app:apidoc can be tried out here:
http://.../dools/docs/widget/demos/
there you can see how the classes are supposed to be used.
This directory hierarchy assumes that the "dools" directory is a sibling of a
"dojo" directory which contains Dojo core, a "dijit" directory that provides
widgets, etc.
If starting from scratch but want to work from anonymous Dojo SVN, you should
achieve the right layout with:
****the following I didnt try it out yet******
Using svn
==========
%> mkdir dools
%> cd dools
%> svn co http://svn.dojotoolkit.org/src/dojo/trunk dojo
%> svn co http://svn.dojotoolkit.org/src/dijit/trunk dijit
%> svn co http://svn.dojotoolkit.org/src/dojox/trunk dojox
%> svn co http://svn.dojotoolkit.org/src/util/trunk util # You need this to run the tests.
%> svn co http://svn.github.com/wolframkriesing/dools.git dools
...
%> ls
dijit/
dojo/
dojox/
dools/
util/
Using git
==========
%> mkdir dools
%> cd dools
%> git clone http://svn.dojotoolkit.org/src/dojo/trunk dojo
%> git clone http://svn.dojotoolkit.org/src/dijit/trunk dijit
%> git clone http://svn.dojotoolkit.org/src/dojox/trunk dojox
%> git clone http://svn.dojotoolkit.org/src/util/trunk util
%> git clone http://svn.github.com/wolframkriesing/dools.git
...
%> ls
dijit/
dojo/
dojox/
dools/
util/