Update of /cvsroot/pydev/org.python.pydev.refactoring/src/org/python/pydev/refactoring/core/request
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21605/src/org/python/pydev/refactoring/core/request
Modified Files:
IRefactoringRequest.java IRequestProcessor.java
Log Message:
Synching to latest changes:
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>
Also: tabs changed for spaces
Index: IRequestProcessor.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.refactoring/src/org/python/pydev/refactoring/core/request/IRequestProcessor.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** IRequestProcessor.java 20 Oct 2007 19:31:02 -0000 1.2
--- IRequestProcessor.java 27 Sep 2008 20:00:48 -0000 1.3
***************
*** 11,14 ****
public interface IRequestProcessor<T> {
! public List<T> getRefactoringRequests();
}
--- 11,14 ----
public interface IRequestProcessor<T> {
! public List<T> getRefactoringRequests();
}
Index: IRefactoringRequest.java
===================================================================
RCS file: /cvsroot/pydev/org.python.pydev.refactoring/src/org/python/pydev/refactoring/core/request/IRefactoringRequest.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** IRefactoringRequest.java 20 Oct 2007 19:31:02 -0000 1.3
--- IRefactoringRequest.java 27 Sep 2008 20:00:48 -0000 1.4
***************
*** 14,18 ****
public interface IRefactoringRequest {
! public abstract IASTNodeAdapter<? extends SimpleNode> getOffsetNode();
public abstract String getNewLineDelim();
--- 14,18 ----
public interface IRefactoringRequest {
! public abstract IASTNodeAdapter<? extends SimpleNode> getOffsetNode();
public abstract String getNewLineDelim();
|