[issue25198] Idle: improve idle.html help viewer.

2018-04-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: The files uploaded 2015-09-24 and 27 were merged later the same day. The merge in between on 2015-09-25 was shorter and not uploaded separately. I opened #33396 as an index issue for the other items and any new ones. I open #33397 for font sizing and chang

[issue25198] Idle: improve idle.html help viewer.

2018-04-30 Thread Cheryl Sabella
Cheryl Sabella added the comment: I've created PR6665 for the first bullet item. * Font size should initially reflect user's size choice. Possibly change with control-mousewheel. -- nosy: +csabella stage: patch review -> needs patch ___ Python tra

[issue25198] Idle: improve idle.html help viewer.

2018-04-30 Thread Cheryl Sabella
Change by Cheryl Sabella : -- pull_requests: +6359 stage: needs patch -> patch review ___ Python tracker ___ ___ Python-bugs-list mai

[issue25198] Idle: improve idle.html help viewer.

2017-06-19 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +IDLE ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.p

[issue25198] Idle: improve idle.html help viewer.

2015-09-27 Thread Mark Roseman
Mark Roseman added the comment: Good catch about yview for text widgets! -- ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue25198] Idle: improve idle.html help viewer.

2015-09-27 Thread Terry J. Reedy
Terry J. Reedy added the comment: By reading http://www.tcl.tk/man/tcl8.6/TkCmd/text.htm I discovered that Text.yview(index) puts the line with index at the top of the windows, given enough line below to fill the window. This fixes another glitch. Still left: the original 3 items (msg251181),

[issue25198] Idle: improve idle.html help viewer.

2015-09-27 Thread Roundup Robot
Roundup Robot added the comment: New changeset 40bab637295d by Terry Jan Reedy in branch '2.7': Issue #25198: When using the Idle dov TOC menu, put the section title at the https://hg.python.org/cpython/rev/40bab637295d New changeset 5b635a3ca3d5 by Terry Jan Reedy in branch '3.4': Issue #25198:

[issue25198] Idle: improve idle.html help viewer.

2015-09-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Had to adjust number of line by 3/4 because average 4/3 as high as in editor due to taller header lines and extra interline spacing. Net result for me, using 12 pitch in editor also, is box size within 5%. -- ___ P

[issue25198] Idle: improve idle.html help viewer.

2015-09-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset c1eccae07977 by Terry Jan Reedy in branch '2.7': Issue #25198: Idle doc viewer now uses user width and height setting. https://hg.python.org/cpython/rev/c1eccae07977 New changeset 1c119da20663 by Terry Jan Reedy in branch '3.4': Issue #25198: Idle d

[issue25198] Idle: improve idle.html help viewer.

2015-09-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Another minor glitch: in a browser, each press of up or down arrow, when there is no cursor (after clicking outside of an entry box like this one), moves text up or down. (3 lines for me in FF, even though wheel click moved more) In an editor, each press move

[issue25198] Idle: improve idle.html help viewer.

2015-09-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Fixed. I added a light background as with Sphinx html. I am delighted with how well this is working so far. I like the little always-there [TOC] button better than the browser sidebar. Besides making it easy to verify the look of doc changes, I think it loo

[issue25198] Idle: improve idle.html help viewer.

2015-09-24 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8b3dc527a62c by Terry Jan Reedy in branch '2.7': Issue #25198: In Idle doc viewer, fix indent of fixed-pitch text https://hg.python.org/cpython/rev/8b3dc527a62c New changeset 1d0f4b94066b by Terry Jan Reedy in branch '3.4': Issue #25198: In Idle do

[issue25198] Idle: improve idle.html help viewer.

2015-09-24 Thread Mark Roseman
Mark Roseman added the comment: Have attached help-indent-fix.patch. Basically the parser is very fragile when it comes to combining tags, so the handling of the 'span .pre' was stomping on the indent tag. Separated out handling of character level tags (e.g. italic) from block level tags (e.g.

[issue25198] Idle: improve idle.html help viewer.

2015-09-23 Thread Terry J. Reedy
Terry J. Reedy added the comment: List indent glitch: In the command line section, after the box, idle.rst has If there are arguments: #. If ``-``, ``-c``, or ``r`` is used, all arguments are placed in ``sys.argv[1:...]`` and ``sys.argv[0]`` is set to ``''``, ``'-c'``, or ``'-r'``. No e

[issue25198] Idle: improve idle.html help viewer.

2015-09-20 Thread Terry J. Reedy
New submission from Terry J. Reedy: I just pushed the new viewer as part of #16893. Possible improvements: * Font size should initially reflect user's size choice. Possibly change with control-mousewheel. (Possible same for edit windows.) * Make within-file links work. * Make Find ^F work,