[Pydev-cvs] org.python.pydev/src/org/python/pydev/editor/actions PyAddBlockComment.java,1.2,1.3 PyAc
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-04-10 02:01:40
|
Update of /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv649/src/org/python/pydev/editor/actions Modified Files: PyAddBlockComment.java PyAction.java Log Message: Huge code rewrite. I've implemented a Python model. Model is based in AST tree, but should be simpler to use. No more visitor pattern. OutlineView and Navigation actions have been reworked to use new model, instead of traversing AST. Added Hyperlinking capability, but goto is not implemetned yet. Index: PyAction.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/PyAction.java,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** PyAction.java 5 Mar 2004 22:04:44 -0000 1.3 --- PyAction.java 10 Apr 2004 01:48:14 -0000 1.4 *************** *** 81,86 **** /** ! * This function returns the python editor. ! * @return */ protected PyEdit getPyEdit() { --- 81,85 ---- /** ! * @return python editor. */ protected PyEdit getPyEdit() { Index: PyAddBlockComment.java =================================================================== RCS file: /cvsroot/pydev/org.python.pydev/src/org/python/pydev/editor/actions/PyAddBlockComment.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** PyAddBlockComment.java 5 Mar 2004 22:04:44 -0000 1.2 --- PyAddBlockComment.java 10 Apr 2004 01:48:14 -0000 1.3 *************** *** 21,24 **** --- 21,25 ---- /** + * Hi. * Insert a comment block. * #===... |