Update of /cvsroot/pydev/org.python.pydev
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv10036
Modified Files:
Changes.txt plugin.xml
Log Message:
Synching with aptana svn repo for release 1.3.22 (see http://pydev.sourceforge.net/developers.html)
Index: Changes.txt
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/Changes.txt,v
retrieving revision 1.417
retrieving revision 1.418
diff -C2 -d -r1.417 -r1.418
*** Changes.txt 28 Sep 2008 12:45:46 -0000 1.417
--- Changes.txt 3 Oct 2008 00:43:54 -0000 1.418
***************
*** 3,8 ****
Pydev Extensions
<ul>
! <li><strong>Code-analysis</strong>: only done when the file has really changed</li>
! <li><strong>Code-analysis</strong>: only on active editor</li>
</ul>
--- 3,8 ----
Pydev Extensions
<ul>
! <li><strong>Code-analysis</strong>: Option to analyze only active editor</li>
! <li><strong>Code-analysis</strong>: works on case where imported module has same name of builtin.</li>
</ul>
***************
*** 10,20 ****
Pydev
<ul>
! <li><strong>Editor</strong>: Cursor settings no longer overridden</li>
<li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li>
! <li><strong>Debugger</strong>: Pythonpath the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li>
! <li><strong>Debugger</strong>: Persist choices done in the debugger when files from the debugger are not found</li>
<li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li>
<li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li>
! <li><strong>Syntax check</strong>: Option to do only on active editor</li>
</ul>
--- 10,23 ----
Pydev
<ul>
! <li><strong>Debugger</strong>: Pythonpath is the same in debug and regular modes (sys.path[0] is the same directory as the file run)</li>
! <li><strong>Debugger</strong>: Choices for paths not found are persisted</li>
<li><strong>Code-completion</strong>: If __all__ is defined with runtime elements (and not only in a single assign statement), it's ignored for code-completion purposes</li>
! <li><strong>Code-completion</strong>: Works on case where imported module has same name of builtin</li>
! <li><strong>Editor</strong>: Cursor settings no longer overridden</li>
<li><strong>Interpreter config</strong>: "email" automatically added to the "forced builtins"</li>
<li><strong>Parser</strong>: Correctly recognizing absolute import with 3 or more levels</li>
! <li><strong>Syntax check</strong>: Option analyze only active editor</li>
! <li><strong>getpass.getpass</strong>: No longer halts when run from pydev (but will show the password being written)</li>
! <li><strong>Remove error markers</strong>: Context menu in folders to remove error markers created</li>
</ul>
Index: plugin.xml
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev/plugin.xml,v
retrieving revision 1.210
retrieving revision 1.211
diff -C2 -d -r1.210 -r1.211
*** plugin.xml 28 Sep 2008 12:45:46 -0000 1.210
--- plugin.xml 3 Oct 2008 00:43:54 -0000 1.211
***************
*** 115,118 ****
--- 115,134 ----
</objectContribution>
+ <!-- remove errors -->
+ <objectContribution
+ adaptable="true"
+ id="org.python.pydev.ui.actions.container.pyDeleteErrors"
+ objectClass="org.eclipse.core.resources.IContainer">
+ <menu id="org.python.pydev.ui.actions.menu" label="Pydev"/>
+ <action
+ class="org.python.pydev.ui.actions.container.PyDeleteErrors"
+ enablesFor="+"
+ id="org.python.pydev.ui.actions.container.pyDeleteErrors"
+ label="Remove error markers"
+ menubarPath="org.python.pydev.ui.actions.menu/pydev"
+ tooltip="Remove error markers">
+ </action>
+ </objectContribution>
+
<!-- remove nature -->
***************
*** 173,176 ****
--- 189,198 ----
</page>
<page
+ name="Logging"
+ category="org.python.pydev.prefs"
+ class="org.python.pydev.logging.PyLoggingPreferencesPage"
+ id="org.python.pydev.logging.pyLoggingPreferencesPage">
+ </page>
+ <page
name="Typing"
category="org.python.pydev.prefs"
|