Wiki source code of Download Wonder Source, Build and Install
Version 167.1 by Kieran Kelleher on 2010/08/14 19:55
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
136.1 | 1 | == Introduction == |
![]() |
128.1 | 2 | |
![]() |
136.1 | 3 | Instead of downloading the Wonder binaries, working from the latest source code directly can have some advantages such as: |
![]() |
77.1 | 4 | |
![]() |
166.1 | 5 | * Ability to conveniently browse and search the source code and learn from the wisdom and experience of the WO committers |
6 | * Put breakpoints in and step through Wonder source when debugging your projects | ||
7 | * Provide opportunities to submit patches to bugs you might find in Wonder | ||
![]() |
112.1 | 8 | * Add logging statements in Wonder source so you can better understand what is going when tracking down hard to find bugs |
![]() |
166.1 | 9 | * Work with specific versions of Wonder in a project - good practice for quality control, especially for teams |
![]() |
112.1 | 10 | |
![]() |
166.1 | 11 | == Downloading Wonder Source from Subversion == |
![]() |
112.1 | 12 | |
![]() |
166.1 | 13 | * Open a terminal shell and navigate to the directory where you want to maintain the WonderSource directory and decide on a name of the folder that will contain the Wonder source. For this example, we will use the name //WonderSource// |
14 | * Perform initial checkout of Wonder source tree from Subversion head using the following command. This checks out the source into the directory //WonderSource//, automatically creating //WonderSource// if it does not exist. | ||
![]() |
77.1 | 15 | |
![]() |
166.1 | 16 | {{noformat}} |
![]() |
77.1 | 17 | |
![]() |
166.1 | 18 | svn co http://wonder.svn.sourceforge.net/svnroot/wonder/trunk/Wonder WonderSource |
![]() |
128.1 | 19 | |
![]() |
166.1 | 20 | {{/noformat}} |
![]() |
77.1 | 21 | |
![]() |
166.1 | 22 | * As often as you prefer you can keep this up to date as follows: |
![]() |
128.1 | 23 | |
![]() |
166.1 | 24 | {{noformat}} |
![]() |
128.1 | 25 | |
![]() |
142.1 | 26 | cd /path/to/WonderSource |
![]() |
166.1 | 27 | svn up |
![]() |
142.1 | 28 | |
![]() |
166.1 | 29 | {{/noformat}} |
![]() |
142.1 | 30 | |
![]() |
166.1 | 31 | == Build and Install Wonder == |
![]() |
142.1 | 32 | |
![]() |
166.1 | 33 | * Follow the "Building with Ant" instructions in the BUILD.txt document in the Wonder directory |
![]() |
156.1 | 34 | |
![]() |
166.1 | 35 | {{warning title="WebObjects 5.4.X Compatability"}} |
![]() |
156.1 | 36 | |
![]() |
166.1 | 37 | 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: |
![]() |
142.1 | 38 | |
![]() |
166.1 | 39 | ant \-Dwonder.patch=54 frameworks; sudo ant \-Dwonder.patch=54 frameworks.install |
![]() |
142.1 | 40 | |
![]() |
166.1 | 41 | {{/warning}} |
![]() |
142.1 | 42 | |
![]() |
166.1 | 43 | == Concepts == |
![]() |
142.1 | 44 | |
![]() |
166.1 | 45 | This complete procedure results in you having |
![]() |
142.1 | 46 | |
![]() |
166.1 | 47 | * a Wonder directory with the whole Wonder source tree (directories, projects, frameworks, example apps, miscellaneous, etc.) inside. |
48 | * The binary Wonder frameworks ("ant frameworks") will be installed in /Library/Frameworks. | ||
49 | * If you ran "ant applications", they will be installed in ... | ||
50 | * If you ran "ant examples", they will be installed in ... |