[Pydev-cvs] org.python.pydev.debug plugin.xml,1.4,1.5
Brought to you by:
fabioz
From: William W. <wrw...@us...> - 2004-03-30 20:14:39
|
Update of /cvsroot/pydev/org.python.pydev.debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14862 Modified Files: plugin.xml Log Message: Add extensions to run from the Run menu. Need to unify this with the context menu Run action. Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/plugin.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** plugin.xml 29 Mar 2004 17:02:26 -0000 1.4 --- plugin.xml 30 Mar 2004 20:02:58 -0000 1.5 *************** *** 167,169 **** --- 167,217 ---- </extension> + <!-- Begin Run->Run... extensions --> + <extension + point="org.eclipse.debug.core.launchConfigurationTypes"> + <launchConfigurationType + name="Python" + delegate="org.eclipse.ui.externaltools.internal.program.launchConfigurations.ProgramLaunchDelegate" + modes="run" + id="org.python.pydev.debug.ui.launching.launchConfigurationType1"> + <fileExtension + extension="py"> + </fileExtension> + <fileExtension + extension="pyc"> + </fileExtension> + </launchConfigurationType> + </extension> + <extension + point="org.eclipse.debug.ui.launchConfigurationTabGroups"> + <launchConfigurationTabGroup + type="org.python.pydev.debug.ui.launching.launchConfigurationType1" + helpContextId="foo" + class="org.python.pydev.debug.ui.launching.PythonDebugTabGroup" + id="org.python.pydev.debug.ui.launching.PythonDebugTabGroup"> + </launchConfigurationTabGroup> + </extension> + <extension + id="org.python.debug.ui.image" + point="org.eclipse.debug.ui.launchConfigurationTypeImages"> + <launchConfigurationTypeImage + icon="icons/python.gif" + configTypeID="org.python.pydev.debug.ui.launching.launchConfigurationType1" + id="org.python.pydev.debug.ui.launching.launchConfigurationTypeImage1"> + </launchConfigurationTypeImage> + </extension> + <extension + id="org.python.debug.ui.lineTracker" + point="org.eclipse.debug.ui.consoleLineTrackers"> + <consoleLineTracker + class="org.python.pydev.debug.ui.PythonConsoleLineTracker" + processType="python" + id="org.python.pydev.debug.ui.PythonConsoleLineTracker"> + </consoleLineTracker> + </extension> + <!-- End Run->Run... extensions --> + + + + </plugin> |