[Pydev-cvs] org.python.pydev Changes.txt, 1.413, 1.414 plugin.xml, 1.208, 1.209
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-08-13 21:12:07
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8061 Modified Files: Changes.txt plugin.xml Log Message: Synching from mercurial: - Pydev debugger watch working in eclipse 3.4 - Pydev debugger breakpoint properties accept new lines and tabs - Incremental find backspace works correctly - Interactive console Fixed problem when more attempts to connect were needed - Launch icons: Transparent background (thanks to Radim Kubacki) - Creating workbench test for debugger Index: Changes.txt =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/Changes.txt,v retrieving revision 1.413 retrieving revision 1.414 diff -C2 -d -r1.413 -r1.414 *** Changes.txt 6 Aug 2008 16:23:19 -0000 1.413 --- Changes.txt 13 Aug 2008 21:12:15 -0000 1.414 *************** *** 5,8 **** --- 5,13 ---- <li><strong>Pydev Package Explorer</strong>: Editor-link does not remove focus from current editor if it's already a match (bug when compare editor was opened)</li> <li><strong>Pydev debugger</strong>: showing set and frozenset contents</li> + <li><strong>Pydev debugger</strong>: watch working in eclipse 3.4</li> + <li><strong>Pydev debugger</strong>: breakpoint properties accept new lines and tabs</li> + <li><strong>Incremental find</strong>: backspace works correctly</li> + <li><strong>Interactive console</strong>: Fixed problem when more attempts to connect were needed</li> + <li><strong>Launch icons</strong>: Transparent background (thanks to Radim Kubacki)</li> </ul> Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.208 retrieving revision 1.209 diff -C2 -d -r1.208 -r1.209 *** plugin.xml 30 Jun 2008 00:29:06 -0000 1.208 --- plugin.xml 13 Aug 2008 21:12:15 -0000 1.209 *************** *** 296,299 **** --- 296,300 ---- id="org.python.pydev.editor.actions.firstChar"> </action> + <!-- Backspace now handled in VerifyKey (incremental find integration) <action definitionId="org.python.pydev.editor.actions.pybackspace" *************** *** 303,306 **** --- 304,308 ---- id="org.python.pydev.editor.actions.pybackspace"> </action> + --> <action definitionId="org.python.pydev.editor.actions.convertSpaceToTab" *************** *** 556,559 **** --- 558,562 ---- </command> <!-- command: backspace considering indentation--> + <!-- Backspace now handled in VerifyKey (incremental find integration) <command description="Backspace considering indentation for Python." *************** *** 562,566 **** name="Python Backspace (with indentation)"> </command> ! <!-- command: next method / class--> <command --- 565,569 ---- name="Python Backspace (with indentation)"> </command> ! --> <!-- command: next method / class--> <command *************** *** 746,749 **** --- 749,753 ---- </key> <!--TODO: guessing at name "BACKSPACE, needs verification --> + <!-- Backspace now handled in VerifyKey (incremental find integration) <key sequence="BACKSPACE" *************** *** 752,755 **** --- 756,760 ---- schemeId="org.eclipse.ui.defaultAcceleratorConfiguration"> </key> + --> <key sequence="Ctrl+Shift+Arrow_Up" *************** *** 1003,1006 **** --- 1008,1012 ---- <extension-point id="pydev_debug_preferences_page" name="Pydev Debug Preferences Page" schema="schema/pydev_debug_preferences_page.exsd"/> <extension-point id="pydev_pythonpath_contrib" name="Python Path Contributor" schema="schema/pydev_pythonpath_contrib.exsd"/> + <extension-point id="pydev_manager_observer" name="Pydev code completion manager observer" schema="schema/pydev_manager_observer.exsd"/> <!-- wizards --> <extension point="org.eclipse.ui.newWizards"> |