[issue15808] Possibility of setting custom key bindings for "Additional help sources" menu items

2017-06-29 Thread Terry J. Reedy

Changes by Terry J. Reedy :


--
assignee:  -> terry.reedy
versions: +Python 3.6, Python 3.7 -Python 2.7, Python 3.4, Python 3.5

___
Python tracker 

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



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2014-10-02 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
versions: +Python 3.5 -Python 3.2, Python 3.3

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



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2014-10-02 Thread Terry J. Reedy

Changes by Terry J. Reedy tjre...@udel.edu:


--
nosy: +terry.reedy

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



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-10-24 Thread Roger Serwy

Changes by Roger Serwy roger.se...@gmail.com:


--
nosy: +serwy

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-08-29 Thread Rostyslav Dzinko

New submission from Rostyslav Dzinko:

There's a possibility to add additional help sources in IDLE via

Options - Configure IDLE... - General - Additional Help Sources

Use case:

 If someone wants to download certain version of Python documentation in HTML 
 and specify local index.html to be opened by custom menu item which appears 
 the in Help menu.

Problem:

 It's not possible to assign custom hot-key (Options - Configure IDLE... - 
 Keys) for such menu items or reassign F1 to that new menu-item, which 
 actually makes sense when talking in context of the use case specified above.

This use case was taken from real life (stackoverflow site):

http://stackoverflow.com/questions/12174255/linking-offline-documentation-to-idle-linux

--
components: IDLE
messages: 169365
nosy: Rostyslav.Dzinko
priority: normal
severity: normal
status: open
title: Possibility of setting custom key bindings for Additional help sources 
menu items
type: enhancement
versions: 3rd party, Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 
3.3, Python 3.4

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-08-29 Thread Rostyslav Dzinko

Changes by Rostyslav Dzinko rostislav.dzi...@gmail.com:


--
versions:  -3rd party

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-08-29 Thread Ned Deily

Ned Deily added the comment:

Actually, IDLE does have code to look for an on-disk copy of the html-formatted 
Python documentation set but the paths are platform-specific and, in the Linux 
case, are out-of-date for some distributions at least.  For Linux platforms it 
looks for `index.html` in either `/var/www/html/python` or 
`/usr/share/doc/python-docs-x.y/Doc/`.  On current Debian systems, for example, 
the Python doc package is installed in `/usr/share/doc/pythonx.y-doc/html`.  If 
you install the doc packages and then create a link, IDLE should find the docs 
off-line when you select `Python Docs` from the `Help` manual.  For example, 
for Python 3.3 you *could* do:

sudo aptitude install python3.3-doc
sudo mkdir -p /var/www/html/
sudo ln -s /usr/share/doc/python3.3-doc/html python

That said, the default locations should be updated. And perhaps a more useful 
customization would be to add a user configuration option for where to look for 
the on-disk copy of the docs rather than adding another hot key. (Also, older 
versions of Python are in security fix mode only.)

--
nosy: +ned.deily
stage:  - needs patch
versions:  -Python 2.6, Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-08-29 Thread Ned Deily

Ned Deily added the comment:

Here's a patch to update the doc paths to include current ones for 
Debian/Ubuntu and Fedora.  The patch will have to be tweaked a bit for 3.2/2.7 
to change sys.base_prefix to sys.prefix.

--
keywords: +patch
stage: needs patch - patch review
Added file: http://bugs.python.org/file27051/issue15808_idle_doc_paths.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-08-29 Thread Ned Deily

Changes by Ned Deily n...@acm.org:


Removed file: http://bugs.python.org/file27051/issue15808_idle_doc_paths.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue15808] Possibility of setting custom key bindings for Additional help sources menu items

2012-08-29 Thread Ned Deily

Changes by Ned Deily n...@acm.org:


Added file: http://bugs.python.org/file27052/issue15808_idle_doc_paths.patch

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue15808
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com