This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Broken \ref link in documentation
Type: Stage:
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: fdrake Nosy List: fdrake, jhylton, nobody, terry.reedy
Priority: normal Keywords:

Created on 2000-10-18 18:51 by fdrake, last changed 2022-04-10 16:02 by admin. This issue is now closed.

Messages (7)
msg2084 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2000-10-18 18:51
[Report received by python-docs.]

From: Roy Smith <rsmith@micromuse.com>
Date: Wed, 18 Oct 2000 14:45:25 -0700

On the page http://www.python.org/doc/current/ref/exceptions.html, if I
click on the link for secion 7.4
(http://www.python.org/doc/current/ref/node83.html#try), I get an Error
404: file not found.
msg2085 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2000-12-12 21:54
I'll note that I think this is a LaTeX2HTML bug, but I need to spend some time digging into the \ref{} handling.  It seems to have other problems as well.  ;-(
msg2086 - (view) Author: Nobody/Anonymous (nobody) Date: 2002-01-30 00:51
Logged In: NO 

ergdfvgdfdfgsdgff
msg2087 - (view) Author: Jeremy Hylton (jhylton) (Python triager) Date: 2002-03-01 22:32
Logged In: YES 
user_id=31392

Was it a LaTeX2HTML bug or not?
msg2088 - (view) Author: Terry J. Reedy (terry.reedy) * (Python committer) Date: 2002-08-11 16:42
Logged In: YES 
user_id=593130

The page in question is '4.2 Exceptions'
http://www.python.org/doc/current/ref/exceptions.html

The line in question is:
See also the description of the try statement in section 7.4 
and raise statement in section 6.9. 

6.9 links to '6.9 The raise statement' 
http://www.python.org/doc/current/ref/raise.html#raise
which works fine

7.4 links to the now obsolete URL
http://www.python.org/doc/current/ref/node83.html#try
It should link to the current '7.4 The try statement '
http://www.python.org/doc/current/ref/try.html
or maybe?
http://www.python.org/doc/current/ref/try.html#try

Isn't this a simple update so that the 7.4 ref works like the 
6.9 ref?

PS. I would like also like references from 7.4 to 4.2 and 6.9
msg2089 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2002-10-18 14:44
Logged In: YES 
user_id=3066

Links fixed with a patch by Neal Norwitz in
Doc/tools/node2label.pl revisions 1.14 and 1.12.18.1.

This turned out not to be a LaTeX2HTML bug but a bug in our
own re-naming script that we use to post-process the
generated HTML (not surprising, but this was a question
earlier).

I'm marking this fixed but left open since this issue's
comments include a request for additional cross-references
in the language reference.
msg2090 - (view) Author: Fred Drake (fdrake) (Python committer) Date: 2002-10-18 15:23
Logged In: YES 
user_id=3066

Added additional cross-references in Doc/ref/ref6.tex
revisions 1.56, 1.47.4.4, and Doc/ref/ref7.tex revisions
1.35, 1.29.8.6.
Closing the report.
History
Date User Action Args
2022-04-10 16:02:31adminsetgithub: 33364
2000-10-18 18:51:29fdrakecreate