jpayne@69: Please refer to the IDLEfork and IDLE CVS repositories for jpayne@69: change details subsequent to the 0.8.1 release. jpayne@69: jpayne@69: jpayne@69: IDLEfork ChangeLog jpayne@69: ================== jpayne@69: jpayne@69: 2001-07-20 11:35 elguavas jpayne@69: jpayne@69: * README.txt, NEWS.txt: bring up to date for 0.8.1 release jpayne@69: jpayne@69: 2001-07-19 16:40 elguavas jpayne@69: jpayne@69: * IDLEFORK.html: replaced by IDLEFORK-index.html jpayne@69: jpayne@69: 2001-07-19 16:39 elguavas jpayne@69: jpayne@69: * IDLEFORK-index.html: updated placeholder idlefork homepage jpayne@69: jpayne@69: 2001-07-19 14:49 elguavas jpayne@69: jpayne@69: * ChangeLog, EditorWindow.py, INSTALLATION, NEWS.txt, README.txt, jpayne@69: TODO.txt, idlever.py: jpayne@69: minor tidy-ups ready for 0.8.1 alpha tarball release jpayne@69: jpayne@69: 2001-07-17 15:12 kbk jpayne@69: jpayne@69: * INSTALLATION, setup.py: INSTALLATION: Remove the coexist.patch jpayne@69: instructions jpayne@69: jpayne@69: **************** setup.py: jpayne@69: jpayne@69: Remove the idles script, add some words on IDLE Fork to the jpayne@69: long_description, and clean up some line spacing. jpayne@69: jpayne@69: 2001-07-17 15:01 kbk jpayne@69: jpayne@69: * coexist.patch: Put this in the attic, at least for now... jpayne@69: jpayne@69: 2001-07-17 14:59 kbk jpayne@69: jpayne@69: * PyShell.py, idle, idles: Implement idle command interface as jpayne@69: suggested by GvR [idle-dev] 16 July **************** PyShell: Added jpayne@69: functionality: jpayne@69: jpayne@69: usage: idle.py [-c command] [-d] [-i] [-r script] [-s] [-t title] jpayne@69: [arg] ... jpayne@69: jpayne@69: idle file(s) (without options) edit the file(s) jpayne@69: jpayne@69: -c cmd run the command in a shell -d enable the jpayne@69: debugger -i open an interactive shell -i file(s) open a jpayne@69: shell and also an editor window for each file -r script run a file jpayne@69: as a script in a shell -s run $IDLESTARTUP or jpayne@69: $PYTHONSTARTUP before anything else -t title set title of shell jpayne@69: window jpayne@69: jpayne@69: Remaining arguments are applied to the command (-c) or script (-r). jpayne@69: jpayne@69: ****************** idles: Removed the idles script, not needed jpayne@69: jpayne@69: ****************** idle: Removed the IdleConf references, not jpayne@69: required anymore jpayne@69: jpayne@69: 2001-07-16 17:08 kbk jpayne@69: jpayne@69: * INSTALLATION, coexist.patch: Added installation instructions. jpayne@69: jpayne@69: Added a patch which modifies idlefork so that it can co-exist with jpayne@69: "official" IDLE in the site-packages directory. This patch is not jpayne@69: necessary if only idlefork IDLE is installed. See INSTALLATION for jpayne@69: further details. jpayne@69: jpayne@69: 2001-07-16 15:50 kbk jpayne@69: jpayne@69: * idles: Add a script "idles" which opens a Python Shell window. jpayne@69: jpayne@69: The default behaviour of idlefork idle is to open an editor window jpayne@69: instead of a shell. Complex expressions may be run in a fresh jpayne@69: environment by selecting "run". There are times, however, when a jpayne@69: shell is desired. Though one can be started by "idle -t 'foo'", jpayne@69: this script is more convenient. In addition, a shell and an editor jpayne@69: window can be started in parallel by "idles -e foo.py". jpayne@69: jpayne@69: 2001-07-16 15:25 kbk jpayne@69: jpayne@69: * PyShell.py: Call out IDLE Fork in startup message. jpayne@69: jpayne@69: 2001-07-16 14:00 kbk jpayne@69: jpayne@69: * PyShell.py, setup.py: Add a script "idles" which opens a Python jpayne@69: Shell window. jpayne@69: jpayne@69: The default behaviour of idlefork idle is to open an editor window jpayne@69: instead of a shell. Complex expressions may be run in a fresh jpayne@69: environment by selecting "run". There are times, however, when a jpayne@69: shell is desired. Though one can be started by "idle -t 'foo'", jpayne@69: this script is more convenient. In addition, a shell and an editor jpayne@69: window can be started in parallel by "idles -e foo.py". jpayne@69: jpayne@69: 2001-07-15 03:06 kbk jpayne@69: jpayne@69: * pyclbr.py, tabnanny.py: tabnanny and pyclbr are now found in /Lib jpayne@69: jpayne@69: 2001-07-15 02:29 kbk jpayne@69: jpayne@69: * BrowserControl.py: Remove, was retained for 1.5.2 support jpayne@69: jpayne@69: 2001-07-14 15:48 kbk jpayne@69: jpayne@69: * setup.py: Installing Idle to site-packages via Distutils does not jpayne@69: copy the Idle help.txt file. jpayne@69: jpayne@69: Ref SF Python Patch 422471 jpayne@69: jpayne@69: 2001-07-14 15:26 kbk jpayne@69: jpayne@69: * keydefs.py: py-cvs-2001_07_13 (Rev 1.3) merge jpayne@69: jpayne@69: "Make copy, cut and paste events case insensitive. Reported by jpayne@69: Patrick K. O'Brien on idle-dev. (Should other bindings follow jpayne@69: suit?)" --GvR jpayne@69: jpayne@69: 2001-07-14 15:21 kbk jpayne@69: jpayne@69: * idle.py: py-cvs-2001_07_13 (Rev 1.4) merge jpayne@69: jpayne@69: "Move the action of loading the configuration to the IdleConf jpayne@69: module rather than the idle.py script. This has advantages and jpayne@69: disadvantages; the biggest advantage being that we can more easily jpayne@69: have an alternative main program." --GvR jpayne@69: jpayne@69: 2001-07-14 15:18 kbk jpayne@69: jpayne@69: * extend.txt: py-cvs-2001_07_13 (Rev 1.4) merge jpayne@69: jpayne@69: "Quick update to the extension mechanism (extend.py is gone, long jpayne@69: live config.txt)" --GvR jpayne@69: jpayne@69: 2001-07-14 15:15 kbk jpayne@69: jpayne@69: * StackViewer.py: py-cvs-2001_07_13 (Rev 1.16) merge jpayne@69: jpayne@69: "Refactored, with some future plans in mind. This now uses the new jpayne@69: gotofileline() method defined in FileList.py" --GvR jpayne@69: jpayne@69: 2001-07-14 15:10 kbk jpayne@69: jpayne@69: * PyShell.py: py-cvs-2001_07_13 (Rev 1.34) merge jpayne@69: jpayne@69: "Amazing. A very subtle change in policy in descr-branch actually jpayne@69: found a bug here. Here's the deal: Class PyShell derives from jpayne@69: class OutputWindow. Method PyShell.close() wants to invoke its jpayne@69: parent method, but because PyShell long ago was inherited from jpayne@69: class PyShellEditorWindow, it invokes jpayne@69: PyShelEditorWindow.close(self). Now, class PyShellEditorWindow jpayne@69: itself derives from class OutputWindow, and inherits the close() jpayne@69: method from there without overriding it. Under the old rules, jpayne@69: PyShellEditorWindow.close would return an unbound method restricted jpayne@69: to the class that defined the implementation of close(), which was jpayne@69: OutputWindow.close. Under the new rules, the unbound method is jpayne@69: restricted to the class whose method was requested, that is jpayne@69: PyShellEditorWindow, and this was correctly trapped as an error." jpayne@69: --GvR jpayne@69: jpayne@69: 2001-07-14 14:59 kbk jpayne@69: jpayne@69: * PyParse.py: py-cvs-2001_07_13 (Rel 1.9) merge jpayne@69: jpayne@69: "Taught IDLE's autoident parser that "yield" is a keyword that jpayne@69: begins a stmt. Along w/ the preceding change to keyword.py, making jpayne@69: all this work w/ a future-stmt just looks harder and harder." jpayne@69: --tim_one jpayne@69: jpayne@69: (From Rel 1.8: "Hack to make this still work with Python 1.5.2. jpayne@69: ;-( " --fdrake) jpayne@69: jpayne@69: 2001-07-14 14:51 kbk jpayne@69: jpayne@69: * IdleConf.py: py-cvs-2001_07_13 (Rel 1.7) merge jpayne@69: jpayne@69: "Move the action of loading the configuration to the IdleConf jpayne@69: module rather than the idle.py script. This has advantages and jpayne@69: disadvantages; the biggest advantage being that we can more easily jpayne@69: have an alternative main program." --GvR jpayne@69: jpayne@69: 2001-07-14 14:45 kbk jpayne@69: jpayne@69: * FileList.py: py-cvs-2000_07_13 (Rev 1.9) merge jpayne@69: jpayne@69: "Delete goodname() method, which is unused. Add gotofileline(), a jpayne@69: convenience method which I intend to use in a variant. Rename jpayne@69: test() to _test()." --GvR jpayne@69: jpayne@69: This was an interesting merge. The join completely missed removing jpayne@69: goodname(), which was adjacent, but outside of, a small conflict. jpayne@69: I only caught it by comparing the 1.1.3.2/1.1.3.3 diff. CVS ain't jpayne@69: infallible. jpayne@69: jpayne@69: 2001-07-14 13:58 kbk jpayne@69: jpayne@69: * EditorWindow.py: py-cvs-2000_07_13 (Rev 1.38) merge "Remove jpayne@69: legacy support for the BrowserControl module; the webbrowser module jpayne@69: has been included since Python 2.0, and that is the preferred jpayne@69: interface." --fdrake jpayne@69: jpayne@69: 2001-07-14 13:32 kbk jpayne@69: jpayne@69: * EditorWindow.py, FileList.py, IdleConf.py, PyParse.py, jpayne@69: PyShell.py, StackViewer.py, extend.txt, idle.py, keydefs.py: Import jpayne@69: the 2001 July 13 23:59 GMT version of Python CVS IDLE on the jpayne@69: existing 1.1.3 vendor branch named py-cvs-vendor-branch. Release jpayne@69: tag is py-cvs-2001_07_13. jpayne@69: jpayne@69: 2001-07-14 12:02 kbk jpayne@69: jpayne@69: * Icons/python.gif: py-cvs-rel2_1 (Rev 1.2) merge Copied py-cvs rev jpayne@69: 1.2 changed file to idlefork MAIN jpayne@69: jpayne@69: 2001-07-14 11:58 kbk jpayne@69: jpayne@69: * Icons/minusnode.gif: py-cvs-rel2_1 (Rev 1.2) merge Copied py-cvs jpayne@69: 1.2 changed file to idlefork MAIN jpayne@69: jpayne@69: 2001-07-14 11:23 kbk jpayne@69: jpayne@69: * ScrolledList.py: py-cvs-rel2_1 (rev 1.5) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 11:20 kbk jpayne@69: jpayne@69: * Separator.py: py-cvs-rel2_1 (Rev 1.3) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 11:16 kbk jpayne@69: jpayne@69: * StackViewer.py: py-cvs-rel2_1 (Rev 1.15) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 11:14 kbk jpayne@69: jpayne@69: * ToolTip.py: py-cvs-rel2_1 (Rev 1.2) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 10:13 kbk jpayne@69: jpayne@69: * PyShell.py: cvs-py-rel2_1 (Rev 1.29 - 1.33) merge jpayne@69: jpayne@69: Merged the following py-cvs revs without conflict: 1.29 Reduce jpayne@69: copyright text output at startup 1.30 Delay setting sys.args until jpayne@69: Tkinter is fully initialized 1.31 Whitespace normalization 1.32 jpayne@69: Turn syntax warning into error when interactive 1.33 Fix warning jpayne@69: initialization bug jpayne@69: jpayne@69: Note that module is extensively modified wrt py-cvs jpayne@69: jpayne@69: 2001-07-14 06:33 kbk jpayne@69: jpayne@69: * PyParse.py: py-cvs-rel2_1 (Rev 1.6 - 1.8) merge Fix autoindent jpayne@69: bug and deflect Unicode from text.get() jpayne@69: jpayne@69: 2001-07-14 06:00 kbk jpayne@69: jpayne@69: * Percolator.py: py-cvs-rel2_1 (Rev 1.3) "move "from Tkinter import jpayne@69: *" to module level" --jhylton jpayne@69: jpayne@69: 2001-07-14 05:57 kbk jpayne@69: jpayne@69: * PathBrowser.py: py-cvs-rel2_1 (Rev 1.6) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 05:49 kbk jpayne@69: jpayne@69: * ParenMatch.py: cvs-py-rel2_1 (Rev 1.5) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 03:57 kbk jpayne@69: jpayne@69: * ObjectBrowser.py: py-cvs-rel2_1 (Rev 1.3) merge "Make the test jpayne@69: program work outside IDLE." -- GvR jpayne@69: jpayne@69: 2001-07-14 03:52 kbk jpayne@69: jpayne@69: * MultiStatusBar.py: py-cvs-rel2_1 (Rev 1.2) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 03:44 kbk jpayne@69: jpayne@69: * MultiScrolledLists.py: py-cvs-rel2_1 (Rev 1.2) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 03:40 kbk jpayne@69: jpayne@69: * IdleHistory.py: py-cvs-rel2_1 (Rev 1.4) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-14 03:38 kbk jpayne@69: jpayne@69: * IdleConf.py: py-cvs-rel2_1 (Rev 1.6) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 14:18 kbk jpayne@69: jpayne@69: * IOBinding.py: py-cvs-rel2_1 (Rev 1.4) merge - move "import *" to jpayne@69: module level jpayne@69: jpayne@69: 2001-07-13 14:12 kbk jpayne@69: jpayne@69: * FormatParagraph.py: py-cvs-rel2_1 (Rev 1.9) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 14:07 kbk jpayne@69: jpayne@69: * FileList.py: py-cvs-rel2_1 (Rev 1.8) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 13:35 kbk jpayne@69: jpayne@69: * EditorWindow.py: py-cvs-rel2_1 (Rev 1.33 - 1.37) merge jpayne@69: jpayne@69: VP IDLE version depended on VP's ExecBinding.py and spawn.py to get jpayne@69: the path to the Windows Doc directory (relative to python.exe). jpayne@69: Removed this conflicting code in favor of py-cvs updates which on jpayne@69: Windows use a hard coded path relative to the location of this jpayne@69: module. py-cvs updates include support for webbrowser.py. Module jpayne@69: still has BrowserControl.py for 1.5.2 support. jpayne@69: jpayne@69: At this point, the differences wrt py-cvs relate to menu jpayne@69: functionality. jpayne@69: jpayne@69: 2001-07-13 11:30 kbk jpayne@69: jpayne@69: * ConfigParser.py: py-cvs-rel2_1 merge - Remove, lives in /Lib jpayne@69: jpayne@69: 2001-07-13 10:10 kbk jpayne@69: jpayne@69: * Delegator.py: py-cvs-rel2_1 (Rev 1.3) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 10:07 kbk jpayne@69: jpayne@69: * Debugger.py: py-cvs-rel2_1 (Rev 1.15) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 10:04 kbk jpayne@69: jpayne@69: * ColorDelegator.py: py-cvs-rel2_1 (Rev 1.11 and 1.12) merge jpayne@69: Colorize "as" after "import" / use DEBUG instead of __debug__ jpayne@69: jpayne@69: 2001-07-13 09:54 kbk jpayne@69: jpayne@69: * ClassBrowser.py: py-cvs-rel2_1 (Rev 1.12) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 09:41 kbk jpayne@69: jpayne@69: * BrowserControl.py: py-cvs-rel2_1 (Rev 1.1) merge - New File - jpayne@69: Force HEAD to trunk with -f Note: browser.py was renamed jpayne@69: BrowserControl.py 10 May 2000. It provides a collection of classes jpayne@69: and convenience functions to control external browsers "for 1.5.2 jpayne@69: support". It was removed from py-cvs 18 April 2001. jpayne@69: jpayne@69: 2001-07-13 09:10 kbk jpayne@69: jpayne@69: * CallTips.py: py-cvs-rel2_1 (Rev 1.8) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 08:26 kbk jpayne@69: jpayne@69: * CallTipWindow.py: py-cvs-rel2_1 (Rev 1.3) merge - whitespace jpayne@69: normalization jpayne@69: jpayne@69: 2001-07-13 08:13 kbk jpayne@69: jpayne@69: * AutoExpand.py: py-cvs-rel1_2 (Rev 1.4) merge, "Add Alt-slash to jpayne@69: Unix keydefs (I somehow need it on RH 6.2). Get rid of assignment jpayne@69: to unused self.text.wordlist." --GvR jpayne@69: jpayne@69: 2001-07-12 16:54 elguavas jpayne@69: jpayne@69: * ReplaceDialog.py: py-cvs merge, python 1.5.2 compatibility jpayne@69: jpayne@69: 2001-07-12 16:46 elguavas jpayne@69: jpayne@69: * ScriptBinding.py: py-cvs merge, better error dialog jpayne@69: jpayne@69: 2001-07-12 16:38 elguavas jpayne@69: jpayne@69: * TODO.txt: py-cvs merge, additions jpayne@69: jpayne@69: 2001-07-12 15:35 elguavas jpayne@69: jpayne@69: * WindowList.py: py-cvs merge, correct indentation jpayne@69: jpayne@69: 2001-07-12 15:24 elguavas jpayne@69: jpayne@69: * config.txt: py-cvs merge, correct typo jpayne@69: jpayne@69: 2001-07-12 15:21 elguavas jpayne@69: jpayne@69: * help.txt: py-cvs merge, update colour changing info jpayne@69: jpayne@69: 2001-07-12 14:51 elguavas jpayne@69: jpayne@69: * idle.py: py-cvs merge, idle_dir loading changed jpayne@69: jpayne@69: 2001-07-12 14:44 elguavas jpayne@69: jpayne@69: * idlever.py: py-cvs merge, version update jpayne@69: jpayne@69: 2001-07-11 12:53 kbk jpayne@69: jpayne@69: * BrowserControl.py: Initial revision jpayne@69: jpayne@69: 2001-07-11 12:53 kbk jpayne@69: jpayne@69: * AutoExpand.py, BrowserControl.py, CallTipWindow.py, CallTips.py, jpayne@69: ClassBrowser.py, ColorDelegator.py, Debugger.py, Delegator.py, jpayne@69: EditorWindow.py, FileList.py, FormatParagraph.py, IOBinding.py, jpayne@69: IdleConf.py, IdleHistory.py, MultiScrolledLists.py, jpayne@69: MultiStatusBar.py, ObjectBrowser.py, OutputWindow.py, jpayne@69: ParenMatch.py, PathBrowser.py, Percolator.py, PyParse.py, jpayne@69: PyShell.py, RemoteInterp.py, ReplaceDialog.py, ScriptBinding.py, jpayne@69: ScrolledList.py, Separator.py, StackViewer.py, TODO.txt, jpayne@69: ToolTip.py, WindowList.py, config.txt, help.txt, idle, idle.bat, jpayne@69: idle.py, idlever.py, setup.py, Icons/minusnode.gif, jpayne@69: Icons/python.gif: Import the release 2.1 version of Python CVS IDLE jpayne@69: on the existing 1.1.3 vendor branch named py-cvs-vendor-branch, jpayne@69: with release tag py-cvs-rel2_1. jpayne@69: jpayne@69: 2001-07-11 12:34 kbk jpayne@69: jpayne@69: * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py, jpayne@69: CallTips.py, ChangeLog, ClassBrowser.py, ColorDelegator.py, jpayne@69: Debugger.py, Delegator.py, EditorWindow.py, FileList.py, jpayne@69: FormatParagraph.py, FrameViewer.py, GrepDialog.py, IOBinding.py, jpayne@69: IdleConf.py, IdleHistory.py, MultiScrolledLists.py, jpayne@69: MultiStatusBar.py, NEWS.txt, ObjectBrowser.py, OldStackViewer.py, jpayne@69: OutputWindow.py, ParenMatch.py, PathBrowser.py, Percolator.py, jpayne@69: PyParse.py, PyShell.py, README.txt, RemoteInterp.py, jpayne@69: ReplaceDialog.py, ScriptBinding.py, ScrolledList.py, jpayne@69: SearchBinding.py, SearchDialog.py, SearchDialogBase.py, jpayne@69: SearchEngine.py, Separator.py, StackViewer.py, TODO.txt, jpayne@69: ToolTip.py, TreeWidget.py, UndoDelegator.py, WidgetRedirector.py, jpayne@69: WindowList.py, ZoomHeight.py, __init__.py, config-unix.txt, jpayne@69: config-win.txt, config.txt, eventparse.py, extend.txt, help.txt, jpayne@69: idle.bat, idle.py, idle.pyw, idlever.py, keydefs.py, pyclbr.py, jpayne@69: tabnanny.py, testcode.py, Icons/folder.gif, Icons/minusnode.gif, jpayne@69: Icons/openfolder.gif, Icons/plusnode.gif, Icons/python.gif, jpayne@69: Icons/tk.gif: Import the 9 March 2000 version of Python CVS IDLE as jpayne@69: 1.1.3 vendor branch named py-cvs-vendor-branch. jpayne@69: jpayne@69: 2001-07-04 13:43 kbk jpayne@69: jpayne@69: * Icons/: folder.gif, minusnode.gif, openfolder.gif, plusnode.gif, jpayne@69: python.gif, tk.gif: Null commit with -f option to force an uprev jpayne@69: and put HEADs firmly on the trunk. jpayne@69: jpayne@69: 2001-07-04 13:15 kbk jpayne@69: jpayne@69: * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py, jpayne@69: CallTips.py, ChangeLog, ClassBrowser.py, ColorDelegator.py, jpayne@69: ConfigParser.py, Debugger.py, Delegator.py, EditorWindow.py, jpayne@69: ExecBinding.py, FileList.py, FormatParagraph.py, FrameViewer.py, jpayne@69: GrepDialog.py, IDLEFORK.html, IOBinding.py, IdleConf.py, jpayne@69: IdleHistory.py, MultiScrolledLists.py, MultiStatusBar.py, NEWS.txt, jpayne@69: ObjectBrowser.py, OldStackViewer.py, OutputWindow.py, jpayne@69: ParenMatch.py, PathBrowser.py, Percolator.py, PyParse.py, jpayne@69: PyShell.py, README.txt, Remote.py, RemoteInterp.py, jpayne@69: ReplaceDialog.py, ScriptBinding.py, ScrolledList.py, jpayne@69: SearchBinding.py, SearchDialog.py, SearchDialogBase.py, jpayne@69: SearchEngine.py, Separator.py, StackViewer.py, TODO.txt, jpayne@69: ToolTip.py, TreeWidget.py, UndoDelegator.py, WidgetRedirector.py, jpayne@69: WindowList.py, ZoomHeight.py, __init__.py, config-unix.txt, jpayne@69: config-win.txt, config.txt, eventparse.py, extend.txt, help.txt, jpayne@69: idle, idle.bat, idle.py, idle.pyw, idlever.py, keydefs.py, jpayne@69: loader.py, protocol.py, pyclbr.py, setup.py, spawn.py, tabnanny.py, jpayne@69: testcode.py: Null commit with -f option to force an uprev and put jpayne@69: HEADs firmly on the trunk. jpayne@69: jpayne@69: 2001-06-27 10:24 elguavas jpayne@69: jpayne@69: * IDLEFORK.html: updated contact details jpayne@69: jpayne@69: 2001-06-25 17:23 elguavas jpayne@69: jpayne@69: * idle, RemoteInterp.py, setup.py: Initial revision jpayne@69: jpayne@69: 2001-06-25 17:23 elguavas jpayne@69: jpayne@69: * idle, RemoteInterp.py, setup.py: import current python cvs idle jpayne@69: as a vendor branch jpayne@69: jpayne@69: 2001-06-24 15:10 elguavas jpayne@69: jpayne@69: * IDLEFORK.html: tiny change to test new syncmail setup jpayne@69: jpayne@69: 2001-06-24 14:41 elguavas jpayne@69: jpayne@69: * IDLEFORK.html: change to new developer contact, also a test jpayne@69: commit for new syncmail setup jpayne@69: jpayne@69: 2001-06-23 18:15 elguavas jpayne@69: jpayne@69: * IDLEFORK.html: tiny test update for revitalised idle-fork jpayne@69: jpayne@69: 2000-09-24 17:29 nriley jpayne@69: jpayne@69: * protocol.py: Fixes for Python 1.6 compatibility - socket bind and jpayne@69: connect get a tuple instead two arguments. jpayne@69: jpayne@69: 2000-09-24 17:28 nriley jpayne@69: jpayne@69: * spawn.py: Change for Python 1.6 compatibility - UNIX's 'os' jpayne@69: module defines 'spawnv' now, so we check for 'fork' first. jpayne@69: jpayne@69: 2000-08-15 22:51 nowonder jpayne@69: jpayne@69: * IDLEFORK.html: jpayne@69: corrected email address jpayne@69: jpayne@69: 2000-08-15 22:47 nowonder jpayne@69: jpayne@69: * IDLEFORK.html: jpayne@69: added .html file for http://idlefork.sourceforge.net jpayne@69: jpayne@69: 2000-08-15 11:13 dscherer jpayne@69: jpayne@69: * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py, jpayne@69: CallTips.py, __init__.py, ChangeLog, ClassBrowser.py, jpayne@69: ColorDelegator.py, ConfigParser.py, Debugger.py, Delegator.py, jpayne@69: FileList.py, FormatParagraph.py, FrameViewer.py, GrepDialog.py, jpayne@69: IOBinding.py, IdleConf.py, IdleHistory.py, MultiScrolledLists.py, jpayne@69: MultiStatusBar.py, NEWS.txt, ObjectBrowser.py, OldStackViewer.py, jpayne@69: OutputWindow.py, ParenMatch.py, PathBrowser.py, Percolator.py, jpayne@69: PyParse.py, PyShell.py, README.txt, ReplaceDialog.py, jpayne@69: ScriptBinding.py, ScrolledList.py, SearchBinding.py, jpayne@69: SearchDialog.py, SearchDialogBase.py, SearchEngine.py, jpayne@69: Separator.py, StackViewer.py, TODO.txt, ToolTip.py, TreeWidget.py, jpayne@69: UndoDelegator.py, WidgetRedirector.py, WindowList.py, help.txt, jpayne@69: ZoomHeight.py, config-unix.txt, config-win.txt, config.txt, jpayne@69: eventparse.py, extend.txt, idle.bat, idle.py, idle.pyw, idlever.py, jpayne@69: keydefs.py, loader.py, pyclbr.py, tabnanny.py, testcode.py, jpayne@69: EditorWindow.py, ExecBinding.py, Remote.py, protocol.py, spawn.py, jpayne@69: Icons/folder.gif, Icons/minusnode.gif, Icons/openfolder.gif, jpayne@69: Icons/plusnode.gif, Icons/python.gif, Icons/tk.gif: Initial jpayne@69: revision jpayne@69: jpayne@69: 2000-08-15 11:13 dscherer jpayne@69: jpayne@69: * AutoExpand.py, AutoIndent.py, Bindings.py, CallTipWindow.py, jpayne@69: CallTips.py, __init__.py, ChangeLog, ClassBrowser.py, jpayne@69: ColorDelegator.py, ConfigParser.py, Debugger.py, Delegator.py, jpayne@69: FileList.py, FormatParagraph.py, FrameViewer.py, GrepDialog.py, jpayne@69: IOBinding.py, IdleConf.py, IdleHistory.py, MultiScrolledLists.py, jpayne@69: MultiStatusBar.py, NEWS.txt, ObjectBrowser.py, OldStackViewer.py, jpayne@69: OutputWindow.py, ParenMatch.py, PathBrowser.py, Percolator.py, jpayne@69: PyParse.py, PyShell.py, README.txt, ReplaceDialog.py, jpayne@69: ScriptBinding.py, ScrolledList.py, SearchBinding.py, jpayne@69: SearchDialog.py, SearchDialogBase.py, SearchEngine.py, jpayne@69: Separator.py, StackViewer.py, TODO.txt, ToolTip.py, TreeWidget.py, jpayne@69: UndoDelegator.py, WidgetRedirector.py, WindowList.py, help.txt, jpayne@69: ZoomHeight.py, config-unix.txt, config-win.txt, config.txt, jpayne@69: eventparse.py, extend.txt, idle.bat, idle.py, idle.pyw, idlever.py, jpayne@69: keydefs.py, loader.py, pyclbr.py, tabnanny.py, testcode.py, jpayne@69: EditorWindow.py, ExecBinding.py, Remote.py, protocol.py, spawn.py, jpayne@69: Icons/folder.gif, Icons/minusnode.gif, Icons/openfolder.gif, jpayne@69: Icons/plusnode.gif, Icons/python.gif, Icons/tk.gif: Modified IDLE jpayne@69: from VPython 0.2 jpayne@69: jpayne@69: jpayne@69: original IDLE ChangeLog: jpayne@69: ======================== jpayne@69: jpayne@69: Tue Feb 15 18:08:19 2000 Guido van Rossum jpayne@69: jpayne@69: * NEWS.txt: Notice status bar and stack viewer. jpayne@69: jpayne@69: * EditorWindow.py: Support for Moshe's status bar. jpayne@69: jpayne@69: * MultiStatusBar.py: Status bar code -- by Moshe Zadka. jpayne@69: jpayne@69: * OldStackViewer.py: jpayne@69: Adding the old stack viewer implementation back, for the debugger. jpayne@69: jpayne@69: * StackViewer.py: New stack viewer, uses a tree widget. jpayne@69: (XXX: the debugger doesn't yet use this.) jpayne@69: jpayne@69: * WindowList.py: jpayne@69: Correct a typo and remove an unqualified except that was hiding the error. jpayne@69: jpayne@69: * ClassBrowser.py: Add an XXX comment about the ClassBrowser AIP. jpayne@69: jpayne@69: * ChangeLog: Updated change log. jpayne@69: jpayne@69: * NEWS.txt: News update. Probably incomplete; what else is new? jpayne@69: jpayne@69: * README.txt: jpayne@69: Updated for pending IDLE 0.5 release (still very rough -- just getting jpayne@69: it out in a more convenient format than CVS). jpayne@69: jpayne@69: * TODO.txt: Tiny addition. jpayne@69: jpayne@69: Thu Sep 9 14:16:02 1999 Guido van Rossum jpayne@69: jpayne@69: * TODO.txt: A few new TODO entries. jpayne@69: jpayne@69: Thu Aug 26 23:06:22 1999 Guido van Rossum jpayne@69: jpayne@69: * Bindings.py: Add Python Documentation entry to Help menu. jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Find the help.txt file relative to __file__ or ".", not in sys.path. jpayne@69: (Suggested by Moshe Zadka, but implemented differently.) jpayne@69: jpayne@69: Add <> event which, on Unix, brings up Netscape pointing jpayne@69: to http://www.python.doc/current/ (a local copy would be nice but its jpayne@69: location can't be predicted). Windows solution TBD. jpayne@69: jpayne@69: Wed Aug 11 14:55:43 1999 Guido van Rossum jpayne@69: jpayne@69: * TreeWidget.py: jpayne@69: Moshe noticed an inconsistency in his comment, so I'm rephrasing it to jpayne@69: be clearer. jpayne@69: jpayne@69: * TreeWidget.py: jpayne@69: Patch inspired by Moshe Zadka to search for the Icons directory in the jpayne@69: same directory as __file__, rather than searching for it along sys.path. jpayne@69: This works better when idle is a package. jpayne@69: jpayne@69: Thu Jul 15 13:11:02 1999 Guido van Rossum jpayne@69: jpayne@69: * TODO.txt: New wishes. jpayne@69: jpayne@69: Sat Jul 10 13:17:35 1999 Guido van Rossum jpayne@69: jpayne@69: * IdlePrefs.py: jpayne@69: Make the color for stderr red (i.e. the standard warning/danger/stop jpayne@69: color) rather than green. Suggested by Sam Schulenburg. jpayne@69: jpayne@69: Fri Jun 25 17:26:34 1999 Guido van Rossum jpayne@69: jpayne@69: * PyShell.py: Close debugger when closing. This may break a cycle. jpayne@69: jpayne@69: * Debugger.py: Break cycle on close. jpayne@69: jpayne@69: * ClassBrowser.py: Destroy the tree when closing. jpayne@69: jpayne@69: * TreeWidget.py: Add destroy() method to recursively destroy a tree. jpayne@69: jpayne@69: * PyShell.py: Extend _close() to break cycles. jpayne@69: Break some other cycles too (and destroy the root when done). jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Add _close() method that does the actual cleanup (close() asks the jpayne@69: user what they want first if there's unsaved stuff, and may cancel). jpayne@69: It closes more than before. jpayne@69: jpayne@69: Add unload_extensions() method to unload all extensions; called from jpayne@69: _close(). It calls an extension's close() method if it has one. jpayne@69: jpayne@69: * Percolator.py: Add close() method that breaks cycles. jpayne@69: jpayne@69: * WidgetRedirector.py: Add unregister() method. jpayne@69: Unregister everything at closing. jpayne@69: Don't call close() in __del__, rely on explicit call to close(). jpayne@69: jpayne@69: * IOBinding.py, FormatParagraph.py, CallTips.py: jpayne@69: Add close() method that breaks a cycle. jpayne@69: jpayne@69: Fri Jun 11 15:03:00 1999 Guido van Rossum jpayne@69: jpayne@69: * AutoIndent.py, EditorWindow.py, FormatParagraph.py: jpayne@69: Tim Peters smart.patch: jpayne@69: jpayne@69: EditorWindow.py: jpayne@69: jpayne@69: + Added get_tabwidth & set_tabwidth "virtual text" methods, that get/set the jpayne@69: widget's view of what a tab means. jpayne@69: jpayne@69: + Moved TK_TABWIDTH_DEFAULT here from AutoIndent. jpayne@69: jpayne@69: + Renamed Mark's get_selection_index to get_selection_indices (sorry, Mark, jpayne@69: but the name was plain wrong ). jpayne@69: jpayne@69: FormatParagraph.py: renamed use of get_selection_index. jpayne@69: jpayne@69: AutoIndent.py: jpayne@69: jpayne@69: + Moved TK_TABWIDTH_DEFAULT to EditorWindow. jpayne@69: jpayne@69: + Rewrote set_indentation_params to use new VTW get/set_tabwidth methods. jpayne@69: jpayne@69: + Changed smart_backspace_event to delete whitespace back to closest jpayne@69: preceding virtual tab stop or real character (note that this may require jpayne@69: inserting characters if backspacing over a tab!). jpayne@69: jpayne@69: + Nuked almost references to the selection tag, in favor of using jpayne@69: get_selection_indices. The sole exception is in set_region, for which no jpayne@69: "set_selection" abstraction has yet been agreed upon. jpayne@69: jpayne@69: + Had too much fun using the spiffy new features of the format-paragraph jpayne@69: cmd. jpayne@69: jpayne@69: Thu Jun 10 17:48:02 1999 Guido van Rossum jpayne@69: jpayne@69: * FormatParagraph.py: jpayne@69: Code by Mark Hammond to format paragraphs embedded in comments. jpayne@69: Read the comments (which I reformatted using the new feature :-) jpayne@69: for some limitations. jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Added abstraction get_selection_index() (Mark Hammond). Also jpayne@69: reformatted some comment blocks to show off a cool feature I'm about jpayne@69: to check in next. jpayne@69: jpayne@69: * ClassBrowser.py: jpayne@69: Adapt to the new pyclbr's support of listing top-level functions. If jpayne@69: this functionality is not present (e.g. when used with a vintage jpayne@69: Python 1.5.2 installation) top-level functions are not listed. jpayne@69: jpayne@69: (Hmm... Any distribution of IDLE 0.5 should probably include a copy jpayne@69: of the new pyclbr.py!) jpayne@69: jpayne@69: * AutoIndent.py: jpayne@69: Fix off-by-one error in Tim's recent change to comment_region(): the jpayne@69: list of lines returned by get_region() contains an empty line at the jpayne@69: end representing the start of the next line, and this shouldn't be jpayne@69: commented out! jpayne@69: jpayne@69: * CallTips.py: jpayne@69: Mark Hammond writes: Here is another change that allows it to work for jpayne@69: class creation - tries to locate an __init__ function. Also updated jpayne@69: the test code to reflect your new "***" change. jpayne@69: jpayne@69: * CallTipWindow.py: jpayne@69: Mark Hammond writes: Tim's suggestion of copying the font for the jpayne@69: CallTipWindow from the text control makes sense, and actually makes jpayne@69: the control look better IMO. jpayne@69: jpayne@69: Wed Jun 9 20:34:57 1999 Guido van Rossum jpayne@69: jpayne@69: * CallTips.py: jpayne@69: Append "..." if the appropriate flag (for varargs) in co_flags is set. jpayne@69: Ditto "***" for kwargs. jpayne@69: jpayne@69: Tue Jun 8 13:06:07 1999 Guido van Rossum jpayne@69: jpayne@69: * ReplaceDialog.py: jpayne@69: Hmm... Tim didn't turn "replace all" into a single undo block. jpayne@69: I think I like it better if it os, so here. jpayne@69: jpayne@69: * ReplaceDialog.py: Tim Peters: made replacement atomic for undo/redo. jpayne@69: jpayne@69: * AutoIndent.py: Tim Peters: jpayne@69: jpayne@69: + Set usetabs=1. Editing pyclbr.py was driving me nuts <0.6 wink>. jpayne@69: usetabs=1 is the Emacs pymode default too, and thanks to indentwidth != jpayne@69: tabwidth magical usetabs disabling, new files are still created with tabs jpayne@69: turned off. The only implication is that if you open a file whose first jpayne@69: indent is a single tab, IDLE will now magically use tabs for that file (and jpayne@69: set indentwidth to 8). Note that the whole scheme doesn't work right for jpayne@69: PythonWin, though, since Windows users typically set tabwidth to 4; Mark jpayne@69: probably has to hide the IDLE algorithm from them (which he already knows). jpayne@69: jpayne@69: + Changed comment_region_event to stick "##" in front of every line. The jpayne@69: "holes" previously left on blank lines were visually confusing (made it jpayne@69: needlessly hard to figure out what to uncomment later). jpayne@69: jpayne@69: Mon Jun 7 15:38:40 1999 Guido van Rossum jpayne@69: jpayne@69: * TreeWidget.py, ObjectBrowser.py: jpayne@69: Remove unnecessary reference to pyclbr from test() code. jpayne@69: jpayne@69: * PyParse.py: Tim Peters: jpayne@69: jpayne@69: Smarter logic for finding a parse synch point. jpayne@69: jpayne@69: Does a half to a fifth the work in normal cases; don't notice the speedup, jpayne@69: but makes more breathing room for other extensions. jpayne@69: jpayne@69: Speeds terrible cases by at least a factor of 10. "Terrible" == e.g. you put jpayne@69: """ at the start of Tkinter.py, undo it, zoom to the bottom, and start jpayne@69: typing in code. Used to take about 8 seconds for ENTER to respond, now some jpayne@69: large fraction of a second. The new code gets indented correctly, despite jpayne@69: that it all remains "string colored" until the colorizer catches up (after jpayne@69: which, ENTER appears instantaneous again). jpayne@69: jpayne@69: Fri Jun 4 19:21:19 1999 Guido van Rossum jpayne@69: jpayne@69: * extend.py: Might as well enable CallTips by default. jpayne@69: If there are too many complaints I'll remove it again or fix it. jpayne@69: jpayne@69: Thu Jun 3 14:32:16 1999 Guido van Rossum jpayne@69: jpayne@69: * AutoIndent.py, EditorWindow.py, PyParse.py: jpayne@69: New offerings by Tim Peters; he writes: jpayne@69: jpayne@69: IDLE is now the first Python editor in the Universe not confused by my jpayne@69: doctest.py . jpayne@69: jpayne@69: As threatened, this defines IDLE's is_char_in_string function as a jpayne@69: method of EditorWindow. You just need to define one similarly in jpayne@69: whatever it is you pass as editwin to AutoIndent; looking at the jpayne@69: EditorWindow.py part of the patch should make this clear. jpayne@69: jpayne@69: * GrepDialog.py: Enclose pattern in quotes in status message. jpayne@69: jpayne@69: * CallTips.py: jpayne@69: Mark Hammond fixed some comments and improved the way the tip text is jpayne@69: constructed. jpayne@69: jpayne@69: Wed Jun 2 18:18:57 1999 Guido van Rossum jpayne@69: jpayne@69: * CallTips.py: jpayne@69: My fix to Mark's code: restore the universal check on . jpayne@69: Always cancel on or . jpayne@69: jpayne@69: * CallTips.py: jpayne@69: A version that Mark Hammond posted to the newsgroup. Has some newer jpayne@69: stuff for getting the tip. Had to fix the Key-( and Key-) events jpayne@69: for Unix. Will have to re-apply my patch for catching KeyRelease and jpayne@69: ButtonRelease events. jpayne@69: jpayne@69: * CallTipWindow.py, CallTips.py: jpayne@69: Call tips by Mark Hammond (plus tiny fix by me.) jpayne@69: jpayne@69: * IdleHistory.py: jpayne@69: Changes by Mark Hammond: (1) support optional output_sep argument to jpayne@69: the constructor so he can eliminate the sys.ps2 that PythonWin leaves jpayne@69: in the source; (2) remove duplicate history items. jpayne@69: jpayne@69: * AutoIndent.py: jpayne@69: Changes by Mark Hammond to allow using IDLE extensions in PythonWin as jpayne@69: well: make three dialog routines instance variables. jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Change by Mark Hammond to allow using IDLE extensions in PythonWin as jpayne@69: well: make three dialog routines instance variables. jpayne@69: jpayne@69: Tue Jun 1 20:06:44 1999 Guido van Rossum jpayne@69: jpayne@69: * AutoIndent.py: Hah! A fix of my own to Tim's code! jpayne@69: Unix bindings for <> and <> were jpayne@69: missing, and somehow that meant the events were never generated, jpayne@69: even though they were in the menu. The new Unix bindings are now jpayne@69: the same as the Windows bindings (M-t and M-u). jpayne@69: jpayne@69: * AutoIndent.py, PyParse.py, PyShell.py: Tim Peters again: jpayne@69: jpayne@69: The new version (attached) is fast enough all the time in every real module jpayne@69: I have . You can make it slow by, e.g., creating an open list with jpayne@69: 5,000 90-character identifiers (+ trailing comma) each on its own line, then jpayne@69: adding an item to the end -- but that still consumes less than a second on jpayne@69: my P5-166. Response time in real code appears instantaneous. jpayne@69: jpayne@69: Fixed some bugs. jpayne@69: jpayne@69: New feature: when hitting ENTER and the cursor is beyond the line's leading jpayne@69: indentation, whitespace is removed on both sides of the cursor; before jpayne@69: whitespace was removed only on the left; e.g., assuming the cursor is jpayne@69: between the comma and the space: jpayne@69: jpayne@69: def something(arg1, arg2): jpayne@69: ^ cursor to the left of here, and hit ENTER jpayne@69: arg2): # new line used to end up here jpayne@69: arg2): # but now lines up the way you expect jpayne@69: jpayne@69: New hack: AutoIndent has grown a context_use_ps1 Boolean config option, jpayne@69: defaulting to 0 (false) and set to 1 (only) by PyShell. Reason: handling jpayne@69: the fancy stuff requires looking backward for a parsing synch point; ps1 jpayne@69: lines are the only sensible thing to look for in a shell window, but are a jpayne@69: bad thing to look for in a file window (ps1 lines show up in my module jpayne@69: docstrings often). PythonWin's shell should set this true too. jpayne@69: jpayne@69: Persistent problem: strings containing def/class can still screw things up jpayne@69: completely. No improvement. Simplest workaround is on the user's head, and jpayne@69: consists of inserting e.g. jpayne@69: jpayne@69: def _(): pass jpayne@69: jpayne@69: (or any other def/class) after the end of the multiline string that's jpayne@69: screwing them up. This is especially irksome because IDLE's syntax coloring jpayne@69: is *not* confused, so when this happens the colors don't match the jpayne@69: indentation behavior they see. jpayne@69: jpayne@69: * AutoIndent.py: Tim Peters again: jpayne@69: jpayne@69: [Tim, after adding some bracket smarts to AutoIndent.py] jpayne@69: > ... jpayne@69: > What it can't possibly do without reparsing large gobs of text is jpayne@69: > suggest a reasonable indent level after you've *closed* a bracket jpayne@69: > left open on some previous line. jpayne@69: > ... jpayne@69: jpayne@69: The attached can, and actually fast enough to use -- most of the time. The jpayne@69: code is tricky beyond belief to achieve that, but it works so far; e.g., jpayne@69: jpayne@69: return len(string.expandtabs(str[self.stmt_start : jpayne@69: ^ indents to caret jpayne@69: i], jpayne@69: ^ indents to caret jpayne@69: self.tabwidth)) + 1 jpayne@69: ^ indents to caret jpayne@69: jpayne@69: It's about as smart as pymode now, wrt both bracket and backslash jpayne@69: continuation rules. It does require reparsing large gobs of text, and if it jpayne@69: happens to find something that looks like a "def" or "class" or sys.ps1 jpayne@69: buried in a multiline string, but didn't suck up enough preceding text to jpayne@69: see the start of the string, it's completely hosed. I can't repair that -- jpayne@69: it's just too slow to reparse from the start of the file all the time. jpayne@69: jpayne@69: AutoIndent has grown a new num_context_lines tuple attribute that controls jpayne@69: how far to look back, and-- like other params --this could/should be made jpayne@69: user-overridable at startup and per-file on the fly. jpayne@69: jpayne@69: * PyParse.py: New file by Tim Peters: jpayne@69: jpayne@69: One new file in the attached, PyParse.py. The LineStudier (whatever it was jpayne@69: called ) class was removed from AutoIndent; PyParse subsumes its jpayne@69: functionality. jpayne@69: jpayne@69: * AutoIndent.py: Tim Peters keeps revising this module (more to come): jpayne@69: jpayne@69: Removed "New tabwidth" menu binding. jpayne@69: jpayne@69: Added "a tab means how many spaces?" dialog to block tabify and untabify. I jpayne@69: think prompting for this is good now: they're usually at-most-once-per-file jpayne@69: commands, and IDLE can't let them change tabwidth from the Tk default jpayne@69: anymore, so IDLE can no longer presume to have any idea what a tab means. jpayne@69: jpayne@69: Irony: for the purpose of keeping comments aligned via tabs, Tk's jpayne@69: non-default approach is much nicer than the Emacs/Notepad/Codewright/vi/etc jpayne@69: approach. jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: 1. Catch NameError on import (could be raised by case mismatch on Windows). jpayne@69: 2. No longer need to reset pyclbr cache and show watch cursor when calling jpayne@69: ClassBrowser -- the ClassBrowser takes care of pyclbr and the TreeWidget jpayne@69: takes care of the watch cursor. jpayne@69: 3. Reset the focus to the current window after error message about class jpayne@69: browser on buffer without filename. jpayne@69: jpayne@69: * Icons/minusnode.gif, Icons/plusnode.gif: Missed a few. jpayne@69: jpayne@69: * ClassBrowser.py, PathBrowser.py: Rewritten based on TreeWidget.py jpayne@69: jpayne@69: * ObjectBrowser.py: Object browser, based on TreeWidget.py. jpayne@69: jpayne@69: * TreeWidget.py: Tree widget done right. jpayne@69: jpayne@69: * ToolTip.py: As yet unused code for tool tips. jpayne@69: jpayne@69: * ScriptBinding.py: jpayne@69: Ensure sys.argv[0] is the script name on Run Script. jpayne@69: jpayne@69: * ZoomHeight.py: Move zoom height functionality to separate function. jpayne@69: jpayne@69: * Icons/folder.gif, Icons/openfolder.gif, Icons/python.gif, Icons/tk.gif: jpayne@69: A few icons used by ../TreeWidget.py and its callers. jpayne@69: jpayne@69: * AutoIndent.py: New version by Tim Peters improves block opening test. jpayne@69: jpayne@69: Fri May 21 04:46:17 1999 Guido van Rossum jpayne@69: jpayne@69: * Attic/History.py, PyShell.py: Rename History to IdleHistory. jpayne@69: Add isatty() to pseudo files. jpayne@69: jpayne@69: * StackViewer.py: Make initial stack viewer wider jpayne@69: jpayne@69: * TODO.txt: New wishes jpayne@69: jpayne@69: * AutoIndent.py, EditorWindow.py, PyShell.py: jpayne@69: Much improved autoindent and handling of tabs, jpayne@69: by Tim Peters. jpayne@69: jpayne@69: Mon May 3 15:49:52 1999 Guido van Rossum jpayne@69: jpayne@69: * AutoIndent.py, EditorWindow.py, FormatParagraph.py, UndoDelegator.py: jpayne@69: Tim Peters writes: jpayne@69: jpayne@69: I'm still unsure, but couldn't stand the virtual event trickery so tried a jpayne@69: different sin (adding undo_block_start/stop methods to the Text instance in jpayne@69: EditorWindow.py). Like it or not, it's efficient and works . Better jpayne@69: idea? jpayne@69: jpayne@69: Give the attached a whirl. Even if you hate the implementation, I think jpayne@69: you'll like the results. Think I caught all the "block edit" cmds, jpayne@69: including Format Paragraph, plus subtler ones involving smart indents and jpayne@69: backspacing. jpayne@69: jpayne@69: * WidgetRedirector.py: Tim Peters writes: jpayne@69: jpayne@69: [W]hile trying to dope out how redirection works, stumbled into two jpayne@69: possible glitches. In the first, it doesn't appear to make sense to try to jpayne@69: rename a command that's already been destroyed; in the second, the name jpayne@69: "previous" doesn't really bring to mind "ignore the previous value" . jpayne@69: jpayne@69: Fri Apr 30 19:39:25 1999 Guido van Rossum jpayne@69: jpayne@69: * __init__.py: Support for using idle as a package. jpayne@69: jpayne@69: * PathBrowser.py: jpayne@69: Avoid listing files more than once (e.g. foomodule.so has two hits: jpayne@69: once for foo + module.so, once for foomodule + .so). jpayne@69: jpayne@69: Mon Apr 26 22:20:38 1999 Guido van Rossum jpayne@69: jpayne@69: * ChangeLog, ColorDelegator.py, PyShell.py: Tim Peters strikes again: jpayne@69: jpayne@69: Ho ho ho -- that's trickier than it sounded! The colorizer is working with jpayne@69: "line.col" strings instead of Text marks, and the absolute coordinates of jpayne@69: the point of interest can change across the self.update call (voice of jpayne@69: baffled experience, when two quick backspaces no longer fooled it, but a jpayne@69: backspace followed by a quick ENTER did ). jpayne@69: jpayne@69: Anyway, the attached appears to do the trick. CPU usage goes way up when jpayne@69: typing quickly into a long triple-quoted string, but the latency is fine for jpayne@69: me (a relatively fast typist on a relatively slow machine). Most of the jpayne@69: changes here are left over from reducing the # of vrbl names to help me jpayne@69: reason about the logic better; I hope the code is a *little* easier to jpayne@69: jpayne@69: Fri Apr 23 14:01:25 1999 Guido van Rossum jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Provide full arguments to __import__ so it works in packagized IDLE. jpayne@69: jpayne@69: Thu Apr 22 23:20:17 1999 Guido van Rossum jpayne@69: jpayne@69: * help.txt: jpayne@69: Bunch of updates necessary due to recent changes; added docs for File jpayne@69: menu, command line and color preferences. jpayne@69: jpayne@69: * Bindings.py: Remove obsolete 'script' menu. jpayne@69: jpayne@69: * TODO.txt: Several wishes fulfilled. jpayne@69: jpayne@69: * OutputWindow.py: jpayne@69: Moved classes OnDemandOutputWindow and PseudoFile here, jpayne@69: from ScriptBinding.py where they are no longer needed. jpayne@69: jpayne@69: * ScriptBinding.py: jpayne@69: Mostly rewritten. Instead of the old Run module and Debug module, jpayne@69: there are two new commands: jpayne@69: jpayne@69: Import module (F5) imports or reloads the module and also adds its jpayne@69: name to the __main__ namespace. This gets executed in the PyShell jpayne@69: window under control of its debug settings. jpayne@69: jpayne@69: Run script (Control-F5) is similar but executes the contents of the jpayne@69: file directly in the __main__ namespace. jpayne@69: jpayne@69: * PyShell.py: Nits: document use of $IDLESTARTUP; display idle version jpayne@69: jpayne@69: * idlever.py: New version to celebrate new command line jpayne@69: jpayne@69: * OutputWindow.py: Added flush(), for completeness. jpayne@69: jpayne@69: * PyShell.py: jpayne@69: A lot of changes to make the command line more useful. You can now do: jpayne@69: idle.py -e file ... -- to edit files jpayne@69: idle.py script arg ... -- to run a script jpayne@69: idle.py -c cmd arg ... -- to run a command jpayne@69: Other options, see also the usage message (also new!) for more details: jpayne@69: -d -- enable debugger jpayne@69: -s -- run $IDLESTARTUP or $PYTHONSTARTUP jpayne@69: -t title -- set Python Shell window's title jpayne@69: sys.argv is set accordingly, unless -e is used. jpayne@69: sys.path is absolutized, and all relevant paths are inserted into it. jpayne@69: jpayne@69: Other changes: jpayne@69: - the environment in which commands are executed is now the jpayne@69: __main__ module jpayne@69: - explicitly save sys.stdout etc., don't restore from sys.__stdout__ jpayne@69: - new interpreter methods execsource(), execfile(), stuffsource() jpayne@69: - a few small nits jpayne@69: jpayne@69: * TODO.txt: jpayne@69: Some more TODO items. Made up my mind about command line args, jpayne@69: Run/Import, __main__. jpayne@69: jpayne@69: * ColorDelegator.py: jpayne@69: Super-elegant patch by Tim Peters that speeds up colorization jpayne@69: dramatically (up to 15 times he claims). Works by reading more than jpayne@69: one line at a time, up to 100-line chunks (starting with one line and jpayne@69: then doubling up to the limit). On a typical machine (e.g. Tim's jpayne@69: P5-166) this doesn't reduce interactive responsiveness in a noticeable jpayne@69: way. jpayne@69: jpayne@69: Wed Apr 21 15:49:34 1999 Guido van Rossum jpayne@69: jpayne@69: * ColorDelegator.py: jpayne@69: Patch by Tim Peters to speed up colorizing of big multiline strings. jpayne@69: jpayne@69: Tue Apr 20 17:32:52 1999 Guido van Rossum jpayne@69: jpayne@69: * extend.txt: jpayne@69: For an event 'foo-bar', the corresponding method must be called jpayne@69: foo_bar_event(). Therefore, fix the references to zoom_height() in jpayne@69: the example. jpayne@69: jpayne@69: * IdlePrefs.py: Restored the original IDLE color scheme. jpayne@69: jpayne@69: * PyShell.py, IdlePrefs.py, ColorDelegator.py, EditorWindow.py: jpayne@69: Color preferences code by Loren Luke (massaged by me somewhat) jpayne@69: jpayne@69: * SearchEngine.py: jpayne@69: Patch by Mark Favas: it fixes the search engine behaviour where an jpayne@69: unsuccessful search wraps around and re-searches that part of the file jpayne@69: between the start of the search and the end of the file - only really jpayne@69: an issue for very large files, but... (also removes a redundant jpayne@69: m.span() call). jpayne@69: jpayne@69: Mon Apr 19 16:26:02 1999 Guido van Rossum jpayne@69: jpayne@69: * TODO.txt: A few wishes are now fulfilled. jpayne@69: jpayne@69: * AutoIndent.py: Tim Peters implements some of my wishes: jpayne@69: jpayne@69: o Makes the tab key intelligently insert spaces when appropriate jpayne@69: (see Help list banter twixt David Ascher and me; idea stolen from jpayne@69: every other editor on earth ). jpayne@69: jpayne@69: o newline_and_indent_event trims trailing whitespace on the old jpayne@69: line (pymode and Codewright). jpayne@69: jpayne@69: o newline_and_indent_event no longer fooled by trailing whitespace or jpayne@69: comment after ":" (pymode, PTUI). jpayne@69: jpayne@69: o newline_and_indent_event now reduces the new line's indentation after jpayne@69: return, break, continue, raise and pass stmts (pymode). jpayne@69: jpayne@69: The last two are easy to fool in the presence of strings & jpayne@69: continuations, but pymode requires Emacs's high-powered C parsing jpayne@69: functions to avoid that in finite time. jpayne@69: jpayne@69: ====================================================================== jpayne@69: Python release 1.5.2c1, IDLE version 0.4 jpayne@69: ====================================================================== jpayne@69: jpayne@69: Wed Apr 7 18:41:59 1999 Guido van Rossum jpayne@69: jpayne@69: * README.txt, NEWS.txt: New version. jpayne@69: jpayne@69: * idlever.py: Version bump awaiting impending new release. jpayne@69: (Not much has changed :-( ) jpayne@69: jpayne@69: Mon Mar 29 14:52:28 1999 Guido van Rossum jpayne@69: jpayne@69: * ScriptBinding.py, PyShell.py: jpayne@69: At Tim Peters' recommendation, add a dummy flush() method to jpayne@69: PseudoFile. jpayne@69: jpayne@69: Thu Mar 11 23:21:23 1999 Guido van Rossum jpayne@69: jpayne@69: * PathBrowser.py: Don't crash when sys.path contains an empty string. jpayne@69: jpayne@69: * Attic/Outline.py: This file was never supposed to be part of IDLE. jpayne@69: jpayne@69: * PathBrowser.py: jpayne@69: - Don't crash in the case where a superclass is a string instead of a jpayne@69: pyclbr.Class object; this can happen when the superclass is jpayne@69: unrecognizable (to pyclbr), e.g. when module renaming is used. jpayne@69: jpayne@69: - Show a watch cursor when calling pyclbr (since it may take a while jpayne@69: recursively parsing imported modules!). jpayne@69: jpayne@69: Wed Mar 10 05:18:02 1999 Guido van Rossum jpayne@69: jpayne@69: * EditorWindow.py, Bindings.py: Add PathBrowser to File module jpayne@69: jpayne@69: * PathBrowser.py: "Path browser" - 4 scrolled lists displaying: jpayne@69: directories on sys.path jpayne@69: modules in selected directory jpayne@69: classes in selected module jpayne@69: methods of selected class jpayne@69: jpayne@69: Sinlge clicking in a directory, module or class item updates the next jpayne@69: column with info about the selected item. Double clicking in a jpayne@69: module, class or method item opens the file (and selects the clicked jpayne@69: item if it is a class or method). jpayne@69: jpayne@69: I guess eventually I should be using a tree widget for this, but the jpayne@69: ones I've seen don't work well enough, so for now I use the old jpayne@69: Smalltalk or NeXT style multi-column hierarchical browser. jpayne@69: jpayne@69: * MultiScrolledLists.py: jpayne@69: New utility: multiple scrolled lists in parallel jpayne@69: jpayne@69: * ScrolledList.py: - White background. jpayne@69: - Display "(None)" (or text of your choosing) when empty. jpayne@69: - Don't set the focus. jpayne@69: jpayne@69: ====================================================================== jpayne@69: Python release 1.5.2b2, IDLE version 0.3 jpayne@69: ====================================================================== jpayne@69: jpayne@69: Wed Feb 17 22:47:41 1999 Guido van Rossum jpayne@69: jpayne@69: * NEWS.txt: News in 0.3. jpayne@69: jpayne@69: * README.txt, idlever.py: Bump version to 0.3. jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: After all, we don't need to call the callbacks ourselves! jpayne@69: jpayne@69: * WindowList.py: jpayne@69: When deleting, call the callbacks *after* deleting the window from our list! jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Fix up the Windows menu via the new callback mechanism instead of jpayne@69: depending on menu post commands (which don't work when the menu is jpayne@69: torn off). jpayne@69: jpayne@69: * WindowList.py: jpayne@69: Support callbacks to patch up Windows menus everywhere. jpayne@69: jpayne@69: * ChangeLog: Oh, why not. Checking in the Emacs-generated change log. jpayne@69: jpayne@69: Tue Feb 16 22:34:17 1999 Guido van Rossum jpayne@69: jpayne@69: * ScriptBinding.py: jpayne@69: Only pop up the stack viewer when requested in the Debug menu. jpayne@69: jpayne@69: Mon Feb 8 22:27:49 1999 Guido van Rossum jpayne@69: jpayne@69: * WindowList.py: Don't crash if a window no longer exists. jpayne@69: jpayne@69: * TODO.txt: Restructured a bit. jpayne@69: jpayne@69: Mon Feb 1 23:06:17 1999 Guido van Rossum jpayne@69: jpayne@69: * PyShell.py: Add current dir or paths of file args to sys.path. jpayne@69: jpayne@69: * Debugger.py: Add canonic() function -- for brand new bdb.py feature. jpayne@69: jpayne@69: * StackViewer.py: Protect against accessing an empty stack. jpayne@69: jpayne@69: Fri Jan 29 20:44:45 1999 Guido van Rossum jpayne@69: jpayne@69: * ZoomHeight.py: jpayne@69: Use only the height to decide whether to zoom in or out. jpayne@69: jpayne@69: Thu Jan 28 22:24:30 1999 Guido van Rossum jpayne@69: jpayne@69: * EditorWindow.py, FileList.py: jpayne@69: Make sure the Tcl variables are shared between windows. jpayne@69: jpayne@69: * PyShell.py, EditorWindow.py, Bindings.py: jpayne@69: Move menu/key binding code from Bindings.py to EditorWindow.py, jpayne@69: with changed APIs -- it makes much more sense there. jpayne@69: Also add a new feature: if the first character of a menu label is jpayne@69: a '!', it gets a checkbox. Checkboxes are bound to Boolean Tcl variables jpayne@69: that can be accessed through the new getvar/setvar/getrawvar API; jpayne@69: the variable is named after the event to which the menu is bound. jpayne@69: jpayne@69: * Debugger.py: Add Quit button to the debugger window. jpayne@69: jpayne@69: * SearchDialog.py: jpayne@69: When find_again() finds exactly the current selection, it's a failure. jpayne@69: jpayne@69: * idle.py, Attic/idle: Rename idle -> idle.py jpayne@69: jpayne@69: Mon Jan 18 15:18:57 1999 Guido van Rossum jpayne@69: jpayne@69: * EditorWindow.py, WindowList.py: Only deiconify when iconic. jpayne@69: jpayne@69: * TODO.txt: Misc jpayne@69: jpayne@69: Tue Jan 12 22:14:34 1999 Guido van Rossum jpayne@69: jpayne@69: * testcode.py, Attic/test.py: jpayne@69: Renamed test.py to testcode.py so one can import Python's jpayne@69: test package from inside IDLE. (Suggested by Jack Jansen.) jpayne@69: jpayne@69: * EditorWindow.py, ColorDelegator.py: jpayne@69: Hack to close a window that is colorizing. jpayne@69: jpayne@69: * Separator.py: Vladimir Marangozov's patch: jpayne@69: The separator dances too much and seems to jump by arbitrary amounts jpayne@69: in arbitrary directions when I try to move it for resizing the frames. jpayne@69: This patch makes it more quiet. jpayne@69: jpayne@69: Mon Jan 11 14:52:40 1999 Guido van Rossum jpayne@69: jpayne@69: * TODO.txt: Some requests have been fulfilled. jpayne@69: jpayne@69: * EditorWindow.py: jpayne@69: Set the cursor to a watch when opening the class browser (which may jpayne@69: take quite a while, browsing multiple files). jpayne@69: jpayne@69: Newer, better center() -- but assumes no wrapping. jpayne@69: jpayne@69: * SearchBinding.py: jpayne@69: Got rid of debug print statement in goto_line_event(). jpayne@69: jpayne@69: * ScriptBinding.py: jpayne@69: I think I like it better if it prints the traceback even when it displays jpayne@69: the stack viewer. jpayne@69: jpayne@69: * Debugger.py: Bind ESC to close-window. jpayne@69: jpayne@69: * ClassBrowser.py: Use a HSeparator between the classes and the items. jpayne@69: Make the list of classes wider by default (40 chars). jpayne@69: Bind ESC to close-window. jpayne@69: jpayne@69: * Separator.py: jpayne@69: Separator classes (draggable divider between two panes). jpayne@69: jpayne@69: Sat Jan 9 22:01:33 1999 Guido van Rossum jpayne@69: jpayne@69: * WindowList.py: jpayne@69: Don't traceback when wakeup() is called when the window has been destroyed. jpayne@69: This can happen when a torn-of Windows menu references closed windows. jpayne@69: And Tim Peters claims that the Windows menu is his favorite to tear off... jpayne@69: jpayne@69: * EditorWindow.py: Allow tearing off of the Windows menu. jpayne@69: jpayne@69: * StackViewer.py: Close on ESC. jpayne@69: jpayne@69: * help.txt: Updated a bunch of things (it was mostly still 0.1!) jpayne@69: jpayne@69: * extend.py: Added ScriptBinding to standard bindings. jpayne@69: jpayne@69: * ScriptBinding.py: jpayne@69: This now actually works. See doc string. It can run a module (i.e. jpayne@69: import or reload) or debug it (same with debugger control). Output jpayne@69: goes to a fresh output window, only created when needed. jpayne@69: jpayne@69: ====================================================================== jpayne@69: Python release 1.5.2b1, IDLE version 0.2 jpayne@69: ====================================================================== jpayne@69: jpayne@69: Fri Jan 8 17:26:02 1999 Guido van Rossum jpayne@69: jpayne@69: * README.txt, NEWS.txt: What's new in this release. jpayne@69: jpayne@69: * Bindings.py, PyShell.py: jpayne@69: Paul Prescod's patches to allow the stack viewer to pop up when a jpayne@69: traceback is printed. jpayne@69: jpayne@69: Thu Jan 7 00:12:15 1999 Guido van Rossum jpayne@69: jpayne@69: * FormatParagraph.py: jpayne@69: Change paragraph width limit to 70 (like Emacs M-Q). jpayne@69: jpayne@69: * README.txt: jpayne@69: Separating TODO from README. Slight reformulation of features. No jpayne@69: exact release date. jpayne@69: jpayne@69: * TODO.txt: Separating TODO from README. jpayne@69: jpayne@69: Mon Jan 4 21:19:09 1999 Guido van Rossum jpayne@69: jpayne@69: * FormatParagraph.py: jpayne@69: Hm. There was a boundary condition error at the end of the file too. jpayne@69: jpayne@69: * SearchBinding.py: Hm. Add Unix binding for replace, too. jpayne@69: jpayne@69: * keydefs.py: Ran eventparse.py again. jpayne@69: jpayne@69: * FormatParagraph.py: Added Unix Meta-q key binding; jpayne@69: fix find_paragraph when at start of file. jpayne@69: jpayne@69: * AutoExpand.py: Added Meta-/ binding for Unix as alt for Alt-/. jpayne@69: jpayne@69: * SearchBinding.py: jpayne@69: Add unix binding for grep (otherwise the menu entry doesn't work!) jpayne@69: jpayne@69: * ZoomHeight.py: Adjusted Unix height to work with fvwm96. :=( jpayne@69: jpayne@69: * GrepDialog.py: Need to import sys! jpayne@69: jpayne@69: * help.txt, extend.txt, README.txt: Formatted some paragraphs jpayne@69: jpayne@69: * extend.py, FormatParagraph.py: jpayne@69: Add new extension to reformat a (text) paragraph. jpayne@69: jpayne@69: * ZoomHeight.py: Typo in Win specific height setting. jpayne@69: jpayne@69: Sun Jan 3 00:47:35 1999 Guido van Rossum jpayne@69: jpayne@69: * AutoIndent.py: Added something like Tim Peters' backspace patch. jpayne@69: jpayne@69: * ZoomHeight.py: Adapted to Unix (i.e., more hardcoded constants). jpayne@69: jpayne@69: Sat Jan 2 21:28:54 1999 Guido van Rossum jpayne@69: jpayne@69: * keydefs.py, idlever.py, idle.pyw, idle.bat, help.txt, extend.txt, extend.py, eventparse.py, ZoomHeight.py, WindowList.py, UndoDelegator.py, StackViewer.py, SearchEngine.py, SearchDialogBase.py, SearchDialog.py, ScrolledList.py, SearchBinding.py, ScriptBinding.py, ReplaceDialog.py, Attic/README, README.txt, PyShell.py, Attic/PopupMenu.py, OutputWindow.py, IOBinding.py, Attic/HelpWindow.py, History.py, GrepDialog.py, FileList.py, FrameViewer.py, EditorWindow.py, Debugger.py, Delegator.py, ColorDelegator.py, Bindings.py, ClassBrowser.py, AutoExpand.py, AutoIndent.py: jpayne@69: Checking in IDLE 0.2. jpayne@69: jpayne@69: Much has changed -- too much, in fact, to write down. jpayne@69: The big news is that there's a standard way to write IDLE extensions; jpayne@69: see extend.txt. Some sample extensions have been provided, and jpayne@69: some existing code has been converted to extensions. Probably the jpayne@69: biggest new user feature is a new search dialog with more options, jpayne@69: search and replace, and even search in files (grep). jpayne@69: jpayne@69: This is exactly as downloaded from my laptop after returning jpayne@69: from the holidays -- it hasn't even been tested on Unix yet. jpayne@69: jpayne@69: Fri Dec 18 15:52:54 1998 Guido van Rossum jpayne@69: jpayne@69: * FileList.py, ClassBrowser.py: jpayne@69: Fix the class browser to work even when the file is not on sys.path. jpayne@69: jpayne@69: Tue Dec 8 20:39:36 1998 Guido van Rossum jpayne@69: jpayne@69: * Attic/turtle.py: Moved to Python 1.5.2/Lib jpayne@69: jpayne@69: Fri Nov 27 03:19:20 1998 Guido van Rossum jpayne@69: jpayne@69: * help.txt: Typo jpayne@69: jpayne@69: * EditorWindow.py, FileList.py: Support underlining of menu labels jpayne@69: jpayne@69: * Bindings.py: jpayne@69: New approach, separate tables for menus (platform-independent) and key jpayne@69: definitions (platform-specific), and generating accelerator strings jpayne@69: automatically from the key definitions. jpayne@69: jpayne@69: Mon Nov 16 18:37:42 1998 Guido van Rossum jpayne@69: jpayne@69: * Attic/README: Clarify portability and main program. jpayne@69: jpayne@69: * Attic/README: Added intro for 0.1 release and append Grail notes. jpayne@69: jpayne@69: Mon Oct 26 18:49:00 1998 Guido van Rossum jpayne@69: jpayne@69: * Attic/turtle.py: root is now a global called _root jpayne@69: jpayne@69: Sat Oct 24 16:38:38 1998 Guido van Rossum jpayne@69: jpayne@69: * Attic/turtle.py: Raise the root window on reset(). jpayne@69: Different action on WM_DELETE_WINDOW is more likely to do the right thing, jpayne@69: allowing us to destroy old windows. jpayne@69: jpayne@69: * Attic/turtle.py: jpayne@69: Split the goto() function in two: _goto() is the internal one, jpayne@69: using Canvas coordinates, and goto() uses turtle coordinates jpayne@69: and accepts variable argument lists. jpayne@69: jpayne@69: * Attic/turtle.py: Cope with destruction of the window jpayne@69: jpayne@69: * Attic/turtle.py: Turtle graphics jpayne@69: jpayne@69: * Debugger.py: Use of Breakpoint class should be bdb.Breakpoint. jpayne@69: jpayne@69: Mon Oct 19 03:33:40 1998 Guido van Rossum jpayne@69: jpayne@69: * SearchBinding.py: jpayne@69: Speed up the search a bit -- don't drag a mark around... jpayne@69: jpayne@69: * PyShell.py: jpayne@69: Change our special entries from to . jpayne@69: Patch linecache.checkcache() to keep our special entries alive. jpayne@69: Add popup menu to all editor windows to set a breakpoint. jpayne@69: jpayne@69: * Debugger.py: jpayne@69: Use and pass through the 'force' flag to set_dict() where appropriate. jpayne@69: Default source and globals checkboxes to false. jpayne@69: Don't interact in user_return(). jpayne@69: Add primitive set_breakpoint() method. jpayne@69: jpayne@69: * ColorDelegator.py: jpayne@69: Raise priority of 'sel' tag so its foreground (on Windows) will take jpayne@69: priority over text colorization (which on Windows is almost the jpayne@69: same color as the selection background). jpayne@69: jpayne@69: Define a tag and color for breakpoints ("BREAK"). jpayne@69: jpayne@69: * Attic/PopupMenu.py: Disable "Open stack viewer" and "help" commands. jpayne@69: jpayne@69: * StackViewer.py: jpayne@69: Add optional 'force' argument (default 0) to load_dict(). jpayne@69: If set, redo the display even if it's the same dict. jpayne@69: jpayne@69: Fri Oct 16 21:10:12 1998 Guido van Rossum jpayne@69: jpayne@69: * StackViewer.py: Do nothing when loading the same dict as before. jpayne@69: jpayne@69: * PyShell.py: Details for debugger interface. jpayne@69: jpayne@69: * Debugger.py: jpayne@69: Restructured and more consistent. Save checkboxes across instantiations. jpayne@69: jpayne@69: * EditorWindow.py, Attic/README, Bindings.py: jpayne@69: Get rid of conflicting ^X binding. Use ^W. jpayne@69: jpayne@69: * Debugger.py, StackViewer.py: jpayne@69: Debugger can now show local and global variables. jpayne@69: jpayne@69: * Debugger.py: Oops jpayne@69: jpayne@69: * Debugger.py, PyShell.py: Better debugger support (show stack etc). jpayne@69: jpayne@69: * Attic/PopupMenu.py: Follow renames in StackViewer module jpayne@69: jpayne@69: * StackViewer.py: jpayne@69: Rename classes to StackViewer (the widget) and StackBrowser (the toplevel). jpayne@69: jpayne@69: * ScrolledList.py: Add close() method jpayne@69: jpayne@69: * EditorWindow.py: Clarify 'Open Module' dialog text jpayne@69: jpayne@69: * StackViewer.py: Restructured into a browser and a widget. jpayne@69: jpayne@69: Thu Oct 15 23:27:08 1998 Guido van Rossum jpayne@69: jpayne@69: * ClassBrowser.py, ScrolledList.py: jpayne@69: Generalized the scrolled list which is the base for the class and jpayne@69: method browser into a separate class in its own module. jpayne@69: jpayne@69: * Attic/test.py: Cosmetic change jpayne@69: jpayne@69: * Debugger.py: Don't show function name if there is none jpayne@69: jpayne@69: Wed Oct 14 03:43:05 1998 Guido van Rossum jpayne@69: jpayne@69: * Debugger.py, PyShell.py: Polish the Debugger GUI a bit. jpayne@69: Closing it now also does the right thing. jpayne@69: jpayne@69: Tue Oct 13 23:51:13 1998 Guido van Rossum jpayne@69: jpayne@69: * Debugger.py, PyShell.py, Bindings.py: jpayne@69: Ad primitive debugger interface (so far it will step and show you the jpayne@69: source, but it doesn't yet show the stack). jpayne@69: jpayne@69: * Attic/README: Misc jpayne@69: jpayne@69: * StackViewer.py: Whoops -- referenced self.top before it was set. jpayne@69: jpayne@69: * help.txt: Added history and completion commands. jpayne@69: jpayne@69: * help.txt: Updated jpayne@69: jpayne@69: * FileList.py: Add class browser functionality. jpayne@69: jpayne@69: * StackViewer.py: jpayne@69: Add a close() method and bind to WM_DELETE_WINDOW protocol jpayne@69: jpayne@69: * PyShell.py: Clear the linecache before printing a traceback jpayne@69: jpayne@69: * Bindings.py: Added class browser binding. jpayne@69: jpayne@69: * ClassBrowser.py: Much improved, much left to do. jpayne@69: jpayne@69: * PyShell.py: Make the return key do what I mean more often. jpayne@69: jpayne@69: * ClassBrowser.py: jpayne@69: Adding the beginnings of a Class browser. Incomplete, yet. jpayne@69: jpayne@69: * EditorWindow.py, Bindings.py: jpayne@69: Add new command, "Open module". You select or type a module name, jpayne@69: and it opens the source. jpayne@69: jpayne@69: Mon Oct 12 23:59:27 1998 Guido van Rossum jpayne@69: jpayne@69: * PyShell.py: Subsume functionality from Popup menu in Debug menu. jpayne@69: Other stuff so the PyShell window can be resurrected from the Windows menu. jpayne@69: jpayne@69: * FileList.py: Get rid of PopUp menu. jpayne@69: Create a simple Windows menu. (Imperfect when Untitled windows exist.) jpayne@69: Add wakeup() method: deiconify, raise, focus. jpayne@69: jpayne@69: * EditorWindow.py: Generalize menu creation. jpayne@69: jpayne@69: * Bindings.py: Add Debug and Help menu items. jpayne@69: jpayne@69: * EditorWindow.py: Added a menu bar to every window. jpayne@69: jpayne@69: * Bindings.py: Add menu configuration to the event configuration. jpayne@69: jpayne@69: * Attic/PopupMenu.py: Pass a root to the help window. jpayne@69: jpayne@69: * SearchBinding.py: jpayne@69: Add parent argument to 'go to line number' dialog box. jpayne@69: jpayne@69: Sat Oct 10 19:15:32 1998 Guido van Rossum jpayne@69: jpayne@69: * StackViewer.py: jpayne@69: Add a label at the top showing (very basic) help for the stack viewer. jpayne@69: Add a label at the bottom showing the exception info. jpayne@69: jpayne@69: * Attic/test.py, Attic/idle: Add Unix main script and test program. jpayne@69: jpayne@69: * idle.pyw, help.txt, WidgetRedirector.py, UndoDelegator.py, StackViewer.py, SearchBinding.py, Attic/README, PyShell.py, Attic/PopupMenu.py, Percolator.py, Outline.py, IOBinding.py, History.py, Attic/HelpWindow.py, FrameViewer.py, FileList.py, EditorWindow.py, Delegator.py, ColorDelegator.py, Bindings.py, AutoIndent.py, AutoExpand.py: jpayne@69: Initial checking of Tk-based Python IDE. jpayne@69: Features: text editor with syntax coloring and undo; jpayne@69: subclassed into interactive Python shell which adds history. jpayne@69: