Skip to content

Commit e0fcfa9

Browse files
committed
Updated docs/conf.py
1 parent 7b0807d commit e0fcfa9

File tree

1 file changed

+16
-18
lines changed

1 file changed

+16
-18
lines changed

docs/conf.py

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
31
# Django Comments documentation build configuration file, created by
42
# sphinx-quickstart on Mon Mar 11 10:23:49 2013.
53
#
@@ -41,17 +39,17 @@
4139
master_doc = 'index'
4240

4341
# General information about the project.
44-
project = u'Django Comments'
45-
copyright = u'2013, Django Software Foundation and contributors'
42+
project = 'Django Comments'
43+
copyright = 'Django Software Foundation and contributors'
4644

4745
# The version info for the project you're documenting, acts as replacement for
4846
# |version| and |release|, also used in various other places throughout the
4947
# built documents.
5048
#
5149
# The short X.Y version.
52-
version = '1.7'
50+
version = '1.8'
5351
# The full version, including alpha/beta/rc tags.
54-
release = '1.7'
52+
release = '1.8'
5553

5654
# The language for content autogenerated by Sphinx. Refer to documentation
5755
# for a list of supported languages.
@@ -184,8 +182,8 @@
184182
# Grouping the document tree into LaTeX files. List of tuples
185183
# (source start file, target name, title, author, documentclass [howto/manual]).
186184
latex_documents = [
187-
('newindex', 'DjangoComments.tex', u'Django Comments Documentation',
188-
u'Django Software Foundation and contributors', 'manual'),
185+
('index', 'DjangoComments.tex', 'Django Comments Documentation',
186+
'Django Software Foundation and contributors', 'manual'),
189187
]
190188

191189
# The name of an image file (relative to this directory) to place at the top of
@@ -214,8 +212,8 @@
214212
# One entry per manual page. List of tuples
215213
# (source start file, name, description, authors, manual section).
216214
man_pages = [
217-
('newindex', 'djangocomments', u'Django Comments Documentation',
218-
[u'Django Software Foundation and contributors'], 1)
215+
('index', 'djangocomments', 'Django Comments Documentation',
216+
['Django Software Foundation and contributors'], 1)
219217
]
220218

221219
# If true, show URL addresses after external links.
@@ -228,8 +226,8 @@
228226
# (source start file, target name, title, author,
229227
# dir menu entry, description, category)
230228
texinfo_documents = [
231-
('newindex', 'DjangoComments', u'Django Comments Documentation',
232-
u'Django Software Foundation and contributors', 'DjangoComments', 'One line description of project.',
229+
('index', 'DjangoComments', 'Django Comments Documentation',
230+
'Django Software Foundation and contributors', 'DjangoComments', 'One line description of project.',
233231
'Miscellaneous'),
234232
]
235233

@@ -246,10 +244,10 @@
246244
# -- Options for Epub output ---------------------------------------------------
247245

248246
# Bibliographic Dublin Core info.
249-
epub_title = u'Django Comments'
250-
epub_author = u'Django Software Foundation and contributors'
251-
epub_publisher = u'Django Software Foundation and contributors'
252-
epub_copyright = u'2013, Django Software Foundation and contributors'
247+
epub_title = 'Django Comments'
248+
epub_author = 'Django Software Foundation and contributors'
249+
epub_publisher = 'Django Software Foundation and contributors'
250+
epub_copyright = copyright
253251

254252
# The language of the text. It defaults to the language option
255253
# or en if the language is not set.
@@ -288,6 +286,6 @@
288286

289287
# Example configuration for intersphinx: refer to the Python standard library.
290288
intersphinx_mapping = {
291-
'python': ('http://docs.python.org/', None),
292-
'django': ('http://docs.djangoproject.com/en/stable', 'http://docs.djangoproject.com/en/stable/_objects'),
289+
'python': ('https://docs.python.org/', None),
290+
'django': ('https://docs.djangoproject.com/en/stable', 'https://docs.djangoproject.com/en/stable/_objects'),
293291
}

0 commit comments

Comments
 (0)