diff --git a/CHANGES b/CHANGES
index 5dfef7d10..99d467689 100644
--- a/CHANGES
+++ b/CHANGES
@@ -32,10 +32,12 @@ Bugs fixed
characters to "Project name" on quickstart.
* #1190: Output TeX/texinfo/man filename has no basename (only extention)
when using multibyte characters to "Project name" on quickstart.
-* #1090: Fix multiple cross references (term, ref, doc) in the same line
- return the same link with i18n.
-* #1193: Fix multiple link references in the same line return the same
- link with i18n.
+* #1090: Fix i18n: multiple cross references (term, ref, doc) in the same line
+ return the same link.
+* #1193: Fix i18n: multiple link references in the same line return the same
+ link.
+* #1176: Fix i18n: footnote reference number missing for auto numbered named
+ footnote and auto symbol footnote.
Release 1.2 (beta1 released Mar 31, 2013)
diff --git a/sphinx/transforms.py b/sphinx/transforms.py
index fbc775308..324df2adf 100644
--- a/sphinx/transforms.py
+++ b/sphinx/transforms.py
@@ -300,17 +300,38 @@ class Locale(Transform):
def is_autonumber_footnote_ref(node):
return isinstance(node, nodes.footnote_reference) and \
node.get('auto') == 1
+ def list_replace_or_append(lst, old, new):
+ if old in lst:
+ lst[lst.index(old)] = new
+ else:
+ lst.append(new)
old_foot_refs = node.traverse(is_autonumber_footnote_ref)
new_foot_refs = patch.traverse(is_autonumber_footnote_ref)
if len(old_foot_refs) != len(new_foot_refs):
env.warn_node('inconsistent footnote references in '
'translated message', node)
- for old, new in zip(old_foot_refs, new_foot_refs):
+ old_foot_namerefs = {}
+ for r in old_foot_refs:
+ old_foot_namerefs.setdefault(r.get('refname'), []).append(r)
+ for new in new_foot_refs:
+ refname = new.get('refname')
+ refs = old_foot_namerefs.get(refname, [])
+ if not refs:
+ continue
+
+ old = refs.pop(0)
new['ids'] = old['ids']
for id in new['ids']:
self.document.ids[id] = new
- self.document.autofootnote_refs.remove(old)
- self.document.note_autofootnote_ref(new)
+ list_replace_or_append(
+ self.document.autofootnote_refs, old, new)
+ if refname:
+ list_replace_or_append(
+ self.document.footnote_refs.setdefault(refname, []),
+ old, new)
+ list_replace_or_append(
+ self.document.refnames.setdefault(refname, []),
+ old, new)
# reference should use new (translated) 'refname'.
# * reference target ".. _Python: ..." is not translatable.
diff --git a/tests/roots/test-intl/footnote.po b/tests/roots/test-intl/footnote.po
index 47f8d3db4..b3876f51f 100644
--- a/tests/roots/test-intl/footnote.po
+++ b/tests/roots/test-intl/footnote.po
@@ -19,8 +19,8 @@ msgstr ""
msgid "i18n with Footnote"
msgstr "I18N WITH FOOTNOTE"
-msgid "[100]_ Contents [#]_ for `i18n with Footnote`_ [ref]_"
-msgstr "`I18N WITH FOOTNOTE`_ INCLUDE THIS CONTENTS [ref]_ [#]_ [100]_"
+msgid "[100]_ Contents [#]_ for `i18n with Footnote`_ [ref]_ [#named]_."
+msgstr "`I18N WITH FOOTNOTE`_ INCLUDE THIS CONTENTS [#named]_ [ref]_ [#]_ [100]_."
msgid "This is a auto numbered footnote."
msgstr "THIS IS A AUTO NUMBERED FOOTNOTE."
@@ -31,3 +31,6 @@ msgstr "THIS IS A NAMED FOOTNOTE."
msgid "This is a numbered footnote."
msgstr "THIS IS A NUMBERED FOOTNOTE."
+msgid "This is a auto numbered named footnote."
+msgstr "THIS IS A AUTO NUMBERED NAMED FOOTNOTE."
+
diff --git a/tests/roots/test-intl/footnote.txt b/tests/roots/test-intl/footnote.txt
index 3ef76bbaa..55da9c6d3 100644
--- a/tests/roots/test-intl/footnote.txt
+++ b/tests/roots/test-intl/footnote.txt
@@ -4,8 +4,9 @@ i18n with Footnote
==================
.. #955 cant-build-html-with-footnotes-when-using
-[100]_ Contents [#]_ for `i18n with Footnote`_ [ref]_
+[100]_ Contents [#]_ for `i18n with Footnote`_ [ref]_ [#named]_.
.. [#] This is a auto numbered footnote.
.. [ref] This is a named footnote.
.. [100] This is a numbered footnote.
+.. [#named] This is a auto numbered named footnote.
diff --git a/tests/test_intl.py b/tests/test_intl.py
index 4c7921766..ef412c1df 100644
--- a/tests/test_intl.py
+++ b/tests/test_intl.py
@@ -149,7 +149,7 @@ def test_i18n_footnote_break_refid(app):
@with_intl_app(buildername='xml', warning=warnfile)
def test_i18n_footnote_regression(app):
- # regression test for fix #955
+ # regression test for fix #955, #1176
app.builddir.rmtree(True)
app.builder.build(['footnote'])
et = ElementTree.parse(app.outdir / 'footnote.xml')
@@ -159,7 +159,7 @@ def test_i18n_footnote_regression(app):
assert_elem(
para0[0],
texts=['I18N WITH FOOTNOTE', 'INCLUDE THIS CONTENTS',
- '[ref]', '1', '100'],
+ '2', '[ref]', '1', '100', '.'],
refs=['i18n-with-footnote', 'ref'])
footnote0 = secs[0].findall('footnote')
@@ -171,6 +171,10 @@ def test_i18n_footnote_regression(app):
footnote0[1],
texts=['100','THIS IS A NUMBERED FOOTNOTE.'],
names=['100'])
+ assert_elem(
+ footnote0[2],
+ texts=['2','THIS IS A AUTO NUMBERED NAMED FOOTNOTE.'],
+ names=['named'])
citation0 = secs[0].findall('citation')
assert_elem(
@@ -183,22 +187,23 @@ def test_i18n_footnote_regression(app):
assert not re.search(warning_expr, warnings)
-@with_intl_app(buildername='html', cleanenv=True)
+@with_intl_app(buildername='xml', cleanenv=True)
def test_i18n_footnote_backlink(app):
- """i18n test for #1058"""
+ # i18n test for #1058
app.builder.build(['footnote'])
- result = (app.outdir / 'footnote.html').text(encoding='utf-8')
- expects = [
- '',
- '',
- '[ref]',
- '[1]',
- '[ref]',
- '[100]',
- ]
- for expect in expects:
- matches = re.findall(re.escape(expect), result)
- assert len(matches) == 1
+ et = ElementTree.parse(app.outdir / 'footnote.xml')
+ secs = et.findall('section')
+
+ para0 = secs[0].findall('paragraph')
+ refs0 = para0[0].findall('footnote_reference')
+ refid2id = dict([
+ (r.attrib.get('refid'), r.attrib.get('ids')) for r in refs0])
+
+ footnote0 = secs[0].findall('footnote')
+ for footnote in footnote0:
+ ids = footnote.attrib.get('ids')
+ backrefs = footnote.attrib.get('backrefs')
+ assert refid2id[ids] == backrefs
@with_intl_app(buildername='text', warning=warnfile, cleanenv=True)