mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fix #2931: code-block directive with same :caption: causes warning of duplicate target
This commit is contained in:
parent
669b5f1736
commit
82c153ffd2
3
CHANGES
3
CHANGES
@ -19,6 +19,9 @@ Bugs fixed
|
||||
* #2873: code-block overflow in latex (due to commas)
|
||||
* #1060, #2056: sphinx.ext.intersphinx: broken links are generated if relative
|
||||
paths are used in `intersphinx_mapping`
|
||||
* #2931: code-block directive with same :caption: causes warning of duplicate
|
||||
target. Now `code-block` and `literalinclude` does not define hyperlink
|
||||
target using its caption automatially.
|
||||
|
||||
Release 1.4.6 (released Aug 20, 2016)
|
||||
=====================================
|
||||
|
@ -133,7 +133,6 @@ class CodeBlock(Directive):
|
||||
|
||||
caption = self.options.get('caption')
|
||||
if caption:
|
||||
self.options.setdefault('name', nodes.fully_normalize_name(caption))
|
||||
try:
|
||||
literal = container_wrapper(self, literal, caption)
|
||||
except ValueError as exc:
|
||||
@ -344,7 +343,6 @@ class LiteralInclude(Directive):
|
||||
if caption is not None:
|
||||
if not caption:
|
||||
caption = self.arguments[0]
|
||||
self.options.setdefault('name', nodes.fully_normalize_name(caption))
|
||||
try:
|
||||
retnode = container_wrapper(self, retnode, caption)
|
||||
except ValueError as exc:
|
||||
|
@ -4,7 +4,7 @@ Caption
|
||||
References
|
||||
----------
|
||||
|
||||
See :numref:`caption *test* rb` and :numref:`caption **test** py`.
|
||||
See :numref:`name *test* rb` and :numref:`name **test** py`.
|
||||
|
||||
See :ref:`Ruby <name *test* rb>` and :ref:`Python <name **test** py>`.
|
||||
|
||||
|
@ -56,7 +56,7 @@ def test_code_block_caption_html(app, status, warning):
|
||||
caption = (u'<div class="code-block-caption">'
|
||||
u'<span class="caption-number">Listing 1 </span>'
|
||||
u'<span class="caption-text">caption <em>test</em> rb'
|
||||
u'</span><a class="headerlink" href="#caption-test-rb" '
|
||||
u'</span><a class="headerlink" href="#id1" '
|
||||
u'title="Permalink to this code">\xb6</a></div>')
|
||||
assert caption in html
|
||||
|
||||
@ -66,9 +66,9 @@ def test_code_block_caption_latex(app, status, warning):
|
||||
app.builder.build_all()
|
||||
latex = (app.outdir / 'Python.tex').text(encoding='utf-8')
|
||||
caption = '\\sphinxSetupCaptionForVerbatim{literal-block}{caption \\emph{test} rb}'
|
||||
label = '\\def\\sphinxLiteralBlockLabel{\\label{caption:caption-test-rb}}'
|
||||
link = '\hyperref[caption:caption-test-rb]' \
|
||||
'{Listing \\ref{caption:caption-test-rb}}'
|
||||
label = '\\def\\sphinxLiteralBlockLabel{\\label{caption:id1}}'
|
||||
link = '\hyperref[caption:name-test-rb]' \
|
||||
'{Listing \\ref{caption:name-test-rb}}'
|
||||
assert caption in latex
|
||||
assert label in latex
|
||||
assert link in latex
|
||||
@ -243,7 +243,7 @@ def test_literalinclude_caption_html(app, status, warning):
|
||||
caption = (u'<div class="code-block-caption">'
|
||||
u'<span class="caption-number">Listing 2 </span>'
|
||||
u'<span class="caption-text">caption <strong>test</strong> py'
|
||||
u'</span><a class="headerlink" href="#caption-test-py" '
|
||||
u'</span><a class="headerlink" href="#id2" '
|
||||
u'title="Permalink to this code">\xb6</a></div>')
|
||||
assert caption in html
|
||||
|
||||
@ -253,9 +253,9 @@ def test_literalinclude_caption_latex(app, status, warning):
|
||||
app.builder.build('index')
|
||||
latex = (app.outdir / 'Python.tex').text(encoding='utf-8')
|
||||
caption = '\\sphinxSetupCaptionForVerbatim{literal-block}{caption \\textbf{test} py}'
|
||||
label = '\\def\\sphinxLiteralBlockLabel{\\label{caption:caption-test-py}}'
|
||||
link = '\hyperref[caption:caption-test-py]' \
|
||||
'{Listing \\ref{caption:caption-test-py}}'
|
||||
label = '\\def\\sphinxLiteralBlockLabel{\\label{caption:id2}}'
|
||||
link = '\hyperref[caption:name-test-py]' \
|
||||
'{Listing \\ref{caption:name-test-py}}'
|
||||
assert caption in latex
|
||||
assert label in latex
|
||||
assert link in latex
|
||||
|
Loading…
Reference in New Issue
Block a user