[issue27465] IDLE:Make help source menu entries unique and sorted.

2019-11-14 Thread Tal Einat


Change by Tal Einat :


--
versions: +Python 3.7, Python 3.8, Python 3.9 -Python 3.6

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2019-11-14 Thread Tal Einat


Tal Einat  added the comment:

> 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, 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.

--
nosy: +taleinat

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2019-11-08 Thread Zackery Spytz


Zackery Spytz  added the comment:

I have created a pull request for this issue.  Please consider taking a look.

--
nosy: +ZackerySpytz

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2019-11-08 Thread Zackery Spytz


Change by Zackery Spytz :


--
keywords: +patch
pull_requests: +16601
stage: test needed -> patch review
pull_request: https://github.com/python/cpython/pull/17093

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2018-05-08 Thread Cheryl Sabella

Cheryl Sabella  added the comment:

> 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?

--
nosy: +csabella

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2017-06-19 Thread Terry J. Reedy

Changes by Terry J. Reedy :


--
components: +IDLE

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2016-07-07 Thread Terry J. Reedy

Terry J. Reedy added the comment:

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.

--
dependencies: +IDLE: add base Query dialog with ttk widgets

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue27465] IDLE:Make help source menu entries unique and sorted.

2016-07-07 Thread Terry J. Reedy

New submission from Terry J. Reedy:

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.

--
assignee: terry.reedy
messages: 269965
nosy: terry.reedy
priority: normal
severity: normal
stage: test needed
status: open
title: IDLE:Make help source menu entries unique and sorted.
type: behavior
versions: Python 3.6

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com