Update of /cvsroot/easystruts/org.sf.easyexplore
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29857
Modified Files:
plugin.xml build.properties
Log Message:
A small upgrade to run also a comamnd and get the right default command on windows... I use it all the time.
Index: build.properties
===================================================================
RCS file: /cvsroot/easystruts/org.sf.easyexplore/build.properties,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** build.properties 26 Jan 2006 20:37:56 -0000 1.1
--- build.properties 27 Jan 2006 02:31:11 -0000 1.2
***************
*** 3,5 ****
.,\
plugin.properties,\
! plugin.xml
--- 3,9 ----
.,\
plugin.properties,\
! plugin.xml,\
! icon/,\
! README.TXT,\
! LICENSE.txt
! src.includes = icon/
Index: plugin.xml
===================================================================
RCS file: /cvsroot/easystruts/org.sf.easyexplore/plugin.xml,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** plugin.xml 26 Jan 2006 20:37:56 -0000 1.1
--- plugin.xml 27 Jan 2006 02:31:11 -0000 1.2
***************
*** 22,32 ****
</or>
</visibility>
! <action label="Easy Explore..." icon="icon/easyexplore.gif"
! class="org.sf.easyexplore.actions.EasyExploreAction"
! menubarPath="additions" enablesFor="1"
! id="org.sf.easyexplore.actions.EasyExploreAction">
!
</action>
</objectContribution>
</extension>
</plugin>
\ No newline at end of file
--- 22,74 ----
</or>
</visibility>
! <action
! class="org.sf.easyexplore.actions.EasyExploreAction"
! definitionId="org.sf.easyexplore.actions.EasyExploreCommand"
! enablesFor="1"
! icon="icon/easyexplore.gif"
! id="org.sf.easyexplore.actions.EasyExploreAction"
! label="Easy explore here..."
! menubarPath="additions">
! </action>
! <action
! class="org.sf.easyexplore.actions.EasyCommandAction"
! definitionId="org.sf.easyexplore.actions.EasyCommandCommand"
! enablesFor="1"
! icon="icon/easycommand.gif"
! id="org.sf.easyexplore.actions.EasyCommandAction"
! label="Easy command here..."
! menubarPath="additions">
</action>
</objectContribution>
</extension>
+ <extension
+ point="org.eclipse.ui.bindings">
+ <key
+ commandId="org.sf.easyexplore.actions.EasyCommandCommand"
+ contextId="org.eclipse.ui.contexts.dialogAndWindow"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M1+M2+A"/>
+ <key
+ commandId="org.sf.easyexplore.actions.EasyExploreCommand"
+ contextId="org.eclipse.ui.contexts.dialogAndWindow"
+ schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"
+ sequence="M1+M2+Q"/>
+ </extension>
+ <extension
+ point="org.eclipse.ui.commands">
+ <category
+ description="Open an Explorer and a command prompt"
+ id="org.sf.easyexplore.category"
+ name="EasyExplore"/>
+ <command
+ categoryId="org.sf.easyexplore.category"
+ description="Execute a system command on a file"
+ id="org.sf.easyexplore.actions.EasyCommandCommand"
+ name="EasyCommand"/>
+ <command
+ categoryId="org.sf.easyexplore.category"
+ description="Open a file explorer on a file"
+ id="org.sf.easyexplore.actions.EasyExploreCommand"
+ name="EasyExplore"/>
+ </extension>
</plugin>
\ No newline at end of file
|