Update of /cvsroot/pydev/org.python.pydev.debug
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13540
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.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** plugin.xml 8 Oct 2004 16:42:36 -0000 1.18
--- plugin.xml 15 Oct 2004 19:53:28 -0000 1.19
***************
*** 110,114 ****
id="org.python.pydev.debug.CoveragePythonAction">
</action>
! <action
enablesFor="1"
label="pyUnit Test..."
--- 110,115 ----
id="org.python.pydev.debug.CoveragePythonAction">
</action>
! <!-- Disabled until it works better...
! <action
enablesFor="1"
label="pyUnit Test..."
***************
*** 118,121 ****
--- 119,145 ----
menubarPath="org.python.pydev.debug.WorkspaceMenu/group1"
id="org.python.pydev.debug.TestPythonAction"/>
+ -->
+ </objectContribution>
+
+ <objectContribution
+ adaptable="true"
+ objectClass="org.eclipse.core.resources.IFolder"
+ nameFilter="*"
+ id="org.python.pydev.debug.RunPythonFolder">
+ <menu
+ label="Python (many)"
+ path="additions2"
+ id="org.python.pydev.debug.WorkspaceMenu">
+ <separator name="group2"/>
+ </menu>
+ <action
+ label="Coverage many..."
+ icon="icons/python.gif"
+ tooltip="Make code coverage for many python files at once."
+ class="org.python.pydev.debug.ui.actions.PythonRunSubsetActionDelegate"
+ menubarPath="org.python.pydev.debug.WorkspaceMenu/group2"
+ enablesFor="1"
+ id="org.python.pydev.debug.PythonRunSubsetActionDelegate">
+ </action>
</objectContribution>
</extension>
***************
*** 211,214 ****
--- 235,239 ----
<persistent value="true"/>
<attribute name="org.eclipse.cdt.debug.core.condition"/>
+ <super type="org.python.pydev.debug.notexecuted"/>
</extension>
<extension
***************
*** 224,227 ****
--- 249,256 ----
markertype="org.python.pydev.debug.pyStopBreakpointMarker"
icon="icons/breakmarker.gif"/>
+ <imageprovider
+ markertype="org.python.pydev.debug.notexecuted"
+ icon="icons/reddot.gif"
+ id="pyCodeCoverageImageProvider"/>
</extension>
<extension point = "org.eclipse.debug.ui.debugModelPresentations">
|