Last modified by Bastian Triller on 2013/10/05 10:40

From version 84.1
edited by Kieran Kelleher
on 2007/06/27 10:23
Change comment: There is no comment for this version
To version 86.1
edited by Kieran Kelleher
on 2010/01/11 12:30
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -7,7 +7,7 @@
7 7  * Provide opportunities to submit patches to bugs you might find in Wonder
8 8  * Add logging statements in Wonder source so you can better understand what is going when tracking down hard to find bugs
9 9  
10 -== Downloading Wonder Source from CVS ==
10 +== Downloading Wonder Source from Subversion ==
11 11  
12 12  * Decide on a directory where you will maintain the latest Wonder source tree on your hard drive. I have a directory ',,/WonderLatest' in my home folder.,,
13 13  * Open a terminal shell and navigate to the directory
... ... @@ -14,18 +14,42 @@
14 14  
15 15  {{noformat}}
16 16  
17 -cd ~/WonderLatest
17 +mkdir ~/WonderLatest
18 18  
19 19  {{/noformat}}
20 20  
21 -* Next perform initial checkout of Wonder source tree from CVS head using the following command. This creates a folder named Wonder
21 +* Next perform initial checkout of Wonder source tree from Subversion head using the following command. This creates a folder named Wonder
22 22  
23 23  {{noformat}}
24 24  
25 -cvs -z3 -d:pserver:anonymous@wonder.cvs.sourceforge.net:/cvsroot/wonder co -P Wonder
25 +svn co https://wonder.svn.sourceforge.net/svnroot/wonder/trunk/Wonder ~/WonderLatest
26 26  
27 27  {{/noformat}}
28 28  
29 +* As often as you prefer you can keep this up to date as follows:
30 +
31 +{{noformat}}
32 +
33 +cd ~/WonderLatest
34 +svn up
35 +
36 +{{/noformat}}
37 +
29 29  == Build and Install Wonder ==
30 30  
31 -* Follow the instructions in the INSTALL.txt document in the Wonder directory
40 +* Follow the "Building with Ant" instructions in the BUILD.txt document in the Wonder directory
41 +
42 +{{warning title="WebObjects 5.4.X Compatability"}}
43 +
44 +The default instructions in Wonder's BUILD.txt produce binaries that are compatable with WO 5.3.3. If you are using WO 5.4.X, then you need to add the "-Dwonder.patch=54" option to the ant commands. For example:
45 +
46 +ant -Dwonder.patch=54 frameworks; sudo ant -Dwonder.patch=54 frameworks.install
47 +
48 +
49 +h2. Concepts
50 +This complete procedure results in you having
51 +* a Wonder directory with the whole Wonder source tree (directories, projects, frameworks, example apps, miscellaneous, etc.) inside.
52 +* The binary Wonder frameworks ("ant frameworks") will be installed in /Library/Frameworks.
53 +* If you ran "ant applications", they will be installed in ...
54 +* If you ran "ant examples", they will be installed in ..
55 +{{/warning}}