[Pydev-cvs] org.python.pydev.debug Changes.txt,NONE,1.1 .project,1.2,1.3 plugin.xml,1.5,1.6
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-04-15 23:24:59
|
Update of /cvsroot/pydev/org.python.pydev.debug In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17142 Modified Files: .project plugin.xml Added Files: Changes.txt Log Message: Removed the duplicate Tab definitions Index: .project =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/.project,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** .project 10 Jan 2004 03:13:04 -0000 1.2 --- .project 15 Apr 2004 23:24:50 -0000 1.3 *************** *** 4,7 **** --- 4,11 ---- <comment></comment> <projects> + <project>org.apache.xerces</project> + <project>org.eclipse.core.boot</project> + <project>org.eclipse.core.resources</project> + <project>org.eclipse.core.runtime</project> <project>org.python.pydev</project> </projects> --- NEW FILE: Changes.txt --- ChangeLog org.python.pydev.debug Extension points: org.eclipse.debug.ui.debugModelPresentations allows tools to handle presentation aspects of a debug model org.eclipse.cdt.debug.internal.ui.CDTDebugModelPresentation is a big class implementing this org.eclipse.cdt.launch.internal.LocalCLaunchConfigurationDelegate launches a debugged C program Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/plugin.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** plugin.xml 30 Mar 2004 20:02:58 -0000 1.5 --- plugin.xml 15 Apr 2004 23:24:50 -0000 1.6 *************** *** 32,39 **** name="Python" delegate="org.python.pydev.debug.ui.launching.PythonLaunchConfigurationDelegate" ! category="org.python.pydev.debug" ! modes="run, debug" id="org.python.pydev.debug.launchConfigurationType"> </launchConfigurationType> </extension> <!--- the launcher icon --> --- 32,39 ---- name="Python" delegate="org.python.pydev.debug.ui.launching.PythonLaunchConfigurationDelegate" ! modes="run, debug" id="org.python.pydev.debug.launchConfigurationType"> </launchConfigurationType> + <!--- set category="org.python.pydev.debug" to disable display in debug window--> </extension> <!--- the launcher icon --> *************** *** 103,116 **** </objectContribution> </extension> - <!-- preference page --> - <extension - point="org.eclipse.ui.preferencePages"> - <page - name="Debug" - category="org.python.pydev.prefs" - class="org.python.pydev.debug.ui.DebugPrefsPage" - id="org.python.pydev.prefs.debugPage"> - </page> - </extension> <!--- launch groups for python --> <extension --- 103,106 ---- *************** *** 166,217 **** </attribute> </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> --- 156,158 ---- |