Update of /cvsroot/easystruts/easyexplore-plugin
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29640
Modified Files:
plugin.xml README.TXT build.properties .classpath
Added Files:
plugin.properties
Removed Files:
project.properties
Log Message:
major refactoring on this little puppy to get it OSGI compliant and have visbility enabled as needed....
Index: .classpath
===================================================================
RCS file: /cvsroot/easystruts/easyexplore-plugin/.classpath,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** .classpath 14 Apr 2005 20:19:09 -0000 1.2
--- .classpath 12 Dec 2005 04:02:21 -0000 1.3
***************
*** 1,7 ****
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
- <classpathentry kind="src" path="src/java"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
--- 1,7 ----
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
+ <classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
--- project.properties DELETED ---
Index: plugin.xml
===================================================================
RCS file: /cvsroot/easystruts/easyexplore-plugin/plugin.xml,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** plugin.xml 14 Apr 2005 20:37:22 -0000 1.4
--- plugin.xml 12 Dec 2005 04:02:21 -0000 1.5
***************
*** 1,50 ****
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
! <plugin
! id="org.sf.easyexplore"
! name="Easy Explore Plugin"
! version="1.0.4"
! provider-name="Emmanuel Boudrant"
! class="org.sf.easyexplore.EasyExplorePlugin">
!
! <runtime>
! <library name="easyexplore.jar"/>
! </runtime>
! <requires>
! <import plugin="org.eclipse.core.runtime.compatibility"/>
! <import plugin="org.eclipse.ui.ide"/>
! <import plugin="org.eclipse.ui.views"/>
! <import plugin="org.eclipse.jface.text"/>
! <import plugin="org.eclipse.ui.workbench.texteditor"/>
! <import plugin="org.eclipse.ui.editors"/>
! <import plugin="org.eclipse.core.resources"/>
! <import plugin="org.eclipse.ui"/>
! <import plugin="org.eclipse.jdt.core"/>
! </requires>
!
!
! <extension
! point="org.eclipse.ui.popupMenus">
! <objectContribution
! objectClass="org.eclipse.core.runtime.IAdaptable"
! id="org.sf.easyexplore.contribution">
! <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>
! <extension
! point="org.eclipse.ui.preferencePages">
! <page
! name="Easy Explore"
! class="org.sf.easyexplore.preferences.EasyExplorePreferencePage"
! id="org.sf.asyexplore.preferences.EasyExplorePreferencePage">
! </page>
! </extension>
! </plugin>
--- 1,32 ----
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
! <plugin>
! <extension point="org.eclipse.ui.preferencePages">
! <page name="Easy Explore"
! class="org.sf.easyexplore.preferences.EasyExplorePreferencePage"
! id="org.sf.asyexplore.preferences.EasyExplorePreferencePage">
! </page>
! </extension>
! <extension point="org.eclipse.ui.popupMenus">
! <objectContribution
! objectClass="org.eclipse.core.runtime.IAdaptable"
! id="org.sf.easyexplore.contribution">
! <visibility>
! <or>
! <objectClass
! name="org.eclipse.core.resources.IResource" />
! <objectClass
! name="org.eclipse.ui.model.IWorkbenchAdapter" />
! <objectClass
! name="org.eclipse.jdt.core.ICompilationUnit" />
! </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
--- NEW FILE: plugin.properties ---
pluginName = Easy Explore
providerName = Emmanuel Boudrant and the EasyStruts team
Index: build.properties
===================================================================
RCS file: /cvsroot/easystruts/easyexplore-plugin/build.properties,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** build.properties 14 Apr 2005 20:19:09 -0000 1.3
--- build.properties 12 Dec 2005 04:02:21 -0000 1.4
***************
*** 1,5 ****
! source.easyexplore.jar = src/java/
! bin.includes = easyexplore.jar,\
! icon/,\
! xdocs,\
plugin.xml
--- 1,5 ----
! source.. = src/
! bin.includes = META-INF/,\
! .,\
! plugin.properties,\
plugin.xml
Index: README.TXT
===================================================================
RCS file: /cvsroot/easystruts/easyexplore-plugin/README.TXT,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** README.TXT 26 Feb 2003 21:38:46 -0000 1.1
--- README.TXT 12 Dec 2005 04:02:21 -0000 1.2
***************
*** 1,16 ****
! Easy Explorer 1.0.0 plugin for Eclipse
--------------------------------------------------------------
! This little plugin permit you to browse resources with 'Windows Explorer' from
! Eclipse package/resources tree.
! Select resource and launch [Easy Explore...] menu item on resources/package explorer popup menu.
!
! You can setup your browser program in Eclipse preferences.
!
! This plugin tested on win32 platform.
!
! http://www.eclipse-plugins.2y.net/eclipse/plugin_details.jsp?id=151
! -emmanuel
--- 1,12 ----
! Easy Explorer 1.1.0 plugin for Eclipse
--------------------------------------------------------------
! This little plugin helps you to browse resources with the 'Explorer' of your platform from
! Eclipse package explorer or resource navigators.
! Just select a resource and launch the [Easy Explore...] menu item from this resources context pop-up menu.
! You can setup your preferred browser or finder program in Eclipse preferences.
! This plugin has been tested on win32, linux and MacOSX panther and Tiger platforms.
! -the EasyStruts team
|