Thread: [Pydev-cvs] org.python.pydev.help/pydev.sf.net index.html,1.1,1.2
Brought to you by:
fabioz
From: Aleksandar T. <at...@us...> - 2004-07-25 13:52:53
|
Update of /cvsroot/pydev/org.python.pydev.help/pydev.sf.net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18277/pydev.sf.net Modified Files: index.html Log Message: Docs to 0.5.3 Index: index.html =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.help/pydev.sf.net/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** index.html 11 May 2004 11:02:05 -0000 1.1 --- index.html 25 Jul 2004 13:52:42 -0000 1.2 *************** *** 13,17 **** <legend>About</legend> <p>Pydev is a project to create a complete python development environment for eclipse: syntax highlighting, ! outline view, code navigation, debugger integration. The current release is 0.4. Both editor and debugger require Java 1.4.x. Editor runs on Eclipse 2.1.x, and 3.x, while debugger is not compatible with Eclipse 3 yet. Pydev consists of 3 plugins:</p> <p><b><a href="snap.gif">Editor</a></b> (org.python.pydev): </p> <li>syntax highlighting --- 13,17 ---- <legend>About</legend> <p>Pydev is a project to create a complete python development environment for eclipse: syntax highlighting, ! outline view, code navigation, debugger integration. The current release is 0.5.3. Both editor and debugger require Java 1.4.x. and Eclipse 3.0. If you are running Eclipse 2.1.x, use 0.4.2. Pydev consists of 3 plugins:</p> <p><b><a href="snap.gif">Editor</a></b> (org.python.pydev): </p> <li>syntax highlighting *************** *** 22,25 **** --- 22,26 ---- <li>comment/uncomment commands (on the popup menu) </li> <li> hyperlinks over functions//import statements</li> + <li>code folding </li> <p><b><a href="images/debugger.gif">Debugger</a></b> (org.python.pydev.debug)</p> <li>breakpoints</li> *************** *** 33,39 **** You can download the releases from there, or from an Eclipse update site <a href="http://pydev.sf.net/updates/">http://pydev.sf.net/updates/</a>. Developer issues are discussed at <a href="http://sourceforge.net/mailarchive/forum.php?forum_id=39082">pydev-code</a> mailing list. For support, try the <a href="http://sourceforge.net/forum/forum.php?forum_id=293649">users</a> bulletin board. I sometimes post tidbits about the development progress in the <a href="http://blogs.osafoundation.org/atotic/cat_work_log.html">weblog</a>. ! <p>Most of the pydev has been developed by Aleks Totic as a "getting to know Eclipse" project, with some wonderful help from Fabio Zadrozny. </fieldset> <p> <fieldset> <legend>Development notes</legend> --- 34,58 ---- You can download the releases from there, or from an Eclipse update site <a href="http://pydev.sf.net/updates/">http://pydev.sf.net/updates/</a>. Developer issues are discussed at <a href="http://sourceforge.net/mailarchive/forum.php?forum_id=39082">pydev-code</a> mailing list. For support, try the <a href="http://sourceforge.net/forum/forum.php?forum_id=293649">users</a> bulletin board. I sometimes post tidbits about the development progress in the <a href="http://blogs.osafoundation.org/atotic/cat_work_log.html">weblog</a>. ! <p>Most of the pydev has been developed by Aleks Totic as a "getting to know Eclipse" project, with some wonderful help from Fabio "Foldin" Zadrozny. </fieldset> + <fieldset> + <legend><a name="debug"></a>Debugging the debugger</legend> <p> + The current release of the debugger is of alpha quality. + <li>I wrote the + whole thing from scratch. + <li>I am not very familiar with python internals. + <li>I have not used it daily + <p>These three reasons add up to something which is an alpha. For some users, it works + great, the others do not get beyond the launch. If you'd like to help me on the road to beta, please + file detailed bug reports. With your bug reports, attach the trace of the debugger. + To get the trace, you need to edit debugger source:</p> + <p>Inside eclipse/plugins/org.python.pydev.debug/pysrc/pydevd.py, change + <pre>pydevd_trace = 0</pre> + to + <pre>pydevd_trace = 2</pre> + Now, when you launch the debugger, you'll get a lot of tracing output. Attach this + to your bug reports. + </fieldset> <fieldset> <legend>Development notes</legend> *************** *** 64,71 **** <b>Future</b> My plans for the future are: ! - 0.5 will be a bug-fix release, I am sure there are a few, there has been a lot of new ! code between 0.3 & 0.4. ! - 1.0 will be an Eclipse 3.0 compatibility release. There are some new debugger features ! like an environment tab that are cheap to implement, and very useful. And that's it. Over & out, off to new projects. --- 83,88 ---- <b>Future</b> My plans for the future are: ! - Wrap up the production of 1.0. We are feature complete, and as soon as I ! like the quality, I'll release the code under 1.0 banner. And that's it. Over & out, off to new projects. *************** *** 118,123 **** As for me, I have several possible projects coming up. I might do something with Mozilla guys. I am also thinking of developing a family tree web site that my family ! could use. Of course, there is no web site software out there I am happy with, so ! it'd involve writing a whole new web ui development system. Or I might do some work with startups, or something completely different. Life is never boring. Well, coding gets boring every once in a while, but I am just such an amateur when it comes --- 135,140 ---- As for me, I have several possible projects coming up. I might do something with Mozilla guys. I am also thinking of developing a family tree web site that my family ! could use. Of course, there is no CMS system out there I am happy with, so ! it'd involve writing a whole new one. Or I might do some work with startups, or something completely different. Life is never boring. Well, coding gets boring every once in a while, but I am just such an amateur when it comes |