2008-11-05 03:14:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
2014-02-20 17:24:11 +00:00
|
|
|
# Deluge documentation build configuration file
|
2008-11-05 03:14:45 +00:00
|
|
|
#
|
|
|
|
# This file is execfile()d with the current directory set to its containing dir.
|
|
|
|
#
|
|
|
|
# The contents of this file are pickled, so don't put values in the namespace
|
|
|
|
# that aren't pickleable (module imports are okay, they're removed automatically).
|
|
|
|
#
|
|
|
|
# All configuration values have a default value; values that are commented out
|
|
|
|
# serve to show the default value.
|
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
import os
|
|
|
|
import sys
|
2014-02-20 17:24:11 +00:00
|
|
|
from datetime import date
|
2008-11-05 03:14:45 +00:00
|
|
|
|
2014-09-20 18:34:25 +00:00
|
|
|
import pkg_resources
|
|
|
|
|
|
|
|
try:
|
|
|
|
from ...version import get_version
|
|
|
|
except ImportError:
|
|
|
|
get_version = None
|
|
|
|
|
2014-09-22 11:43:28 +00:00
|
|
|
on_rtd = os.environ.get('READTHEDOCS', None) == 'True'
|
2014-09-21 14:37:29 +00:00
|
|
|
on_travis = os.environ.get('TRAVIS', None) == 'true'
|
2014-09-22 11:43:28 +00:00
|
|
|
|
2008-11-05 03:14:45 +00:00
|
|
|
# If your extensions are in another directory, add it here. If the directory
|
|
|
|
# is relative to the documentation root, use os.path.abspath to make it
|
|
|
|
# absolute, like shown here.
|
2014-09-25 12:43:43 +00:00
|
|
|
sys.path.append(os.path.abspath(os.path.join(os.path.join(os.path.dirname(__file__), os.path.pardir), os.path.pardir)))
|
2014-02-20 17:24:11 +00:00
|
|
|
|
2014-09-19 18:10:09 +00:00
|
|
|
|
2014-02-20 17:24:11 +00:00
|
|
|
class Mock(object):
|
|
|
|
|
|
|
|
__all__ = []
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
return Mock()
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def __getattr__(cls, name):
|
|
|
|
if name in ('__file__', '__path__'):
|
|
|
|
return '/dev/null'
|
|
|
|
elif name[0] == name[0].upper():
|
2014-09-19 18:10:09 +00:00
|
|
|
mock_type = type(name, (), {})
|
|
|
|
mock_type.__module__ = __name__
|
|
|
|
return mock_type
|
2014-02-20 17:24:11 +00:00
|
|
|
else:
|
|
|
|
return Mock()
|
|
|
|
|
|
|
|
MOCK_MODULES = ['deluge.ui.languages', 'deluge.ui.countries', 'deluge.ui.gtkui.gtkui',
|
2014-09-25 12:43:43 +00:00
|
|
|
'psyco', 'rencode', 'win32file', 'win32event',
|
|
|
|
'twisted.web', 'twisted.web.client', 'twisted.web.error',
|
2014-02-20 17:24:11 +00:00
|
|
|
'win32gui', 'win32api', 'win32con', '_winreg']
|
|
|
|
|
2014-09-21 14:37:29 +00:00
|
|
|
if on_rtd or on_travis:
|
2014-09-25 12:43:43 +00:00
|
|
|
MOCK_MODULES += ['libtorrent', 'pygtk', "gtk", "gobject", "gtk.gdk", "pango", "cairo", "pangocairo"]
|
2014-09-22 11:43:28 +00:00
|
|
|
|
2014-02-20 17:24:11 +00:00
|
|
|
for mod_name in MOCK_MODULES:
|
|
|
|
sys.modules[mod_name] = Mock()
|
|
|
|
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# General configuration
|
|
|
|
# ---------------------
|
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be extensions
|
|
|
|
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
|
2014-09-21 14:37:29 +00:00
|
|
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinxcontrib.napoleon', 'sphinx.ext.coverage']
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
|
|
|
templates_path = ['_templates']
|
|
|
|
|
|
|
|
# The suffix of source filenames.
|
|
|
|
source_suffix = '.rst'
|
|
|
|
|
|
|
|
# The master toctree document.
|
|
|
|
master_doc = 'index'
|
|
|
|
|
|
|
|
# General substitutions.
|
2009-07-20 10:51:33 +00:00
|
|
|
project = 'Deluge'
|
2014-02-20 17:24:11 +00:00
|
|
|
current_year = date.today().year
|
|
|
|
copyright = '2008-%s, Deluge Team' % current_year
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# The default replacements for |version| and |release|, also used in various
|
|
|
|
# other places throughout the built documents.
|
|
|
|
#
|
2010-03-24 22:36:28 +00:00
|
|
|
|
2008-11-05 03:14:45 +00:00
|
|
|
# The short X.Y version.
|
2014-09-20 18:34:25 +00:00
|
|
|
if get_version:
|
|
|
|
version = get_version(prefix='deluge-', suffix='.dev0')
|
|
|
|
# remove the created file by get_version
|
|
|
|
os.remove('RELEASE-VERSION')
|
|
|
|
else:
|
|
|
|
version = pkg_resources.require("Deluge")[0].version
|
2008-11-05 03:14:45 +00:00
|
|
|
# The full version, including alpha/beta/rc tags.
|
2010-03-24 22:36:28 +00:00
|
|
|
release = version
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# There are two options for replacing |today|: either, you set today to some
|
|
|
|
# non-false value, then it is used:
|
2014-09-22 11:43:28 +00:00
|
|
|
# today = ''
|
2008-11-05 03:14:45 +00:00
|
|
|
# Else, today_fmt is used as the format for a strftime call.
|
|
|
|
today_fmt = '%B %d, %Y'
|
|
|
|
|
|
|
|
# List of documents that shouldn't be included in the build.
|
2014-09-22 11:43:28 +00:00
|
|
|
# unused_docs = []
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# List of directories, relative to source directories, that shouldn't be searched
|
|
|
|
# for source files.
|
2014-09-22 11:43:28 +00:00
|
|
|
# exclude_dirs = []
|
2014-09-25 12:43:43 +00:00
|
|
|
exclude_patterns = ['deluge/_libtorrent.py', 'deluge/__rpcapi.py']
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# The reST default role (used for this markup: `text`) to use for all documents.
|
2014-09-22 11:43:28 +00:00
|
|
|
# default_role = None
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
2014-09-22 11:43:28 +00:00
|
|
|
# add_function_parentheses = True
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If true, the current module name will be prepended to all description
|
|
|
|
# unit titles (such as .. function::).
|
2014-09-22 11:43:28 +00:00
|
|
|
# add_module_names = True
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
|
|
# output. They are ignored by default.
|
2014-09-22 11:43:28 +00:00
|
|
|
# show_authors = False
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
|
|
pygments_style = 'sphinx'
|
|
|
|
|
|
|
|
|
|
|
|
# Options for HTML output
|
|
|
|
# -----------------------
|
|
|
|
|
|
|
|
# The style sheet to use for HTML and HTML Help pages. A file of that name
|
|
|
|
# must exist either in Sphinx' static/ path, or in one of the custom paths
|
|
|
|
# given in html_static_path.
|
|
|
|
html_style = 'default.css'
|
|
|
|
|
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to
|
|
|
|
# "<project> v<release> documentation".
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_title = None
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_short_title = None
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# The name of an image file (within the static path) to place at the top of
|
|
|
|
# the sidebar.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_logo = None
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# The name of an image file (within the static path) to use as favicon of the
|
|
|
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
|
|
# pixels large.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_favicon = None
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# 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".
|
2014-02-20 17:24:11 +00:00
|
|
|
# html_static_path = ['_static']
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
|
|
# using the given strftime format.
|
|
|
|
html_last_updated_fmt = '%b %d, %Y'
|
|
|
|
|
|
|
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
|
|
# typographically correct entities.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_use_smartypants = True
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Custom sidebar templates, maps document names to template names.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_sidebars = {}
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Additional templates that should be rendered to pages, maps page names to
|
|
|
|
# template names.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_additional_pages = {}
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_use_modindex = True
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If false, no index is generated.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_use_index = True
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If true, the index is split into individual pages for each letter.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_split_index = False
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If true, the reST sources are included in the HTML build as _sources/<name>.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_copy_source = True
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If true, an OpenSearch description file will be output, and all pages will
|
|
|
|
# contain a <link> tag referring to it. The value of this option must be the
|
|
|
|
# base URL from which the finished HTML is served.
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_use_opensearch = ''
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
|
2014-09-22 11:43:28 +00:00
|
|
|
# html_file_suffix = ''
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
|
|
|
htmlhelp_basename = 'delugedoc'
|
|
|
|
|
|
|
|
|
|
|
|
# Options for LaTeX output
|
|
|
|
# ------------------------
|
|
|
|
|
|
|
|
# The paper size ('letter' or 'a4').
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_paper_size = 'letter'
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# The font size ('10pt', '11pt' or '12pt').
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_font_size = '10pt'
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title, author, document class [howto/manual]).
|
|
|
|
latex_documents = [
|
2014-09-19 18:10:09 +00:00
|
|
|
('index', 'deluge.tex', 'deluge Documentation',
|
|
|
|
'Deluge Team', 'manual'),
|
2008-11-05 03:14:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top of
|
|
|
|
# the title page.
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_logo = None
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
|
|
# not chapters.
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_use_parts = False
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Additional stuff for the LaTeX preamble.
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_preamble = ''
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# Documents to append as an appendix to all manuals.
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_appendices = []
|
2008-11-05 03:14:45 +00:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2014-09-22 11:43:28 +00:00
|
|
|
# latex_use_modindex = True
|