|
From: <caw...@us...> - 2007-09-18 13:49:35
|
Revision: 3208
http://rubyeclipse.svn.sourceforge.net/rubyeclipse/?rev=3208&view=rev
Author: cawilliams
Date: 2007-09-18 06:49:30 -0700 (Tue, 18 Sep 2007)
Log Message:
-----------
add build action group to Ruby Explorer. Add missing string for build action. Add icon files for refresh action.
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/actions/ActionMessages.properties
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/packageview/PackageExplorerActionGroup.java
Added Paths:
-----------
trunk/org.rubypeople.rdt.ui/icons/full/dlcl16/refresh_nav.gif
trunk/org.rubypeople.rdt.ui/icons/full/elcl16/refresh_nav.gif
Added: trunk/org.rubypeople.rdt.ui/icons/full/dlcl16/refresh_nav.gif
===================================================================
(Binary files differ)
Property changes on: trunk/org.rubypeople.rdt.ui/icons/full/dlcl16/refresh_nav.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/org.rubypeople.rdt.ui/icons/full/elcl16/refresh_nav.gif
===================================================================
(Binary files differ)
Property changes on: trunk/org.rubypeople.rdt.ui/icons/full/elcl16/refresh_nav.gif
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/actions/ActionMessages.properties
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/actions/ActionMessages.properties 2007-09-18 13:45:47 UTC (rev 3207)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/actions/ActionMessages.properties 2007-09-18 13:49:30 UTC (rev 3208)
@@ -13,6 +13,8 @@
OpenWithMenu_label=Open Wit&h
BuildPath_label=&Build Path
+BuildAction_label=&Build Project
+
OpenAction_label=&Open
OpenAction_tooltip=Open an Editor on the Selected Element
OpenAction_description=Open an editor on the selected element
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/packageview/PackageExplorerActionGroup.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/packageview/PackageExplorerActionGroup.java 2007-09-18 13:45:47 UTC (rev 3207)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/internal/ui/packageview/PackageExplorerActionGroup.java 2007-09-18 13:49:30 UTC (rev 3208)
@@ -56,6 +56,7 @@
import org.rubypeople.rdt.internal.ui.workingsets.ViewActionGroup;
import org.rubypeople.rdt.internal.ui.workingsets.WorkingSetActionGroup;
import org.rubypeople.rdt.ui.IContextMenuConstants;
+import org.rubypeople.rdt.ui.actions.BuildActionGroup;
import org.rubypeople.rdt.ui.actions.CCPActionGroup;
import org.rubypeople.rdt.ui.actions.CustomFiltersActionGroup;
import org.rubypeople.rdt.ui.actions.NavigateActionGroup;
@@ -107,7 +108,7 @@
// new GenerateActionGroup(fPart),
// fRefactorActionGroup= new RefactorActionGroup(fPart),
// new ImportActionGroup(fPart),
-// new BuildActionGroup(fPart),
+ new BuildActionGroup(fPart),
new RubySearchActionGroup(fPart),
new ProjectActionGroup(fPart),
fViewActionGroup= new ViewActionGroup(fPart.getRootMode(), workingSetListener, site),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|