Update of /cvsroot/pydev/org.python.pydev.debug
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12121
Modified Files:
plugin.xml
Log Message:
Making code coverage.
Index: plugin.xml
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.debug/plugin.xml,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -d -r1.17 -r1.18
*** plugin.xml 24 Sep 2004 00:39:21 -0000 1.17
--- plugin.xml 8 Oct 2004 16:42:36 -0000 1.18
***************
*** 35,39 ****
name="Python"
delegate="org.python.pydev.debug.ui.launching.PythonLaunchConfigurationDelegate"
! modes="run, debug"
id="org.python.pydev.debug.launchConfigurationType">
</launchConfigurationType>
--- 35,39 ----
name="Python"
delegate="org.python.pydev.debug.ui.launching.PythonLaunchConfigurationDelegate"
! modes="run, debug, profile"
id="org.python.pydev.debug.launchConfigurationType">
</launchConfigurationType>
***************
*** 63,67 ****
label="Python script"
icon="icons/python.gif"
! modes="run, debug"
class="org.python.pydev.debug.ui.launching.LaunchShortcut"
id="org.python.pydev.debug.ui.launchShortcut">
--- 63,67 ----
label="Python script"
icon="icons/python.gif"
! modes="run, debug, profile"
class="org.python.pydev.debug.ui.launching.LaunchShortcut"
id="org.python.pydev.debug.ui.launchShortcut">
***************
*** 101,104 ****
--- 101,113 ----
id="org.python.pydev.debug.RunPythonAction">
</action>
+ <action
+ label="Coverage..."
+ icon="icons/python.gif"
+ tooltip="Make code coverage for a python script"
+ class="org.python.pydev.debug.ui.actions.PythonRunActionDelegate"
+ menubarPath="org.python.pydev.debug.WorkspaceMenu/group1"
+ enablesFor="1"
+ id="org.python.pydev.debug.CoveragePythonAction">
+ </action>
<action
enablesFor="1"
***************
*** 130,133 ****
--- 139,150 ----
id="org.python.pydev.debug.run">
</launchGroup>
+ <launchGroup
+ label="Profile"
+ bannerImage="icons/python-big.gif"
+ category="org.python.pydev.debug"
+ image="icons/python.gif"
+ mode="profile"
+ id="org.python.pydev.debug.coverage">
+ </launchGroup>
</extension>
<!--- console line tracking -->
***************
*** 215,218 ****
--- 232,248 ----
</extension>
+ <extension
+ point="org.eclipse.ui.views">
+ <category
+ name="Pydev"
+ id="org.python.pydev.debug"/>
+ <view
+ class="org.python.pydev.debug.codecoverage.PyCodeCoverageView"
+ icon="icons/python.gif"
+ category="org.python.pydev"
+ name="Code Coverage Results View"
+ id="org.python.pydev.views.PyCodeCoverageView"/>
+ </extension>
+
</plugin>
|