[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: I understood Martin completely. The bot is coming RSN. My use of 'pending' was intended to answer the exact question you just asked. Maybe I should use Stage: 'commit review'. Forwardport to py3k: r71952 Backport to 30-maint: r71953 -- stage: -> co

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Martin v. Löwis
Martin v. Löwis added the comment: > Kurt, I'm not sure if you misunderstood Martin but there is no such > "closing bot" here (only if you consider people as bots :) There is no such bot *yet*, but may be in a few days. -- ___ Python tracker

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Guilherme Polo
Guilherme Polo added the comment: Kurt, I'm not sure if you misunderstood Martin but there is no such "closing bot" here (only if you consider people as bots :) Anyway, are you porting these to py3k and release30-maint or can someone else do it ? -- ___

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- components: +IDLE -Build keywords: +26backport ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue5783] IDLE cannot find windows chm file

2009-04-25 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: OK, thanks, Martin. I'll use 'pending' that way (close after a while if the bot hears nothing further). Changing component to "IDLE'. release26-maint: r71908, r71909 -- ___ Python tracker

[issue5783] IDLE cannot find windows chm file

2009-04-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: > I used 'pending' in the Debian sense of: "I'm working it, > expect an upload soon." Unless I'm mistaken, there's no bot > closing 'pending' like there was on SF. Actually, the Pending status is exactly the one as there was on SF. The bot closing it just

[issue5783] IDLE cannot find windows chm file

2009-04-24 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: The issue that Terry Reedy raised is due to 68801 being forward ported to py3k but not backported to 2.6-maint or 3.0-maint. Access in 2.6.2 happens to work because there's a redirect on the website which points to the correct doc release. But 3.0.1 is broken.

[issue5783] IDLE cannot find windows chm file

2009-04-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: My point, relative to this issue, was to explain why I had not commented before, but also to report that forward porting is needed, and not just a convenience. I just reported the breakage to webmas...@python.org. -- __

[issue5783] IDLE cannot find windows chm file

2009-04-24 Thread Martin v. Löwis
Martin v. Löwis added the comment: Terry, I believe your issue (online docs not found in 3.0) is different from this issue, so please open a new issue. I'm leaving this open until the patches have been forward-ported. -- ___ Python tracker

[issue5783] IDLE cannot find windows chm file

2009-04-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: "Instead, I think such problems must be detected during beta testing. The fact that it hasn't been detected so far, even though it existed since 2.6.0, indicates that the problem can't be that serious." I believe I tried F1 Help once, got the online docs, found

[issue5783] IDLE cannot find windows chm file

2009-04-22 Thread Kurt B. Kaiser
Kurt B. Kaiser added the comment: r71812 in trunk. Will port to 3-head 30-maint 26-maint. Thanks for the patch! -- resolution: -> accepted status: open -> pending ___ Python tracker ___

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Martin v. Löwis
Martin v. Löwis added the comment: > Fragile solution, but it works. IMO, it's a better design to just have > the file named Python26.chm like it always used to be done. That was also fragile, as this bug report demonstrates. It broke when sphinx decided to put more version information into th

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Raymond Hettinger
Raymond Hettinger added the comment: Fragile solution, but it works. IMO, it's a better design to just have the file named Python26.chm like it always used to be done. Now, we've duplicated someones arbitrary logic (ignoring sys.version_info.serial and special casing sys.version_info.release_

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Kurt B. Kaiser
Changes by Kurt B. Kaiser : -- assignee: -> kbk nosy: +kbk ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Guilherme Polo
Guilherme Polo added the comment: Fine, Martin. Patch attached for idle only. -- keywords: +patch Added file: http://bugs.python.org/file13724/issue_5783.diff ___ Python tracker

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Martin v. Löwis
Martin v. Löwis added the comment: > Maybe the functions in Doc/tools/sphinxext/patchlevel.py should be moved > to somewhere else then ? IDLE could use them. No. IDLE shouldn't parse the version out of the header file, but instead use sys.version_info to compute the file name, so it's really ju

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Guilherme Polo
Guilherme Polo added the comment: Maybe the functions in Doc/tools/sphinxext/patchlevel.py should be moved to somewhere else then ? IDLE could use them. -- nosy: +gpolo ___ Python tracker __

[issue5783] IDLE cannot find windows chm file

2009-04-20 Thread Benjamin Peterson
Benjamin Peterson added the comment: I think idle should be updated to look for the correct file name. -- assignee: benjamin.peterson -> ___ Python tracker ___ _

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: > Just checked Python2.5.4 and its CHM file is Python25.chm. So > everything is fine with that release. True. The renaming happened with the switch to sphinx. -- ___ Python tracker

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: > The release process needs to have a step that validates that the CHM > file works from IDLE. I personally can't perform such testing steps, perhaps unless somebody maintains a list of such steps for me. Instead, I think such problems must be detected during

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: > What changed here? We switched to sphinx, and the makefiles put the full version into the output files. > ISTM that IDLE was always looking for the same name > and that the new part is that the build procedure has been been changed > (the step where the "ma

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: Just checked Python2.5.4 and its CHM file is Python25.chm. So everything is fine with that release. -- ___ Python tracker ___ __

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: It looks like IDLE has been the same since 2004: http://svn.python.org/view/python/trunk/Lib/idlelib/EditorWindow.py?view=diff&r1=36600&r2=36601 The "correct" filename is what has changed. The release process needs to have a step that validates that the

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: What changed here? ISTM that IDLE was always looking for the same name and that the new part is that the build procedure has been been changed (the step where the "make htmlhelp" output file is moved to ./Doc and renamed). -- __

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Martin v. Löwis
Martin v. Löwis added the comment: It's actually vice versa - IDLE should open the file under its correct name. -- nosy: +loewis ___ Python tracker ___ __

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: This also applies to Python31a2.chm --> Python31.chm -- versions: +Python 3.1 ___ Python tracker ___

[issue5783] IDLE cannot find windows chm file

2009-04-17 Thread Raymond Hettinger
New submission from Raymond Hettinger : The Doc/Python262.chm file needs to be named Doc/Python26.chm so that IDLE can find it. The current release cannot find the chm file at all so it falls back to the on-line docs at http://www.python.org/doc/current . -- assignee: benjamin.peterson