mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix filenames were not shown on warnings of citations
This commit is contained in:
1
CHANGES
1
CHANGES
@@ -5,6 +5,7 @@ Bugs fixed
|
|||||||
----------
|
----------
|
||||||
|
|
||||||
* Fix line numbers was not shown on warnings in LaTeX and texinfo builders
|
* Fix line numbers was not shown on warnings in LaTeX and texinfo builders
|
||||||
|
* Fix filenames were not shown on warnings of citations
|
||||||
|
|
||||||
Release 1.3.4 (released Jan 12, 2016)
|
Release 1.3.4 (released Jan 12, 2016)
|
||||||
=====================================
|
=====================================
|
||||||
|
|||||||
@@ -156,6 +156,7 @@ class CitationReferences(Transform):
|
|||||||
refnode = addnodes.pending_xref(cittext, reftype='citation',
|
refnode = addnodes.pending_xref(cittext, reftype='citation',
|
||||||
reftarget=cittext, refwarn=True,
|
reftarget=cittext, refwarn=True,
|
||||||
ids=citnode["ids"])
|
ids=citnode["ids"])
|
||||||
|
refnode.source = citnode.source or citnode.parent.source
|
||||||
refnode.line = citnode.line or citnode.parent.line
|
refnode.line = citnode.line or citnode.parent.line
|
||||||
refnode += nodes.Text('[' + cittext + ']')
|
refnode += nodes.Text('[' + cittext + ']')
|
||||||
citnode.parent.replace(citnode, refnode)
|
citnode.parent.replace(citnode, refnode)
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ with "\\?": b?'here: >>>(\\\\|/)xbb<<<'
|
|||||||
|
|
||||||
HTML_WARNINGS = ENV_WARNINGS + """\
|
HTML_WARNINGS = ENV_WARNINGS + """\
|
||||||
%(root)s/images.txt:20: WARNING: no matching candidate for image URI u'foo.\\*'
|
%(root)s/images.txt:20: WARNING: no matching candidate for image URI u'foo.\\*'
|
||||||
None:\\d+: WARNING: citation not found: missing
|
%(root)s/footnote.txt:60: WARNING: citation not found: missing
|
||||||
%(root)s/markup.txt:158: WARNING: unknown option: &option
|
%(root)s/markup.txt:158: WARNING: unknown option: &option
|
||||||
%(root)s/markup.txt:: WARNING: invalid single index entry u''
|
%(root)s/markup.txt:: WARNING: invalid single index entry u''
|
||||||
%(root)s/markup.txt:: WARNING: invalid pair index entry u''
|
%(root)s/markup.txt:: WARNING: invalid pair index entry u''
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ from test_build_html import ENV_WARNINGS
|
|||||||
|
|
||||||
LATEX_WARNINGS = ENV_WARNINGS + """\
|
LATEX_WARNINGS = ENV_WARNINGS + """\
|
||||||
%(root)s/markup.txt:158: WARNING: unknown option: &option
|
%(root)s/markup.txt:158: WARNING: unknown option: &option
|
||||||
None:60: WARNING: citation not found: missing
|
%(root)s/footnote.txt:60: WARNING: citation not found: missing
|
||||||
%(root)s/images.txt:20: WARNING: no matching candidate for image URI u'foo.\\*'
|
%(root)s/images.txt:20: WARNING: no matching candidate for image URI u'foo.\\*'
|
||||||
WARNING: invalid pair index entry u''
|
WARNING: invalid pair index entry u''
|
||||||
WARNING: invalid pair index entry u'keyword; '
|
WARNING: invalid pair index entry u'keyword; '
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ from test_build_html import ENV_WARNINGS
|
|||||||
|
|
||||||
TEXINFO_WARNINGS = ENV_WARNINGS + """\
|
TEXINFO_WARNINGS = ENV_WARNINGS + """\
|
||||||
%(root)s/markup.txt:158: WARNING: unknown option: &option
|
%(root)s/markup.txt:158: WARNING: unknown option: &option
|
||||||
None:60: WARNING: citation not found: missing
|
%(root)s/footnote.txt:60: WARNING: citation not found: missing
|
||||||
%(root)s/images.txt:20: WARNING: no matching candidate for image URI u'foo.\\*'
|
%(root)s/images.txt:20: WARNING: no matching candidate for image URI u'foo.\\*'
|
||||||
%(root)s/images.txt:29: WARNING: no matching candidate for image URI u'svgimg.\\*'
|
%(root)s/images.txt:29: WARNING: no matching candidate for image URI u'svgimg.\\*'
|
||||||
"""
|
"""
|
||||||
|
|||||||
Reference in New Issue
Block a user