[Pydev-cvs] org.python.pydev Changes.txt,1.3,1.4 plugin.xml,1.12,1.13
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-04-27 01:07:53
|
Update of /cvsroot/pydev/org.python.pydev In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv428 Modified Files: Changes.txt plugin.xml Log Message: plugin.xml now exports all the libraries, so that our debug plugin can import them Index: Changes.txt =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/Changes.txt,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Changes.txt 15 Apr 2004 23:19:21 -0000 1.3 --- Changes.txt 27 Apr 2004 01:07:44 -0000 1.4 *************** *** 11,21 **** - Added Python properties to projects that have Python nature - Editor now has a python icon. Icon is ugly, help! ! - .pyc files are filtered in the resource view ! - 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 --- 11,29 ---- - Added Python properties to projects that have Python nature - Editor now has a python icon. Icon is ugly, help! ! - .pyc files are filtered out in the resource view ! - Parsing now happens either immediately on return, or a second after input 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. ! active hyperlinks are: ! [imports] import sys: you can click on sys, and sys.py will open ! [local function calls]: functions defined in the same file ! [class constructors]: a = SomeClass() takes you to class definition ! [self.method calls]: self.method_name works if method is defined in the same file ! - When you are editing in the tab mode, paste will replace spaces with tabs ! - tabs/spaces conversion only takes place inside code, not inside comments ! 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.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** plugin.xml 22 Apr 2004 10:34:32 -0000 1.12 --- plugin.xml 27 Apr 2004 01:07:44 -0000 1.13 *************** *** 8,12 **** <runtime> ! <library name="pydev.jar"/> </runtime> <requires> --- 8,14 ---- <runtime> ! <library name="pydev.jar"> ! <export name="*"/> ! </library> </runtime> <requires> |