summaryrefslogtreecommitdiff
path: root/sphinx/util/nodes.py
diff options
context:
space:
mode:
authorMichael Schlenker <msc@contact.de>2013-11-08 13:06:14 +0000
committerMichael Schlenker <msc@contact.de>2013-11-08 13:06:14 +0000
commitffd2ca9b5f95e81afd3bcbe46e0b1a2b208d083d (patch)
tree114bc66df5e7ff5086b99650dd814c0d8fc85ead /sphinx/util/nodes.py
parenta56b65634bf3fe57af58e781674ef0be339be2fe (diff)
downloadsphinx-ffd2ca9b5f95e81afd3bcbe46e0b1a2b208d083d.tar.gz
Add .. rubric:: to the list of special cased nodes for gettext.
The ``.. rubric:: Title`` does not get extracted in all places without, due to the missing node.source field, quite like the title fields.
Diffstat (limited to 'sphinx/util/nodes.py')
-rw-r--r--sphinx/util/nodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py
index a8395f60..81872a8b 100644
--- a/sphinx/util/nodes.py
+++ b/sphinx/util/nodes.py
@@ -58,7 +58,7 @@ def extract_messages(doctree):
# this issue was filed to Docutils tracker:
# sf.net/tracker/?func=detail&aid=3599485&group_id=38414&atid=422032
# sourceforge.net/p/docutils/patches/108/
- if isinstance(node, (nodes.caption, nodes.title)) and not node.source:
+ if isinstance(node, (nodes.caption, nodes.title, nodes.rubric)) and not node.source:
node.source = node.parent.source
node.line = 0 #need fix docutils to get `node.line`