[Pydev-cvs] org.python.pydev plugin.xml,1.10,1.11 Changes.txt,1.2,1.3
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-04-15 23:19:29
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16009 Modified Files: plugin.xml Changes.txt Log Message: More model code. Hyperlinks on function calls and imports now work. had to pull interpreter editor from PydevDebug plugin into this one since we needed interpreter locaiton for include paths. Model got extensive changes. Scopes are now used in the code. General code cleanup everywehre. Added findFunctionDefinition functionality with hyperlinks Added the ability to open external files (for external hyperlinks) Index: Changes.txt =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/Changes.txt,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Changes.txt 10 Apr 2004 02:06:27 -0000 1.2 --- Changes.txt 15 Apr 2004 23:19:21 -0000 1.3 *************** *** 14,18 **** - Parsing now happens either immediately on return, or a second after the last typing. This makes error notifications nicer and more predictable ! Bug fixes: - Moved parsing so that all pydev parsers use single thread --- 14,21 ---- - Parsing now happens either immediately on return, or a second after the last typing. This makes error notifications nicer and more predictable ! - New double-clicking strategy, copied from Java ! - Moved debug preferences into main plugin. We need them for import paths parsing ! - Hyperlinks on simple imports now work. For them to find system includes, you'll need to ! set up the python interpreter in the preferences Bug fixes: - Moved parsing so that all pydev parsers use single thread Index: plugin.xml =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** plugin.xml 10 Apr 2004 02:06:27 -0000 1.10 --- plugin.xml 15 Apr 2004 23:19:21 -0000 1.11 *************** *** 75,80 **** id="org.python.pydev.prefs"> </page> </extension> ! <!-- Editor menus --> <extension point="org.eclipse.ui.editorActions"> --- 75,86 ---- id="org.python.pydev.prefs"> </page> + <page + name="Debug" + category="org.python.pydev.prefs" + class="org.python.pydev.plugin.DebugPrefsPage" + id="org.python.pydev.prefs.debugPage"> + </page> </extension> ! <!-- Editor menus --> <extension point="org.eclipse.ui.editorActions"> |