2008-03-27 23:03:52 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# Django documentation build configuration file, created by
|
|
|
|
# sphinx-quickstart on Thu Mar 27 09:06:53 2008.
|
|
|
|
#
|
|
|
|
# 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).
|
|
|
|
#
|
2010-07-24 18:21:21 +08:00
|
|
|
# All configuration values have a default; values that are commented out
|
|
|
|
# serve to show the default.
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2008-03-27 23:03:52 +08:00
|
|
|
import sys
|
2012-10-29 05:18:09 +08:00
|
|
|
from os.path import abspath, dirname, join
|
|
|
|
|
|
|
|
# Make sure we use this copy of Django
|
|
|
|
sys.path.insert(1, abspath(dirname(dirname(__file__))))
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# 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.
|
2012-10-29 05:18:09 +08:00
|
|
|
sys.path.append(abspath(join(dirname(__file__), "_ext")))
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# -- General configuration -----------------------------------------------------
|
|
|
|
|
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
2010-11-20 07:19:56 +08:00
|
|
|
needs_sphinx = '1.0'
|
2008-03-27 23:03:52 +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.
|
2011-09-05 05:17:30 +08:00
|
|
|
extensions = ["djangodocs", "sphinx.ext.intersphinx"]
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# Add any paths that contain templates here, relative to this directory.
|
2010-07-26 04:39:40 +08:00
|
|
|
# templates_path = []
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# The suffix of source filenames.
|
|
|
|
source_suffix = '.txt'
|
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# The encoding of source files.
|
|
|
|
#source_encoding = 'utf-8-sig'
|
|
|
|
|
2008-03-27 23:03:52 +08:00
|
|
|
# The master toctree document.
|
2008-08-24 06:25:40 +08:00
|
|
|
master_doc = 'contents'
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# General substitutions.
|
|
|
|
project = 'Django'
|
2008-08-24 06:25:40 +08:00
|
|
|
copyright = 'Django Software Foundation and contributors'
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +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.
|
2008-03-27 23:03:52 +08:00
|
|
|
#
|
|
|
|
# The short X.Y version.
|
2012-10-27 09:01:34 +08:00
|
|
|
version = '1.6'
|
2008-03-27 23:03:52 +08:00
|
|
|
# The full version, including alpha/beta/rc tags.
|
2012-10-27 09:01:34 +08:00
|
|
|
try:
|
|
|
|
from django import VERSION, get_version
|
|
|
|
except ImportError:
|
|
|
|
release = version
|
|
|
|
else:
|
|
|
|
def django_release():
|
|
|
|
pep386ver = get_version()
|
|
|
|
if VERSION[3:5] == ('alpha', 0) and 'dev' not in pep386ver:
|
|
|
|
return pep386ver + '.dev'
|
|
|
|
return pep386ver
|
|
|
|
|
|
|
|
release = django_release()
|
|
|
|
|
2009-03-09 09:37:17 +08:00
|
|
|
# The next version to be released
|
2012-10-27 09:01:34 +08:00
|
|
|
django_next_version = '1.7'
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
#language = None
|
|
|
|
|
2008-03-27 23:03:52 +08:00
|
|
|
# There are two options for replacing |today|: either, you set today to some
|
|
|
|
# non-false value, then it is used:
|
|
|
|
#today = ''
|
|
|
|
# Else, today_fmt is used as the format for a strftime call.
|
|
|
|
today_fmt = '%B %d, %Y'
|
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
|
|
|
exclude_patterns = ['_build']
|
|
|
|
|
|
|
|
# The reST default role (used for this markup: `text`) to use for all documents.
|
|
|
|
#default_role = None
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
|
|
|
add_function_parentheses = True
|
|
|
|
|
|
|
|
# If true, the current module name will be prepended to all description
|
|
|
|
# unit titles (such as .. function::).
|
|
|
|
add_module_names = False
|
|
|
|
|
|
|
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
|
|
# output. They are ignored by default.
|
|
|
|
show_authors = False
|
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
2008-08-24 06:25:40 +08:00
|
|
|
pygments_style = 'trac'
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2011-09-05 05:17:30 +08:00
|
|
|
# Links to Python's docs should reference the most recent version of the 2.x
|
|
|
|
# branch, which is located at this URL.
|
|
|
|
intersphinx_mapping = {
|
|
|
|
'python': ('http://docs.python.org/2.7', None),
|
|
|
|
'sphinx': ('http://sphinx.pocoo.org/', None),
|
2012-07-22 16:29:07 +08:00
|
|
|
'six': ('http://packages.python.org/six/', None),
|
2011-09-05 05:17:30 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
# Python's docs don't change every week.
|
|
|
|
intersphinx_cache_limit = 90 # days
|
|
|
|
|
2010-07-24 18:21:21 +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.
|
|
|
|
html_theme = "djangodocs"
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
#html_theme_options = {}
|
|
|
|
|
|
|
|
# Add any paths that contain custom themes here, relative to this directory.
|
|
|
|
html_theme_path = ["_theme"]
|
|
|
|
|
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to
|
|
|
|
# "<project> v<release> documentation".
|
|
|
|
#html_title = None
|
|
|
|
|
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
|
|
|
#html_short_title = None
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# The name of an image file (relative to this directory) to place at the top
|
|
|
|
# of the sidebar.
|
|
|
|
#html_logo = None
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
#html_favicon = None
|
2008-03-27 23:03:52 +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".
|
2010-10-08 23:33:27 +08:00
|
|
|
#html_static_path = ["_static"]
|
2008-03-27 23:03:52 +08: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.
|
|
|
|
html_use_smartypants = True
|
|
|
|
|
2008-08-24 06:25:40 +08:00
|
|
|
# HTML translator class for the builder
|
|
|
|
html_translator_class = "djangodocs.DjangoHTMLTranslator"
|
|
|
|
|
2008-03-27 23:03:52 +08:00
|
|
|
# Content template for the index page.
|
|
|
|
#html_index = ''
|
|
|
|
|
|
|
|
# Custom sidebar templates, maps document names to template names.
|
|
|
|
#html_sidebars = {}
|
|
|
|
|
|
|
|
# Additional templates that should be rendered to pages, maps page names to
|
|
|
|
# template names.
|
2008-08-24 06:25:40 +08:00
|
|
|
html_additional_pages = {}
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2010-07-24 18:21:21 +08:00
|
|
|
#html_domain_indices = True
|
|
|
|
|
|
|
|
# If false, no index is generated.
|
|
|
|
#html_use_index = True
|
|
|
|
|
|
|
|
# If true, the index is split into individual pages for each letter.
|
|
|
|
#html_split_index = False
|
|
|
|
|
|
|
|
# If true, links to the reST sources are added to the pages.
|
|
|
|
#html_show_sourcelink = True
|
|
|
|
|
|
|
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
|
|
|
#html_show_sphinx = True
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
|
|
|
#html_show_copyright = True
|
|
|
|
|
|
|
|
# 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.
|
|
|
|
#html_use_opensearch = ''
|
|
|
|
|
|
|
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
|
|
|
#html_file_suffix = None
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
|
|
|
htmlhelp_basename = 'Djangodoc'
|
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
modindex_common_prefix = ["django."]
|
|
|
|
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# -- Options for LaTeX output --------------------------------------------------
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2012-08-12 03:46:36 +08:00
|
|
|
latex_elements = {
|
2012-08-29 04:45:51 +08:00
|
|
|
'preamble': ('\\DeclareUnicodeCharacter{2264}{\\ensuremath{\\le}}'
|
|
|
|
'\\DeclareUnicodeCharacter{2265}{\\ensuremath{\\ge}}')
|
2012-08-12 03:46:36 +08:00
|
|
|
}
|
2008-03-27 23:03:52 +08:00
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title, author, document class [howto/manual]).
|
|
|
|
#latex_documents = []
|
2008-08-24 06:25:40 +08:00
|
|
|
latex_documents = [
|
2012-06-08 00:08:47 +08:00
|
|
|
('contents', 'django.tex', 'Django Documentation',
|
|
|
|
'Django Software Foundation', 'manual'),
|
2008-08-24 06:25:40 +08:00
|
|
|
]
|
2008-03-27 23:03:52 +08:00
|
|
|
|
2010-07-24 18:21:21 +08:00
|
|
|
# The name of an image file (relative to this directory) to place at the top of
|
|
|
|
# the title page.
|
|
|
|
#latex_logo = None
|
|
|
|
|
|
|
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
|
|
# not chapters.
|
|
|
|
#latex_use_parts = False
|
|
|
|
|
|
|
|
# If true, show page references after internal links.
|
|
|
|
#latex_show_pagerefs = False
|
|
|
|
|
|
|
|
# If true, show URL addresses after external links.
|
|
|
|
#latex_show_urls = False
|
|
|
|
|
2008-03-27 23:03:52 +08:00
|
|
|
# Documents to append as an appendix to all manuals.
|
|
|
|
#latex_appendices = []
|
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2010-07-24 18:21:21 +08:00
|
|
|
#latex_domain_indices = True
|
2008-08-24 06:25:40 +08:00
|
|
|
|
|
|
|
|
2010-07-24 18:21:21 +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 = [
|
|
|
|
('contents', 'django', 'Django Documentation', ['Django Software Foundation'], 1)
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# -- Options for Epub output ---------------------------------------------------
|
|
|
|
|
|
|
|
# Bibliographic Dublin Core info.
|
2012-06-08 00:08:47 +08:00
|
|
|
epub_title = 'Django'
|
|
|
|
epub_author = 'Django Software Foundation'
|
|
|
|
epub_publisher = 'Django Software Foundation'
|
|
|
|
epub_copyright = '2010, Django Software Foundation'
|
2010-07-24 18:21:21 +08:00
|
|
|
|
|
|
|
# The language of the text. It defaults to the language option
|
|
|
|
# or en if the language is not set.
|
|
|
|
#epub_language = ''
|
|
|
|
|
|
|
|
# The scheme of the identifier. Typical schemes are ISBN or URL.
|
|
|
|
#epub_scheme = ''
|
|
|
|
|
|
|
|
# The unique identifier of the text. This can be a ISBN number
|
|
|
|
# or the project homepage.
|
|
|
|
#epub_identifier = ''
|
|
|
|
|
|
|
|
# A unique identification for the text.
|
|
|
|
#epub_uid = ''
|
|
|
|
|
|
|
|
# HTML files that should be inserted before the pages created by sphinx.
|
|
|
|
# The format is a list of tuples containing the path and title.
|
|
|
|
#epub_pre_files = []
|
|
|
|
|
|
|
|
# HTML files shat should be inserted after the pages created by sphinx.
|
|
|
|
# The format is a list of tuples containing the path and title.
|
|
|
|
#epub_post_files = []
|
|
|
|
|
|
|
|
# A list of files that should not be packed into the epub file.
|
|
|
|
#epub_exclude_files = []
|
|
|
|
|
|
|
|
# The depth of the table of contents in toc.ncx.
|
|
|
|
#epub_tocdepth = 3
|
|
|
|
|
|
|
|
# Allow duplicate toc entries.
|
|
|
|
#epub_tocdup = True
|