comparison docs/conf.py @ 8224:e63bcce18fef

py3: automatic migration with 2to3 -f unicode
author Mads Kiilerich <mads@kiilerich.com>
date Thu, 06 Feb 2020 02:57:51 +0100
parents 1b21e40aa982
children 2ff983214ea0
comparison
equal deleted inserted replaced
8212:7fef5132620c 8224:e63bcce18fef
44 44
45 # The master toctree document. 45 # The master toctree document.
46 master_doc = 'index' 46 master_doc = 'index'
47 47
48 # General information about the project. 48 # General information about the project.
49 project = u'Kallithea' 49 project = 'Kallithea'
50 copyright = u'2010-2020 by various authors, licensed as GPLv3.' 50 copyright = '2010-2020 by various authors, licensed as GPLv3.'
51 51
52 # The version info for the project you're documenting, acts as replacement for 52 # The version info for the project you're documenting, acts as replacement for
53 # |version| and |release|, also used in various other places throughout the 53 # |version| and |release|, also used in various other places throughout the
54 # built documents. 54 # built documents.
55 # 55 #
185 #latex_font_size = '10pt' 185 #latex_font_size = '10pt'
186 186
187 # Grouping the document tree into LaTeX files. List of tuples 187 # Grouping the document tree into LaTeX files. List of tuples
188 # (source start file, target name, title, author, documentclass [howto/manual]). 188 # (source start file, target name, title, author, documentclass [howto/manual]).
189 latex_documents = [ 189 latex_documents = [
190 ('index', 'Kallithea.tex', u'Kallithea Documentation', 190 ('index', 'Kallithea.tex', 'Kallithea Documentation',
191 u'Kallithea Developers', 'manual'), 191 'Kallithea Developers', 'manual'),
192 ] 192 ]
193 193
194 # The name of an image file (relative to this directory) to place at the top of 194 # The name of an image file (relative to this directory) to place at the top of
195 # the title page. 195 # the title page.
196 #latex_logo = None 196 #latex_logo = None
218 # -- Options for manual page output -------------------------------------------- 218 # -- Options for manual page output --------------------------------------------
219 219
220 # One entry per manual page. List of tuples 220 # One entry per manual page. List of tuples
221 # (source start file, name, description, authors, manual section). 221 # (source start file, name, description, authors, manual section).
222 man_pages = [ 222 man_pages = [
223 ('index', 'kallithea', u'Kallithea Documentation', 223 ('index', 'kallithea', 'Kallithea Documentation',
224 [u'Kallithea Developers'], 1) 224 ['Kallithea Developers'], 1)
225 ] 225 ]
226 226
227 227
228 # Example configuration for intersphinx: refer to the Python standard library. 228 # Example configuration for intersphinx: refer to the Python standard library.
229 intersphinx_mapping = {'http://docs.python.org/': None} 229 intersphinx_mapping = {'http://docs.python.org/': None}