mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge pull request #8804 from tk0miya/8791_linkcheck_docname_isnt_shown
linkcheck: The docname of hyperlink is not displayed (refs: #8791)
This commit is contained in:
commit
1cf915f7dd
1
CHANGES
1
CHANGES
@ -96,6 +96,7 @@ Bugs fixed
|
|||||||
footnote reference
|
footnote reference
|
||||||
* #4304: linkcheck: Fix race condition that could lead to checking the
|
* #4304: linkcheck: Fix race condition that could lead to checking the
|
||||||
availability of the same URL twice
|
availability of the same URL twice
|
||||||
|
* #8791: linkcheck: The docname for each hyperlink is not displayed
|
||||||
* #7118: sphinx-quickstart: questionare got Mojibake if libreadline unavailable
|
* #7118: sphinx-quickstart: questionare got Mojibake if libreadline unavailable
|
||||||
* #8094: texinfo: image files on the different directory with document are not
|
* #8094: texinfo: image files on the different directory with document are not
|
||||||
copied
|
copied
|
||||||
|
@ -390,7 +390,7 @@ class CheckExternalLinksBuilder(DummyBuilder):
|
|||||||
self.write_linkstat(linkstat)
|
self.write_linkstat(linkstat)
|
||||||
return
|
return
|
||||||
if lineno:
|
if lineno:
|
||||||
logger.info('(line %4d) ', lineno, nonl=True)
|
logger.info('(%16s: line %4d) ', docname, lineno, nonl=True)
|
||||||
if status == 'ignored':
|
if status == 'ignored':
|
||||||
if info:
|
if info:
|
||||||
logger.info(darkgray('-ignored- ') + uri + ': ' + info)
|
logger.info(darkgray('-ignored- ') + uri + ': ' + info)
|
||||||
|
Loading…
Reference in New Issue
Block a user