aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/idlelib/configDialog.py
Commit message (Collapse)AuthorAge
* Conform to py3k dict.{keys, items, values} with some advice from 2b3Kurt B. Kaiser2007-08-23
| | | | | | | | | | | | | | | | | M idlelib/configHandler.py M idlelib/ColorDelegator.py M idlelib/Delegator.py M idlelib/ObjectBrowser.py M idlelib/PyShell.py M idlelib/Debugger.py M idlelib/configDialog.py M idlelib/StackViewer.py M idlelib/keybindingDialog.py M idlelib/tabpage.py M idlelib/EditorWindow.py M idlelib/WindowList.py M idlelib/RemoteDebugger.py M idlelib/dynOptionMenuWidget.py
* Switch to absolute imports to support direct execution of modules. ManyKurt B. Kaiser2007-08-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | IDLE modules have main() or test() functions which are essential for testing. M idlelib/AutoCompleteWindow.py M idlelib/UndoDelegator.py M idlelib/Bindings.py M idlelib/AutoComplete.py M idlelib/configHandler.py M idlelib/HyperParser.py M idlelib/ColorDelegator.py M idlelib/ObjectBrowser.py M idlelib/ZoomHeight.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/Debugger.py M idlelib/configDialog.py M idlelib/StackViewer.py M idlelib/ReplaceDialog.py M idlelib/ScriptBinding.py M idlelib/GrepDialog.py M idlelib/EditorWindow.py M idlelib/FormatParagraph.py M idlelib/OutputWindow.py M idlelib/aboutDialog.py M idlelib/IdleHistory.py M idlelib/PathBrowser.py M idlelib/ClassBrowser.py M idlelib/CallTips.py M idlelib/FileList.py M idlelib/idle.py M idlelib/CodeContext.py M idlelib/SearchDialog.py M idlelib/RemoteObjectBrowser.py M idlelib/RemoteDebugger.py M idlelib/TreeWidget.py M idlelib/run.py M idlelib/Percolator.py M idlelib/macosxSupport.py
* Merged revisions 56443-56466 via svnmerge fromGuido van Rossum2007-07-20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/p3yk ................ r56454 | kurt.kaiser | 2007-07-18 22:26:14 -0700 (Wed, 18 Jul 2007) | 2 lines Make relative imports explicit for py3k ................ r56455 | kurt.kaiser | 2007-07-18 23:12:15 -0700 (Wed, 18 Jul 2007) | 2 lines Was modifying dict during iteration. ................ r56457 | guido.van.rossum | 2007-07-19 07:33:19 -0700 (Thu, 19 Jul 2007) | 2 lines Fix failing test. ................ r56466 | guido.van.rossum | 2007-07-19 20:58:16 -0700 (Thu, 19 Jul 2007) | 35 lines Merged revisions 56413-56465 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........ r56439 | georg.brandl | 2007-07-17 23:37:55 -0700 (Tue, 17 Jul 2007) | 2 lines Use "Unix" as platform name, not "UNIX". ........ r56441 | guido.van.rossum | 2007-07-18 10:19:14 -0700 (Wed, 18 Jul 2007) | 3 lines SF patch# 1755885 by Kurt Kaiser: show location of Unicode escape errors. (Slightly tweaked for style and refcounts.) ........ r56444 | kurt.kaiser | 2007-07-18 12:58:42 -0700 (Wed, 18 Jul 2007) | 2 lines Fix failing unicode test caused by change to ast.c at r56441 ........ r56451 | georg.brandl | 2007-07-18 15:36:53 -0700 (Wed, 18 Jul 2007) | 2 lines Add description for wave.setcomptype() values ........ r56456 | walter.doerwald | 2007-07-19 06:04:38 -0700 (Thu, 19 Jul 2007) | 3 lines Document that codecs.lookup() returns a CodecInfo object. (fixes SF bug #1754453). ........ r56463 | facundo.batista | 2007-07-19 16:57:38 -0700 (Thu, 19 Jul 2007) | 6 lines Added a select.select call in the test server loop to make sure the socket is ready to be read from before attempting a read (this prevents an error 10035 on some Windows platforms). [GSoC - Alan McIntyre] ........ ................
* Remove functions in string module that are also string methods. Also remove:Neal Norwitz2007-04-17
| | | | | * all calls to functions in the string module (except maketrans) * everything from stropmodule except for maketrans() which is still used
* Remove has_key() references from idlelib. IDLE still doesn't run dueGuido van Rossum2006-08-22
| | | | to relative import issues. Any volunteers?
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-18
| | | | | | | | | | | | | | | | A idlelib/AutoCompleteWindow.py A idlelib/AutoComplete.py A idlelib/HyperParser.py M idlelib/PyShell.py M idlelib/ParenMatch.py M idlelib/configDialog.py M idlelib/EditorWindow.py M idlelib/PyParse.py M idlelib/CallTips.py M idlelib/CallTipWindow.py M idlelib/run.py M idlelib/config-extensions.def A idlelib/MultiCall.py
* Fix all wrong instances of "it's".Georg Brandl2005-07-22
|
* Removed ability to configure tabs indent from Options dialog. This 'feature'Kurt B. Kaiser2005-01-31
| | | | | | | | | | | | | | | | | has never worked and no one has complained. It is still possible to set a default tabs (v. spaces) indent 'manually' via config-main.def (or to turn on tabs for the current EditorWindow via the Format menu) but IDLE will encourage indentation via spaces. Enable setting the indentation width using the Options dialog. Bug # 783877 Remove some commented out old code from configDialog.py (related to old methods for invoking the HelpBrowser). M EditorWindow.py M NEWS.txt M configHandler.py
* Saving a Keyset w/o making changes (by using the "Save as New Custom Key Set"Kurt B. Kaiser2004-11-16
| | | | | | | button) caused IDLE to fail on restart (no new keyset was created in config-keys.cfg). Also true for Theme/highlights. Python Bug 1064535. M configDialog.py
* SF patch #961387: Make IDLE's paragraph reformatting width configurableRaymond Hettinger2004-06-04
|
* M EditorWindow.pyKurt B. Kaiser2004-04-11
| | | | | | | | | M IOBinding.py M NEWS.txt M configDialog.py - If nulls somehow got into the strings in recent-files.lst EditorWindow.update_recent_files_list() was failing. Python Bug 931336.
* Add a highlight theme for builtin keywords. Python Patch 805830 Nigel RoweKurt B. Kaiser2004-03-08
| | | | | | | | | | | | M ClassBrowser.py M ColorDelegator.py M EditorWindow.py M NEWS.txt M PyShell.py M TreeWidget.py M config-highlight.def M configDialog.py M configHandler.py
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-12
| | | | From SF patch #852334.
* SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds)Raymond Hettinger2003-07-09
|
* 1. SF Bug 661676Kurt B. Kaiser2003-05-26
| | | | | | | | | | | The default font is not highlighted in the Options dialog when IDLEfork is first installed. 2. Reduce default font to 10 pt and increase default window height to give a better initial impression on Windows. M config-main.def M configDialog.py
* Bruce Sherwood RFE/PatchKurt B. Kaiser2003-05-26
| | | | | | | | | | | | | | SF 661318 Adds autosave capability to IDLE and IDLE configuration dialog. User can Run/F5 without explicit save dialog. The default is to require the user to confirm the save. M ScriptBinding.py M config-main.def M configDialog.py
* [ SF 710733 - Martin v. Loewis] Improving source encoding dialogKurt B. Kaiser2003-05-10
| | | | | | M IOBinding.py M config-main.def M configDialog.py
* M Bindings.pyKurt B. Kaiser2003-01-14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | M EditorWindow.py M NEWS.txt M config-main.def M configDialog.py M configHandler.py M configHelpSourceEdit.py M configSectionNameDialog.py - Change default: IDLE now starts with Python Shell. - Removed the File Path from the Additional Help Sources scrolled list. - Add capability to access Additional Help Sources on the web if the Help File Path begins with //http or www. (Otherwise local path is validated, as before.) - Additional Help Sources were not being posted on the Help menu in the order entered. Implement sorting the list by [HelpFiles] 'option' number. - Add Browse button to New Help Source dialog. Arrange to start in Python/Doc if platform is Windows, otherwise start in current directory. - Put the Additional Help Sources directly on the Help menu instead of in an Extra Help cascade menu. Rearrange the Help menu so the Additional Help Sources come last. Update help.txt appropriately. - Fix Tk root pop-ups in configSectionNameDialog.py and configDialog.py
* M configDialog.pyKurt B. Kaiser2003-01-10
| | | | | | | | | | | | | M configHelpSourceEdit.py 1. Attach configHelpSourceEdit error dialogs to parent to avoid Tk root pop-ups. 2. Make configHelpSourceEdit OK button the default and bind <Return>. 3. Reformat configHelpSourceEdit. 4. ConfigDialog.SaveAllChangedConfig() had a bug which caused additional help sources to be deleted when other config items were changed. 4. Uniform capitalization in configDialog. 5. Update configDialog doc string.
* Whitespace NormalizationKurt B. Kaiser2002-12-31
|
* [ 629984 ] Smaller font sizes not supportedChui Tey2002-11-04
|
* MERGE DS_RPC_BRANCH into MAIN:Kurt B. Kaiser2002-09-14
| | | | | configDialog.py AutoIndent merged 21Jul
* further work on new config system;Steven M. Gava2002-03-27
| | | | recent files menu
* further work on new config system;Steven M. Gava2002-03-27
| | | | user defined help items
* further work on dynamic reconfiguration;Steven M. Gava2002-03-18
| | | | keybindings
* fixes to tabwidth code removalSteven M. Gava2002-03-12
|
* remove tabwidth (for tabs) config stuff,Steven M. Gava2002-03-12
| | | | | because of the way the tk text widget handles tabs they must remain a fixed size in idle
* further work on dynamic config changes;Steven M. Gava2002-03-12
| | | | editor font
* remove debug cruftSteven M. Gava2002-03-05
|
* further work on new config systemSteven M. Gava2002-03-05
|
* First work on making config changes dynamic,Steven M. Gava2002-03-02
| | | | dynamic theme changes
* handle user theme and key set deletionSteven M. Gava2002-02-18
|
* improvement to keybinding re-use checkSteven M. Gava2002-02-11
|
* base GetHighlight on GetThemeDict for better defaultsSteven M. Gava2002-02-11
|
* further work on config savingSteven M. Gava2002-02-11
|
* further work on config savingSteven M. Gava2002-02-11
|
* further work on config system and config savingSteven M. Gava2002-02-05
|
* more work on configuration savingSteven M. Gava2002-02-01
|
* further work on config savingSteven M. Gava2002-01-29
|
* further work on saving configsSteven M. Gava2002-01-24
|
* more on config savingSteven M. Gava2002-01-22
|
* further work on config savingSteven M. Gava2002-01-22
|
* extension config reading by configDialog andSteven M. Gava2002-01-21
| | | | beginning of configuration saving
* further work on keybinding configurationSteven M. Gava2002-01-19
|
* keybinding configurationSteven M. Gava2002-01-19
|
* keybinding configurationSteven M. Gava2002-01-19
|
* loading core keybindings via new config system plusSteven M. Gava2002-01-04
| | | | further devel of highlight handling
* further development of highlighting and editor preference handling,Steven M. Gava2002-01-03
| | | | plus misc fixes cleanups for new config system
* changes to use new tabpages classesSteven M. Gava2001-12-05
|
* back in harness on new config systemSteven M. Gava2001-11-21
|