[issue5388] Green-box doc glitch: winhelp version only

2013-10-11 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3, Python 3.4 -Python 3.1, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list ma

[issue5388] Green-box doc glitch: winhelp version only

2013-10-11 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yes. On win 7, html help control 6.1, the horizontal scroll bar is still put in or on top of the box, but it is thinner so it only cuts off half of the bottom line instead of hiding it completely. There is no longer a vertical scroll bar, which means one can o

[issue5388] Green-box doc glitch: winhelp version only

2013-10-11 Thread Georg Brandl
Georg Brandl added the comment: Is this still an issue? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https

[issue5388] Green-box doc glitch: winhelp version only

2009-07-01 Thread Ezio Melotti
Ezio Melotti added the comment: I uploaded a few more screenshots. I was able to reproduce the issue on Vista with HTML Help Version 6.0 and on Windows 2003 Server whit HTML Help Control Version 5.2.3790.3959. I also tried on another Windows XP SP2 machine with HTML Help Control Version 5.2.3790

[issue5388] Green-box doc glitch: winhelp version only

2009-07-01 Thread Ezio Melotti
Changes by Ezio Melotti : Added file: http://bugs.python.org/file14417/py31doc-winxpsp2.png ___ Python tracker ___ ___ Python-bugs-list mailing

[issue5388] Green-box doc glitch: winhelp version only

2009-07-01 Thread Ezio Melotti
Changes by Ezio Melotti : Removed file: http://bugs.python.org/file14415/py31doc-vista.png ___ Python tracker ___ ___ Python-bugs-list mailing

[issue5388] Green-box doc glitch: winhelp version only

2009-07-01 Thread Ezio Melotti
Changes by Ezio Melotti : Added file: http://bugs.python.org/file14415/py31doc-vista.png ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue5388] Green-box doc glitch: winhelp version only

2009-07-01 Thread Ezio Melotti
Changes by Ezio Melotti : Added file: http://bugs.python.org/file14414/py31doc-vista.png ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue5388] Green-box doc glitch: winhelp version only

2009-06-30 Thread Terry J. Reedy
Terry J. Reedy added the comment: Same path to python31.chm. I presume color difference is due to difference selections in Display Properties / Appearance tab. When I left- or right-click on upper-left icon as depicted in screen capture, choices are move, resize, , close, About HTML Help. N

[issue5388] Green-box doc glitch: winhelp version only

2009-06-30 Thread Ezio Melotti
Ezio Melotti added the comment: This is what I see here (see attached image). The only scrollbar is the one at the bottom for the whole page. The file is under Start -> Programs -> Python 3.1 -> Python Manuals, and the path/file is C:\Programs\Python31\Doc\python31.chm (you can see it right-clic

[issue5388] Green-box doc glitch: winhelp version only

2009-06-29 Thread Terry J. Reedy
Terry J. Reedy added the comment: WinXP, updated, Py3.1. Start / Programs / Python3.1 / Python Docs I presume this uses .chm file. I most definitely have scrollbars covering text in green box. See screenshot for what I see. -- Added file: http://bugs.python.org/file14388/Py31doc.jpg __

[issue5388] Green-box doc glitch: winhelp version only

2009-06-28 Thread Ezio Melotti
Ezio Melotti added the comment: That's why I think that the Windows Help problem still need to be fixed, but limiting the length of the lines is a good idea regardless of this, since having long lines and horizontal scroll bars is annoying on the browser too. Is the Windows Help python31.chm? I

[issue5388] Green-box doc glitch: winhelp version only

2009-06-28 Thread Terry J. Reedy
Terry J. Reedy added the comment: The lines in the green box do not have to be long in an absolute sense, just longer than the current window width allows. As soon as the the window is narrow enough to require a horizontal scroll bar, a vertical scroll bar is added too because the horizonal scro

[issue5388] Green-box doc glitch: winhelp version only

2009-06-28 Thread Ezio Melotti
Ezio Melotti added the comment: It's probably better to split long lines (at 80 chars?) than adding an empty line in every box. Scrolling horizontally is annoying enough even without the problem you mentioned. I don't know if it's possible to split grammar lines like id_start/id_continue[1], bu

[issue5388] Green-box doc glitch: winhelp version only

2009-02-27 Thread Terry J. Reedy
New submission from Terry J. Reedy : Example: LangRef / LexAnalysis / Identifiers Green-shaded grammar section has 3 lines, 2 very long: identifier ::= id_start id_continue* id_start::= ___ __