mirror of
https://github.com/django/django.git
synced 2025-07-14 00:35:11 +00:00
Removed duplicate "Deprecated in Django A.B" text in docs.
sphinx 1.2+ adds this text itself.
This commit is contained in:
parent
5472bf4df0
commit
7f4347b176
2 changed files with 9 additions and 7 deletions
|
@ -269,7 +269,6 @@ class DjangoHTMLTranslator(SmartyPantsHTMLTranslator):
|
|||
# that work.
|
||||
#
|
||||
version_text = {
|
||||
'deprecated': 'Deprecated in Django %s',
|
||||
'versionchanged': 'Changed in Django %s',
|
||||
'versionadded': 'New in Django %s',
|
||||
}
|
||||
|
@ -278,11 +277,13 @@ class DjangoHTMLTranslator(SmartyPantsHTMLTranslator):
|
|||
self.body.append(
|
||||
self.starttag(node, 'div', CLASS=node['type'])
|
||||
)
|
||||
title = "%s%s" % (
|
||||
self.version_text[node['type']] % node['version'],
|
||||
":" if len(node) else "."
|
||||
)
|
||||
self.body.append('<span class="title">%s</span> ' % title)
|
||||
version_text = self.version_text.get(node['type'])
|
||||
if version_text:
|
||||
title = "%s%s" % (
|
||||
version_text % node['version'],
|
||||
":" if len(node) else "."
|
||||
)
|
||||
self.body.append('<span class="title">%s</span> ' % title)
|
||||
|
||||
def depart_versionmodified(self, node):
|
||||
self.body.append("</div>\n")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue