This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2016年07月08日 01:58 by terry.reedy, last changed 2022年04月11日 14:58 by admin.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 17093 | open | ZackerySpytz, 2019年11月08日 21:34 | |
| Messages (5) | |||
|---|---|---|---|
| msg269965 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2016年07月08日 01:58 | |
The 'General' tab of the IDLE configuration menu allows a user to add entries to the Help menu that display a text when clicked. A user might want more than one text available for a given 'topic', such as a doc and how-to for a package. However, there is no need to have duplicate entries, as up to 30 chars are allowed. "Package - doc" and "Package - how" would be clearer than "Package" and "Package". Issue 27380 makes checking for unique entries easy as that is already done for user configuration file section names and the same base class is now used for help source names. Currently, names are displayed in the order added. I believe sorting would be better, especially when one adds more than 2 entries. That should also be easy. Existing duplicates would not be a problem for IDLE as the check would only apply when adding or editing an item. Python's stable list.sort would keep existing duplicates in the same relative order. I will *not* use the doc path to break ties. |
|||
| msg269966 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2016年07月08日 02:10 | |
The IDLE doc currently says "Additional help sources may be added here with the Configure IDLE dialog under the General tab." Revise to something like Additional help sources Menu items for display here are added on the General tap of Options => Configure IDLE. Menu entries should be unique (new in 3.6) and will be sorted. Documents can be located either on the current machine or on the internet. The allowed file types may depend on the system. Local file paths are checked when submitted; internet addresses are not. |
|||
| msg316296 - (view) | Author: Cheryl Sabella (cheryl.sabella) * (Python committer) | Date: 2018年05月08日 19:44 | |
> Currently, names are displayed in the order added. I believe sorting would be better, especially when one adds more than 2 entries. That should also be easy. I'm wondering if it would be worthwhile to add Drag and Drop functionality to the Help listbox to allow users to move the items into any order they want? |
|||
| msg356274 - (view) | Author: Zackery Spytz (ZackerySpytz) * (Python triager) | Date: 2019年11月08日 23:55 | |
I have created a pull request for this issue. Please consider taking a look. |
|||
| msg356606 - (view) | Author: Tal Einat (taleinat) * (Python committer) | Date: 2019年11月14日 13:18 | |
> I'm wondering if it would be worthwhile to add Drag and Drop functionality to the Help listbox to allow users to move the items into any order they want? I agree that allowing a user to set the order is preferable. Rather than drag&drop, we could just add up/down buttons to allow re-ordering. I suggest making ordering a separate issue, and accepting a simplified version of the PR which just ensures the names are unique. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:33 | admin | set | github: 71652 |
| 2019年11月14日 13:30:37 | taleinat | set | versions: + Python 3.7, Python 3.8, Python 3.9, - Python 3.6 |
| 2019年11月14日 13:18:49 | taleinat | set | nosy:
+ taleinat messages: + msg356606 |
| 2019年11月08日 23:55:40 | ZackerySpytz | set | nosy:
+ ZackerySpytz messages: + msg356274 |
| 2019年11月08日 21:34:28 | ZackerySpytz | set | keywords:
+ patch stage: test needed -> patch review pull_requests: + pull_request16601 |
| 2018年05月08日 19:44:51 | cheryl.sabella | set | nosy:
+ cheryl.sabella messages: + msg316296 |
| 2017年06月19日 18:44:12 | terry.reedy | set | components: + IDLE |
| 2016年07月08日 02:10:03 | terry.reedy | set | dependencies:
+ IDLE: add base Query dialog with ttk widgets messages: + msg269966 |
| 2016年07月08日 01:58:46 | terry.reedy | create | |