summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/configDialog.py
Commit message (Collapse)AuthorAgeFilesLines
* replace has_key with 'in' operatorBenjamin Peterson2009-10-091-5/+5
|
* #6076 Add a title to the IDLE Preferences window.Amaury Forgeot d'Arc2009-07-151-0/+1
|
* Fixes issues 3883 and 5194Ronald Oussoren2009-03-041-4/+12
|
* Tkinter rename reversal: remove tkinter package, adapt imports and docs.Georg Brandl2008-05-201-4/+2
|
* Tkinter rename, step 2: fix imports and add stub modules.Georg Brandl2008-05-161-2/+4
|
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
|
* Configured selection highlighting colors were ignored; updating highlightingKurt B. Kaiser2008-02-151-3/+0
| | | | | in the config dialog would cause non-Python files to be colored as if they were Python source; improve use of ColorDelagator. Patch 1334. Tal Einat.
* Configure Dialog: improved layout for keybinding. Patch 1457 Tal Einat.Kurt B. Kaiser2007-12-281-20/+22
|
* check in Tal Einat's update to tabpage.pyKurt B. Kaiser2007-10-301-9/+8
| | | | | | | | Patch 1612746 M configDialog.py M NEWS.txt AM tabbedpages.py
* Allow cursor color change w/o restart. Patch 1725576 Tal Einat.Kurt B. Kaiser2007-10-101-0/+3
|
* configDialog cleanup. Patch 1730217 Tal Einat.Kurt B. Kaiser2007-10-041-40/+42
|
* Merge IDLE-syntax-branch r39668:41449 into trunkKurt B. Kaiser2005-11-181-1/+9
| | | | | | | | | | | | | | | | 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-221-1/+1
|
* Removed ability to configure tabs indent from Options dialog. This 'feature'Kurt B. Kaiser2005-01-311-78/+9
| | | | | | | | | | | | | | | | | 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-161-0/+3
| | | | | | | 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-041-0/+18
|
* M EditorWindow.pyKurt B. Kaiser2004-04-111-2/+2
| | | | | | | | | 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-081-10/+14
| | | | | | | | | | | | 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-121-2/+2
| | | | From SF patch #852334.
* SF patch #768187: replace apply(f, args, kwds) with f(*args, **kwds)Raymond Hettinger2003-07-091-3/+2
|
* 1. SF Bug 661676Kurt B. Kaiser2003-05-261-6/+9
| | | | | | | | | | | 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-261-7/+31
| | | | | | | | | | | | | | 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-101-0/+23
| | | | | | M IOBinding.py M config-main.def M configDialog.py
* M Bindings.pyKurt B. Kaiser2003-01-141-12/+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-101-20/+28
| | | | | | | | | | | | | 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-311-88/+88
|
* [ 629984 ] Smaller font sizes not supportedChui Tey2002-11-041-1/+1
|
* MERGE DS_RPC_BRANCH into MAIN:Kurt B. Kaiser2002-09-141-2/+2
| | | | | configDialog.py AutoIndent merged 21Jul
* further work on new config system;Steven M. Gava2002-03-271-4/+0
| | | | recent files menu
* further work on new config system;Steven M. Gava2002-03-271-16/+23
| | | | user defined help items
* further work on dynamic reconfiguration;Steven M. Gava2002-03-181-0/+1
| | | | keybindings
* fixes to tabwidth code removalSteven M. Gava2002-03-121-6/+6
|
* remove tabwidth (for tabs) config stuff,Steven M. Gava2002-03-121-11/+11
| | | | | 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-121-1/+1
| | | | editor font
* remove debug cruftSteven M. Gava2002-03-051-6/+0
|
* further work on new config systemSteven M. Gava2002-03-051-3/+14
|
* First work on making config changes dynamic,Steven M. Gava2002-03-021-8/+7
| | | | dynamic theme changes
* handle user theme and key set deletionSteven M. Gava2002-02-181-8/+78
|
* improvement to keybinding re-use checkSteven M. Gava2002-02-111-1/+10
|
* base GetHighlight on GetThemeDict for better defaultsSteven M. Gava2002-02-111-2/+0
|
* further work on config savingSteven M. Gava2002-02-111-35/+0
|
* further work on config savingSteven M. Gava2002-02-111-68/+199
|
* further work on config system and config savingSteven M. Gava2002-02-051-64/+151
|
* more work on configuration savingSteven M. Gava2002-02-011-24/+23
|
* further work on config savingSteven M. Gava2002-01-291-13/+29
|
* further work on saving configsSteven M. Gava2002-01-241-22/+97
|
* more on config savingSteven M. Gava2002-01-221-16/+30
|
* further work on config savingSteven M. Gava2002-01-221-30/+106
|
* extension config reading by configDialog andSteven M. Gava2002-01-211-125/+163
| | | | beginning of configuration saving
* further work on keybinding configurationSteven M. Gava2002-01-191-3/+2
|