X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/ce3795b6c4f878c496b4d46193e3379f8efb077b..2edc7aa5583b2d241b4f18a2b06b2dead36ea8c1:/doc/conf.py diff --git a/doc/conf.py b/doc/conf.py index 65632658d..1e8ba2890 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -1,5 +1,3 @@ -# -*- coding: utf-8 -*- -# # Wolne Lektury documentation build configuration file, created by # sphinx-quickstart on Fri Mar 30 16:42:44 2012. # @@ -12,19 +10,18 @@ # serve to show the default. import sys, os +import django # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. #sys.path.insert(0, os.path.abspath('.')) sys.path += [ - os.path.abspath('..'), - os.path.abspath('../apps'), - os.path.abspath('../lib'), - os.path.abspath('../lib/librarian'), + os.path.abspath('../src'), ] os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wolnelektury.settings") +django.setup() @@ -50,8 +47,8 @@ source_suffix = '.rst' master_doc = 'index' # General information about the project. -project = u'Wolne Lektury' -copyright = u'2007-2014, Fundacja Nowoczesna Polska' +project = 'Wolne Lektury' +copyright = '2007-2019, Fundacja Nowoczesna Polska' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -130,7 +127,7 @@ html_theme = 'default' # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". -html_static_path = ['_static'] +#html_static_path = ['_static'] # If not '', a 'Last updated on:' timestamp is inserted at every page bottom, # using the given strftime format. @@ -188,8 +185,8 @@ htmlhelp_basename = 'WolneLekturydoc' # Grouping the document tree into LaTeX files. List of tuples # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ - ('index', 'WolneLektury.tex', u'Wolne Lektury Documentation', - u'Fundacja Nowoczesna Polska', 'manual'), + ('index', 'WolneLektury.tex', 'Wolne Lektury Documentation', + 'Fundacja Nowoczesna Polska', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -221,8 +218,8 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - ('index', 'wolnelektury', u'Wolne Lektury Documentation', - [u'Fundacja Nowoczesna Polska'], 1) + ('index', 'wolnelektury', 'Wolne Lektury Documentation', + ['Fundacja Nowoczesna Polska'], 1) ]