Last modified by Pascal Robert on 2013/05/21 17:29

From version 15.1
edited by Mike Schrag
on 2010/11/10 21:55
Change comment: There is no comment for this version
To version 20.1
edited by pyu
on 2010/10/04 16:23
Change comment: Contributed some screen shots.

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.mschrag
1 +XWiki.pyu
Content
... ... @@ -1,17 +1,11 @@
1 -Just run this script [[Bash script to download Eclipse and install everything in OneStep>>http://gist.github.com/610081]].
1 +1)  Download this file {{color value="#006daf"}}[{{/color}}RecommendedUpdateSites.xml{{color}}|^RecommendedUpdateSites.xml]{{/color}}
2 2  
3 -The above replaces everything below for Eclipse 3.6.1 for Mac OS X
3 +=== In Eclipse ===
4 4  
5 -Download this file  [[RecommendedUpdateSites.xml>>^RecommendedUpdateSites.xml]]
6 -
7 -In Eclipse.
8 -
9 9  Help=>Install New Software...
10 10  Click "Available Software Sites"
11 11  [[image:AvailableSites.jpg||border="1"]]
12 -
13 -On the Modal Dialog box Click the Import button and select the [[RecommendedUpdateSites.xml>>^RecommendedUpdateSites.xml]] file. [[image:Preferences.jpg||border="1"]]
14 -
8 +On the Modal Dialog box Click the Import button and select the {{color value="#006daf"}}[{{/color}}RecommendedUpdateSites.xml{{color}}|^RecommendedUpdateSites.xml]{{/color}} file. [[image:Preferences.jpg||border="1"]]
15 15  Import... Download and select
16 16  Click "OK"
17 17  
... ... @@ -56,62 +56,3 @@
56 56  Unzip into /.eclipse (make it if it doesn't exist)
57 57  
58 58  Restart Eclipse
59 -
60 -===== **Recording Your Own Preferences in Workspace Mechanic** =====
61 -
62 -In workspace mechanic, right-click on the icon and select "Preference Recorder > Start Recording" to record your own preference changes. Once you are finished, select "Stop Recording" and save the resulting file to your /.eclipse/mechanic folder created above. Use the .epf file extension for your preference change to be picked up when you open other workspaces. [[image:EclipseScreenSnapz001.png||border="1"]]
63 -
64 -===== **Project Import Mechanic** =====
65 -
66 -If you have a standard set of projects that you import into every workspace, you can install our new project importer workspace mechanic plugin and automate that process. Just drop .proj config files into ,,/.eclipse/mechanic and restart.,,
67 -
68 -Install Site:
69 -http:~/~/webobjects.mdimension.com/mechanic/
70 -
71 -,,/.eclipse/mechanic/YourFile.proj Format:,,
72 -
73 -{{code}}
74 -
75 -# @title the title of your task
76 -# @description the description of your task
77 -# @reconcile true or false; reconcile true means that all of the discovered projects are checked every time, false means it does one initial installation and then never checks for changes
78 -/Path1
79 -/Path2
80 -/Path3
81 -
82 -{{/code}}
83 -
84 -Example 1:
85 -
86 -{{code}}
87 -
88 -# @title A Bunch of Projects
89 -# @description Import a bunch of projects into this workspace
90 -# @reconcile true
91 -/Absolute/Path/To/Projects
92 -
93 -{{/code}}
94 -
95 -Example 2:
96 -
97 -{{code}}
98 -
99 -# @title Relative Projects
100 -# @description Import a bunch of projects based on a relative path
101 -# @reconcile true
102 -../RelativePathContainingProjects
103 -
104 -{{/code}}
105 -
106 -Example 3:
107 -
108 -{{code}}
109 -
110 -# @title Individual Projects
111 -# @description Import Wonder 2.0/5.4 into this workspace
112 -# @reconcile true
113 -/Path/To/Project1
114 -/Path/To/Project2
115 -/Path/To/FolderContainingProjects
116 -
117 -{{/code}}