Issue 20403: Idle options dialog: add help

Issue20403

Created on 2014-01-27 03:41 by terry.reedy, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
help-button.patch Saimadhav.Heblikar, 2014-02-22 19:54 review
Messages (4)
msg209383 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2014-01-27 03:41
The Idle options/configuration dialog had a useless Help button that did nothing. #17721 commented out the creation and packing of the button. This issue is about making the Help method work. Perhaps it should open the general help document at the options section. Or perhaps this should be a separate file. Once Help() does something, re-enable the 4 disabled lines.
msg211946 - (view) Author: Saimadhav Heblikar (Saimadhav.Heblikar) * Date: 2014-02-22 19:54
This patch brings back the help button to idle config dialog.
It uses regex to "get" the correct section from the help.txt file(the same file used to display IDLE help).
To make it more useful,i have added few help sentences to each of the tabs present in the idle config dialog.
msg296391 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2017-06-19 23:49
Help has been restored, but perhaps not with this patch.  Before closing, I should check if there is anything I want to use.
msg370911 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2020-06-07 20:42
The help file is help.html.  Pulling snippet from this would be rather awkward.  The suggested additions to help.txt more or less duplicate the Setting preferences subsection.  So closing.
History
Date User Action Args
2022-04-11 14:57:57adminsetgithub: 64602
2020-06-07 20:42:29terry.reedysetstatus: open -> closed
resolution: out of date
messages: + msg370911

stage: needs patch -> resolved

2017-06-19 23:49:24terry.reedysetassignee: terry.reedy
messages: + msg296391
components: + IDLE
versions: + Python 3.6, Python 3.7, - Python 2.7, Python 3.3, Python 3.4
2014-02-22 19:54:37Saimadhav.Heblikarsetfiles: + help-button.patch

nosy: + Saimadhav.Heblikar
messages: + msg211946

keywords: + patch

2014-01-27 03:41:27terry.reedycreate