Update of /cvsroot/pydev/org.python.pydev.debug
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31697
Modified Files:
plugin.xml
Log Message:
Renamed DebugPlugin PydevDebugPlugin to prevent conflicts.
Index: plugin.xml
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.debug/plugin.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** plugin.xml 5 Mar 2004 16:20:36 -0000 1.3
--- plugin.xml 29 Mar 2004 17:02:26 -0000 1.4
***************
*** 5,9 ****
version="0.3.0"
provider-name="Aleks Totic"
! class="org.python.pydev.debug.core.DebugPlugin">
<runtime>
--- 5,9 ----
version="0.3.0"
provider-name="Aleks Totic"
! class="org.python.pydev.debug.core.PydevDebugPlugin">
<runtime>
***************
*** 22,25 ****
--- 22,26 ----
<import plugin="org.eclipse.debug.ui"/>
<import plugin="org.python.pydev"/>
+ <import plugin="org.apache.xerces"/>
</requires>
***************
*** 61,66 ****
icon="icons/python.gif"
modes="run, debug"
! class="org.python.pydev.debug.ui.launching.LaunchShortcut"
id="org.python.pydev.debug.launchShortcut">
</shortcut>
</extension>
--- 62,68 ----
icon="icons/python.gif"
modes="run, debug"
! class="org.python.pydev.debug.launching.LaunchShortcut"
id="org.python.pydev.debug.launchShortcut">
+ <perspective id="org.eclipse.debug.ui.DebugPerspective"/>
</shortcut>
</extension>
***************
*** 122,129 ****
id="org.python.pydev.debug.debug">
</launchGroup>
! </extension>
! <extension
! point="org.eclipse.debug.ui.launchGroups">
! <launchGroup
label="Run"
bannerImage="icons/python-big.gif"
--- 124,128 ----
id="org.python.pydev.debug.debug">
</launchGroup>
! <launchGroup
label="Run"
bannerImage="icons/python-big.gif"
***************
*** 143,146 ****
--- 142,169 ----
</consoleLineTracker>
</extension>
+ <!--- breakpoint marker -->
+ <!--- TODO just a placeholder for now -->
+ <extension
+ id="pyBreakpointMarker"
+ point="org.eclipse.core.resources.markers">
+ <super
+ type="org.eclipse.debug.core.breakpointMarker">
+ </super>
+ <persistent
+ value="true">
+ </persistent>
+ <attribute
+ name="org.eclipse.cdt.debug.core.condition">
+ </attribute>
+ <attribute
+ name="org.eclipse.cdt.debug.core.ignoreCount">
+ </attribute>
+ <attribute
+ name="org.eclipse.cdt.debug.core.threadId">
+ </attribute>
+ <attribute
+ name="org.eclipse.cdt.debug.core.installCount">
+ </attribute>
+ </extension>
</plugin>
|