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

From version 215.1
edited by David Avendasora
on 2011/07/07 13:20
Change comment: There is no comment for this version
To version 222.1
edited by Bastian Triller
on 2013/05/21 17:11
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.avendasora
1 +XWiki.btriller
Content
... ... @@ -1,6 +1,6 @@
1 1  {{tip title="Now with more Git"}}
2 2  
3 -As of March 25th, 2011 the Wonder source code is now maintained on [GitHub|https://github.com/] at [https://github.com/projectwonder]. You'll need to be familiar with the [Git|http://git-scm.com/] Source Code Management system. [Here's|WO:Getting Started with Git] a good place to start. You will use Git to checkout a local copy of the repository (a "clone" in Git terms) allowing you to have direct access to the Wonder source.
3 +As of March 25th, 2011 the Wonder source code is now maintained on [GitHub|https://github.com/] at [https://github.com/wocommunity]. You'll need to be familiar with the [Git|http://git-scm.com/] Source Code Management system. [Here's|WO:Getting Started with Git] a good place to start. You will use Git to checkout a local copy of the repository (a "clone" in Git terms) allowing you to have direct access to the Wonder source.
4 4  
5 5  {{/tip}}
6 6  
... ... @@ -21,7 +21,7 @@
21 21  1. h5. Clone the source repository from GitHub into a new directory named "WonderSource" or whatever you'd like.
22 22  
23 23  {{code value="none"}}
24 -git clone git://github.com/projectwonder/wonder.git WonderSource
24 +git clone git://github.com/wocommunity/wonder.git WonderSource
25 25  {{/code}}
26 26  
27 27  If "git:~/~/" does not work for you then use "http:~/~/"
... ... @@ -28,8 +28,8 @@
28 28  
29 29  {{note title="Wonder Committers"}}
30 30  
31 -The URL above is the public, read-only URL.
32 -People with commit privileges for Project Wonder should use: *{{git@github.com:projectwonder/wonder.git}}*
31 +The URL above is the public, read-only URL.
32 +People with commit privileges for Project Wonder should use: {{{*}git@github.com:wocommunity/wonder.git{*}}}
33 33  {warning}Do *not* change "git@..." to be your username.{warning}
34 34  
35 35  {{/note}}
... ... @@ -65,14 +65,26 @@
65 65  
66 66  {{info}}
67 67  
68 -If you have any trouble or errors due to your local repository getting corrupted, simply delete the entire local repository (the {{\~/Roots}} directory) and start over using the same clone command above.
68 +If you have any trouble or errors due to your local repository getting corrupted, simply delete the entire local repository (the {{WonderSource}} directory) and start over using the same clone command above.
69 69  
70 70  {{/info}}
71 71  
72 +== Work with the Latest Changes - Integration Branch ==
73 +
74 +The integration branch of Wonder is where the most recent fixes, additions, new features, etc., are merged in for testing and vetting by the community. By checking out integration you can benefit from all of these latest commits to the Wonder project before they are pulled into master/trunk. And the community can benefit by having another contributor to the improvement of Wonder. To work with the integration branch in Git, you will simply checkout that branch from your repository like so:
75 +
76 +{{code value="none"}}
77 +cd WonderSource
78 +{{/code}}
79 +
80 +{{code}}
81 +git checkout integration
82 +{{/code}}
83 +
72 72  == Use It ==
73 73  
74 74  * h5. Use Wonder source code projects in your Eclipse workspace
75 -The best way to make use of Project Wonder is obviously to import the source code projects directly into your Eclipse workspace. Why would you be reading this page if that isn't what you are trying to do? Detailed instructions are here: [[WONDER:Working with Wonder source in Eclipse]]
87 +The best way to make use of Project Wonder is obviously to import the source code projects directly into your Eclipse workspace. Why would you be reading this page if that isn't what you are trying to do? Detailed instructions are here: [[Working with Wonder source in Eclipse]]
76 76  
77 77  {{note title="Ant Builds on your Development Machine"}}
78 78  
... ... @@ -81,7 +81,7 @@
81 81  {{/note}}
82 82  
83 83  * h5. Build and Install Project Wonder Binary Frameworks
84 -For building and installing the Wonder Frameworks, please see the standard [[Building and Installing WO Frameworks with Ant>>WO:Building and Installing a Framework with Ant]] pages.
96 +For building and installing the Wonder Frameworks, please see the standard [[Building and Installing WO Frameworks with Ant>>Building and Installing a Framework with Ant]] pages.
85 85  
86 86  {{note title="Using Both Binary and Source Code Frameworks on Your Development Machine"}}
87 87  
... ... @@ -90,4 +90,4 @@
90 90  {{/note}}
91 91  
92 92  * h5. Build Project Wonder frameworks with Hudson/Jenkins
93 -The ideal way to build WebObjects frameworks and applications is to use a "Continuous Integration Server" or "Build Server" like Hudson or Jenkins. This allows you to automate the often complex process of building WebObjects projects that have several dependencies on frameworks. Instructions on how to setup a Hudson/Jenkins server is are available on the [[WO:Installing and Configuring Jenkins Build Server]] page.
105 +The ideal way to build WebObjects frameworks and applications is to use a "Continuous Integration Server" or "Build Server" like Hudson or Jenkins. This allows you to automate the often complex process of building WebObjects projects that have several dependencies on frameworks. Instructions on how to setup a Hudson/Jenkins server is are available on the [[Installing and Configuring Jenkins]] page.