1
0
Fork 1
mirror of https://github.com/coddingtonbear/django-mailbox.git synced 2026-07-09 22:38:19 +02:00
django-mailbox/docs/conf.py

315 lines
10 KiB
Python
Raw Normal View History

2013-01-22 20:37:11 -08:00
#
# django-mailbox documentation build configuration file, created by
# sphinx-quickstart on Tue Jan 22 20:29:12 2013.
#
# This file is execfile()d with the current directory set to its containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
import sys, os
# 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.
2021-02-03 23:05:48 -05:00
# sys.path.insert(0, os.path.abspath('.'))
2013-01-22 20:37:11 -08:00
# -- General configuration -----------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
2021-02-03 23:05:48 -05:00
# needs_sphinx = '1.0'
2013-01-22 20:37:11 -08:00
# Add any Sphinx extension module names here, as strings. They can be extensions
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
2021-02-03 23:05:48 -05:00
extensions = ["sphinx.ext.autodoc", "sphinx.ext.viewcode"]
2013-01-22 20:37:11 -08:00
# Add any paths that contain templates here, relative to this directory.
2021-02-03 23:05:48 -05:00
templates_path = ["_templates"]
2013-01-22 20:37:11 -08:00
# The suffix of source filenames.
2021-02-03 23:05:48 -05:00
source_suffix = ".rst"
2013-01-22 20:37:11 -08:00
# The encoding of source files.
2021-02-03 23:05:48 -05:00
# source_encoding = 'utf-8-sig'
2013-01-22 20:37:11 -08:00
# The master toctree document.
2021-02-03 23:05:48 -05:00
master_doc = "index"
2013-01-22 20:37:11 -08:00
# General information about the project.
2021-02-03 23:05:48 -05:00
project = "django-mailbox"
copyright = "2020, Adam Coddington"
2013-01-22 20:37:11 -08:00
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
2021-02-03 23:05:48 -05:00
version = "3.3"
2013-01-22 20:37:11 -08:00
# The full version, including alpha/beta/rc tags.
2021-02-03 23:05:48 -05:00
release = "3.3"
2013-01-22 20:37:11 -08:00
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2021-02-03 23:05:48 -05:00
# language = None
2013-01-22 20:37:11 -08:00
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
2021-02-03 23:05:48 -05:00
# today = ''
2013-01-22 20:37:11 -08:00
# Else, today_fmt is used as the format for a strftime call.
2021-02-03 23:05:48 -05:00
# today_fmt = '%B %d, %Y'
2013-01-22 20:37:11 -08:00
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
2021-02-03 23:05:48 -05:00
exclude_patterns = ["_build"]
2013-01-22 20:37:11 -08:00
# The reST default role (used for this markup: `text`) to use for all documents.
2021-02-03 23:05:48 -05:00
# default_role = None
2013-01-22 20:37:11 -08:00
# If true, '()' will be appended to :func: etc. cross-reference text.
2021-02-03 23:05:48 -05:00
# add_function_parentheses = True
2013-01-22 20:37:11 -08:00
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
2021-02-03 23:05:48 -05:00
# add_module_names = True
2013-01-22 20:37:11 -08:00
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
2021-02-03 23:05:48 -05:00
# show_authors = False
2013-01-22 20:37:11 -08:00
# The name of the Pygments (syntax highlighting) style to use.
2021-02-03 23:05:48 -05:00
pygments_style = "sphinx"
2013-01-22 20:37:11 -08:00
# A list of ignored prefixes for module index sorting.
2021-02-03 23:05:48 -05:00
# modindex_common_prefix = []
2013-01-22 20:37:11 -08:00
# -- Options for HTML output ---------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
2021-02-03 23:05:48 -05:00
html_theme = "default"
2013-01-22 20:37:11 -08:00
# Theme options are theme-specific and customize the look and feel of a theme
# further. For a list of options available for each theme, see the
# documentation.
2021-02-03 23:05:48 -05:00
# html_theme_options = {}
2013-01-22 20:37:11 -08:00
# Add any paths that contain custom themes here, relative to this directory.
2021-02-03 23:05:48 -05:00
# html_theme_path = []
2013-01-22 20:37:11 -08:00
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
2021-02-03 23:05:48 -05:00
# html_title = None
2013-01-22 20:37:11 -08:00
# A shorter title for the navigation bar. Default is the same as html_title.
2021-02-03 23:05:48 -05:00
# html_short_title = None
2013-01-22 20:37:11 -08:00
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
2021-02-03 23:05:48 -05:00
# html_logo = None
2013-01-22 20:37:11 -08: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.
2021-02-03 23:05:48 -05:00
# html_favicon = None
2013-01-22 20:37:11 -08: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".
# html_static_path = ['_static']
2013-01-22 20:37:11 -08:00
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
2021-02-03 23:05:48 -05:00
# html_last_updated_fmt = '%b %d, %Y'
2013-01-22 20:37:11 -08:00
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
2021-02-03 23:05:48 -05:00
# html_use_smartypants = True
2013-01-22 20:37:11 -08:00
# Custom sidebar templates, maps document names to template names.
2021-02-03 23:05:48 -05:00
# html_sidebars = {}
2013-01-22 20:37:11 -08:00
# Additional templates that should be rendered to pages, maps page names to
# template names.
2021-02-03 23:05:48 -05:00
# html_additional_pages = {}
2013-01-22 20:37:11 -08:00
# If false, no module index is generated.
2021-02-03 23:05:48 -05:00
# html_domain_indices = True
2013-01-22 20:37:11 -08:00
# If false, no index is generated.
2021-02-03 23:05:48 -05:00
# html_use_index = True
2013-01-22 20:37:11 -08:00
# If true, the index is split into individual pages for each letter.
2021-02-03 23:05:48 -05:00
# html_split_index = False
2013-01-22 20:37:11 -08:00
# If true, links to the reST sources are added to the pages.
2021-02-03 23:05:48 -05:00
# html_show_sourcelink = True
2013-01-22 20:37:11 -08:00
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
2021-02-03 23:05:48 -05:00
# html_show_sphinx = True
2013-01-22 20:37:11 -08:00
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
2021-02-03 23:05:48 -05:00
# html_show_copyright = True
2013-01-22 20:37:11 -08: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.
2021-02-03 23:05:48 -05:00
# html_use_opensearch = ''
2013-01-22 20:37:11 -08:00
# This is the file name suffix for HTML files (e.g. ".xhtml").
2021-02-03 23:05:48 -05:00
# html_file_suffix = None
2013-01-22 20:37:11 -08:00
# Output file base name for HTML help builder.
2021-02-03 23:05:48 -05:00
htmlhelp_basename = "django-mailboxdoc"
2013-01-22 20:37:11 -08:00
# -- Options for LaTeX output --------------------------------------------------
latex_elements = {
2021-02-03 23:05:48 -05:00
# The paper size ('letterpaper' or 'a4paper').
#'papersize': 'letterpaper',
# The font size ('10pt', '11pt' or '12pt').
#'pointsize': '10pt',
# Additional stuff for the LaTeX preamble.
#'preamble': '',
2013-01-22 20:37:11 -08:00
}
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
2021-02-03 23:05:48 -05:00
(
"index",
"django-mailbox.tex",
"django-mailbox Documentation",
"Adam Coddington",
"manual",
),
2013-01-22 20:37:11 -08:00
]
# The name of an image file (relative to this directory) to place at the top of
# the title page.
2021-02-03 23:05:48 -05:00
# latex_logo = None
2013-01-22 20:37:11 -08:00
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
2021-02-03 23:05:48 -05:00
# latex_use_parts = False
2013-01-22 20:37:11 -08:00
# If true, show page references after internal links.
2021-02-03 23:05:48 -05:00
# latex_show_pagerefs = False
2013-01-22 20:37:11 -08:00
# If true, show URL addresses after external links.
2021-02-03 23:05:48 -05:00
# latex_show_urls = False
2013-01-22 20:37:11 -08:00
# Documents to append as an appendix to all manuals.
2021-02-03 23:05:48 -05:00
# latex_appendices = []
2013-01-22 20:37:11 -08:00
# If false, no module index is generated.
2021-02-03 23:05:48 -05:00
# latex_domain_indices = True
2013-01-22 20:37:11 -08:00
# -- Options for manual page output --------------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
2021-02-03 23:05:48 -05:00
("index", "django-mailbox", "django-mailbox Documentation", ["Adam Coddington"], 1)
2013-01-22 20:37:11 -08:00
]
# If true, show URL addresses after external links.
2021-02-03 23:05:48 -05:00
# man_show_urls = False
2013-01-22 20:37:11 -08:00
# -- Options for Texinfo output ------------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
2021-02-03 23:05:48 -05:00
(
"index",
"django-mailbox",
"django-mailbox Documentation",
"Adam Coddington",
"django-mailbox",
"One line description of project.",
"Miscellaneous",
),
2013-01-22 20:37:11 -08:00
]
# Documents to append as an appendix to all manuals.
2021-02-03 23:05:48 -05:00
# texinfo_appendices = []
2013-01-22 20:37:11 -08:00
# If false, no module index is generated.
2021-02-03 23:05:48 -05:00
# texinfo_domain_indices = True
2013-01-22 20:37:11 -08:00
# How to display URL addresses: 'footnote', 'no', or 'inline'.
2021-02-03 23:05:48 -05:00
# texinfo_show_urls = 'footnote'
2021-02-03 23:05:48 -05:00
sys.path.insert(0, os.path.abspath(".."))
2016-08-16 07:47:18 +02:00
import inspect
import django
from django.utils.html import strip_tags
from django.utils.encoding import force_text
from django.conf import settings
2021-02-03 23:05:48 -05:00
settings.configure(
INSTALLED_APPS=[
"django_mailbox",
]
)
2016-08-16 07:47:18 +02:00
django.setup()
2021-02-03 23:05:48 -05:00
2016-08-16 07:47:18 +02:00
def process_docstring(app, what, name, obj, options, lines):
# Source: https://gist.github.com/abulka/48b54ea4cbc7eb014308
# This causes import errors if left outside the function
from django.db import models
# Only look at objects that inherit from Django's base model class
if inspect.isclass(obj) and issubclass(obj, models.Model):
# Grab the field list from the meta class
fields = obj._meta.get_fields()
for field in fields:
# Skip ManyToOneRel and ManyToManyRel fields which have no 'verbose_name' or 'help_text'
2021-02-03 23:05:48 -05:00
if not hasattr(field, "verbose_name"):
2016-08-16 07:47:18 +02:00
continue
# Decode and strip any html out of the field's help text
help_text = strip_tags(force_text(field.help_text))
# Decode and capitalize the verbose name, for use if there isn't
# any help text
verbose_name = force_text(field.verbose_name).capitalize()
if help_text:
# Add the model field to the end of the docstring as a param
# using the help text as the description
2021-02-03 23:05:48 -05:00
lines.append(":param {}: {}".format(field.attname, help_text))
2016-08-16 07:47:18 +02:00
else:
# Add the model field to the end of the docstring as a param
# using the verbose name as the description
2021-02-03 23:05:48 -05:00
lines.append(":param {}: {}".format(field.attname, verbose_name))
2016-08-16 07:47:18 +02:00
# Add the field's type to the docstring
if isinstance(field, models.ForeignKey):
to = field.related_model
2021-02-03 23:05:48 -05:00
lines.append(
":type {}: {} to :class:`~{}.{}`".format(
field.attname, type(field).__name__, to.__module__, to.__name__
)
)
2016-08-16 07:47:18 +02:00
else:
2021-02-03 23:05:48 -05:00
lines.append(":type {}: {}".format(field.attname, type(field).__name__))
2016-08-16 07:47:18 +02:00
# Return the extended docstring
return lines
2021-02-03 23:05:48 -05:00
2016-08-16 07:47:18 +02:00
def setup(app):
# Register the docstring processor with sphinx
2021-02-03 23:05:48 -05:00
app.connect("autodoc-process-docstring", process_docstring)