conf.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Django documentation build configuration file, created by
  4. # sphinx-quickstart on Thu Mar 27 09:06:53 2008.
  5. #
  6. # This file is execfile()d with the current directory set to its containing dir.
  7. #
  8. # The contents of this file are pickled, so don't put values in the namespace
  9. # that aren't pickleable (module imports are okay, they're removed automatically).
  10. #
  11. # All configuration values have a default; values that are commented out
  12. # serve to show the default.
  13. from __future__ import unicode_literals
  14. import sys
  15. from os.path import abspath, dirname, join
  16. # Make sure we get the version of this copy of Django
  17. sys.path.insert(1, dirname(dirname(abspath(__file__))))
  18. # If extensions (or modules to document with autodoc) are in another directory,
  19. # add these directories to sys.path here. If the directory is relative to the
  20. # documentation root, use os.path.abspath to make it absolute, like shown here.
  21. sys.path.append(abspath(join(dirname(__file__), "_ext")))
  22. # -- General configuration -----------------------------------------------------
  23. # If your documentation needs a minimal Sphinx version, state it here.
  24. needs_sphinx = '1.0'
  25. # Add any Sphinx extension module names here, as strings. They can be extensions
  26. # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
  27. extensions = [
  28. "djangodocs",
  29. "sphinx.ext.intersphinx",
  30. "sphinx.ext.viewcode",
  31. "ticket_role",
  32. ]
  33. # Spelling check needs an additional module that is not installed by default.
  34. # Add it only if spelling check is requested so docs can be generated without it.
  35. if 'spelling' in sys.argv:
  36. extensions.append("sphinxcontrib.spelling")
  37. # Spelling language.
  38. spelling_lang = 'en_US'
  39. # Location of word list.
  40. spelling_word_list_filename = 'spelling_wordlist'
  41. # Add any paths that contain templates here, relative to this directory.
  42. # templates_path = []
  43. # The suffix of source filenames.
  44. source_suffix = '.txt'
  45. # The encoding of source files.
  46. #source_encoding = 'utf-8-sig'
  47. # The master toctree document.
  48. master_doc = 'contents'
  49. # General substitutions.
  50. project = 'Django'
  51. copyright = 'Django Software Foundation and contributors'
  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
  54. # built documents.
  55. #
  56. # The short X.Y version.
  57. version = '1.8'
  58. # The full version, including alpha/beta/rc tags.
  59. try:
  60. from django import VERSION, get_version
  61. except ImportError:
  62. release = version
  63. else:
  64. def django_release():
  65. pep386ver = get_version()
  66. if VERSION[3:5] == ('alpha', 0) and 'dev' not in pep386ver:
  67. return pep386ver + '.dev'
  68. return pep386ver
  69. release = django_release()
  70. # The "development version" of Django
  71. django_next_version = '1.8'
  72. # The language for content autogenerated by Sphinx. Refer to documentation
  73. # for a list of supported languages.
  74. #language = None
  75. # Location for .po/.mo translation files used when language is set
  76. locale_dirs = ['locale/']
  77. # There are two options for replacing |today|: either, you set today to some
  78. # non-false value, then it is used:
  79. #today = ''
  80. # Else, today_fmt is used as the format for a strftime call.
  81. today_fmt = '%B %d, %Y'
  82. # List of patterns, relative to source directory, that match files and
  83. # directories to ignore when looking for source files.
  84. exclude_patterns = ['_build']
  85. # The reST default role (used for this markup: `text`) to use for all documents.
  86. #default_role = None
  87. # If true, '()' will be appended to :func: etc. cross-reference text.
  88. add_function_parentheses = True
  89. # If true, the current module name will be prepended to all description
  90. # unit titles (such as .. function::).
  91. add_module_names = False
  92. # If true, sectionauthor and moduleauthor directives will be shown in the
  93. # output. They are ignored by default.
  94. show_authors = False
  95. # The name of the Pygments (syntax highlighting) style to use.
  96. pygments_style = 'trac'
  97. # Links to Python's docs should reference the most recent version of the 3.x
  98. # branch, which is located at this URL.
  99. intersphinx_mapping = {
  100. 'python': ('http://docs.python.org/3/', None),
  101. 'sphinx': ('http://sphinx-doc.org/', None),
  102. 'six': ('http://pythonhosted.org/six/', None),
  103. 'simplejson': ('http://simplejson.readthedocs.org/en/latest/', None),
  104. }
  105. # Python's docs don't change every week.
  106. intersphinx_cache_limit = 90 # days
  107. # -- Options for HTML output ---------------------------------------------------
  108. # The theme to use for HTML and HTML Help pages. See the documentation for
  109. # a list of builtin themes.
  110. html_theme = "djangodocs"
  111. # Theme options are theme-specific and customize the look and feel of a theme
  112. # further. For a list of options available for each theme, see the
  113. # documentation.
  114. #html_theme_options = {}
  115. # Add any paths that contain custom themes here, relative to this directory.
  116. html_theme_path = ["_theme"]
  117. # The name for this set of Sphinx documents. If None, it defaults to
  118. # "<project> v<release> documentation".
  119. #html_title = None
  120. # A shorter title for the navigation bar. Default is the same as html_title.
  121. #html_short_title = None
  122. # The name of an image file (relative to this directory) to place at the top
  123. # of the sidebar.
  124. #html_logo = None
  125. # The name of an image file (within the static path) to use as favicon of the
  126. # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
  127. # pixels large.
  128. #html_favicon = None
  129. # Add any paths that contain custom static files (such as style sheets) here,
  130. # relative to this directory. They are copied after the builtin static files,
  131. # so a file named "default.css" will overwrite the builtin "default.css".
  132. #html_static_path = ["_static"]
  133. # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
  134. # using the given strftime format.
  135. html_last_updated_fmt = '%b %d, %Y'
  136. # If true, SmartyPants will be used to convert quotes and dashes to
  137. # typographically correct entities.
  138. html_use_smartypants = True
  139. # HTML translator class for the builder
  140. html_translator_class = "djangodocs.DjangoHTMLTranslator"
  141. # Content template for the index page.
  142. #html_index = ''
  143. # Custom sidebar templates, maps document names to template names.
  144. #html_sidebars = {}
  145. # Additional templates that should be rendered to pages, maps page names to
  146. # template names.
  147. html_additional_pages = {}
  148. # If false, no module index is generated.
  149. #html_domain_indices = True
  150. # If false, no index is generated.
  151. #html_use_index = True
  152. # If true, the index is split into individual pages for each letter.
  153. #html_split_index = False
  154. # If true, links to the reST sources are added to the pages.
  155. #html_show_sourcelink = True
  156. # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
  157. #html_show_sphinx = True
  158. # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
  159. #html_show_copyright = True
  160. # If true, an OpenSearch description file will be output, and all pages will
  161. # contain a <link> tag referring to it. The value of this option must be the
  162. # base URL from which the finished HTML is served.
  163. #html_use_opensearch = ''
  164. # This is the file name suffix for HTML files (e.g. ".xhtml").
  165. #html_file_suffix = None
  166. # Output file base name for HTML help builder.
  167. htmlhelp_basename = 'Djangodoc'
  168. modindex_common_prefix = ["django."]
  169. # Appended to every page
  170. rst_epilog = """
  171. .. |django-users| replace:: :ref:`django-users <django-users-mailing-list>`
  172. .. |django-core-mentorship| replace:: :ref:`django-core-mentorship <django-core-mentorship-mailing-list>`
  173. .. |django-developers| replace:: :ref:`django-developers <django-developers-mailing-list>`
  174. .. |django-announce| replace:: :ref:`django-announce <django-announce-mailing-list>`
  175. .. |django-updates| replace:: :ref:`django-updates <django-updates-mailing-list>`
  176. """
  177. # -- Options for LaTeX output --------------------------------------------------
  178. latex_elements = {
  179. 'preamble': ('\\DeclareUnicodeCharacter{2264}{\\ensuremath{\\le}}'
  180. '\\DeclareUnicodeCharacter{2265}{\\ensuremath{\\ge}}')
  181. }
  182. # Grouping the document tree into LaTeX files. List of tuples
  183. # (source start file, target name, title, author, document class [howto/manual]).
  184. #latex_documents = []
  185. latex_documents = [
  186. ('contents', 'django.tex', 'Django Documentation',
  187. 'Django Software Foundation', 'manual'),
  188. ]
  189. # The name of an image file (relative to this directory) to place at the top of
  190. # the title page.
  191. #latex_logo = None
  192. # For "manual" documents, if this is true, then toplevel headings are parts,
  193. # not chapters.
  194. #latex_use_parts = False
  195. # If true, show page references after internal links.
  196. #latex_show_pagerefs = False
  197. # If true, show URL addresses after external links.
  198. #latex_show_urls = False
  199. # Documents to append as an appendix to all manuals.
  200. #latex_appendices = []
  201. # If false, no module index is generated.
  202. #latex_domain_indices = True
  203. # -- Options for manual page output --------------------------------------------
  204. # One entry per manual page. List of tuples
  205. # (source start file, name, description, authors, manual section).
  206. man_pages = [
  207. ('contents', 'django', 'Django Documentation', ['Django Software Foundation'], 1)
  208. ]
  209. # -- Options for Texinfo output ------------------------------------------------
  210. # List of tuples (startdocname, targetname, title, author, dir_entry,
  211. # description, category, toctree_only)
  212. texinfo_documents = [(
  213. master_doc, "django", "", "", "Django",
  214. "Documentation of the Django framework", "Web development", False
  215. )]
  216. # -- Options for Epub output ---------------------------------------------------
  217. # Bibliographic Dublin Core info.
  218. epub_title = project
  219. epub_author = 'Django Software Foundation'
  220. epub_publisher = 'Django Software Foundation'
  221. epub_copyright = copyright
  222. # The basename for the epub file. It defaults to the project name.
  223. #epub_basename = 'Django'
  224. # The HTML theme for the epub output. Since the default themes are not optimized
  225. # for small screen space, using the same theme for HTML and epub output is
  226. # usually not wise. This defaults to 'epub', a theme designed to save visual
  227. # space.
  228. epub_theme = 'djangodocs-epub'
  229. # The language of the text. It defaults to the language option
  230. # or en if the language is not set.
  231. #epub_language = ''
  232. # The scheme of the identifier. Typical schemes are ISBN or URL.
  233. #epub_scheme = ''
  234. # The unique identifier of the text. This can be an ISBN number
  235. # or the project homepage.
  236. #epub_identifier = ''
  237. # A unique identification for the text.
  238. #epub_uid = ''
  239. # A tuple containing the cover image and cover page html template filenames.
  240. epub_cover = ('', 'epub-cover.html')
  241. # A sequence of (type, uri, title) tuples for the guide element of content.opf.
  242. #epub_guide = ()
  243. # HTML files that should be inserted before the pages created by sphinx.
  244. # The format is a list of tuples containing the path and title.
  245. #epub_pre_files = []
  246. # HTML files shat should be inserted after the pages created by sphinx.
  247. # The format is a list of tuples containing the path and title.
  248. #epub_post_files = []
  249. # A list of files that should not be packed into the epub file.
  250. #epub_exclude_files = []
  251. # The depth of the table of contents in toc.ncx.
  252. #epub_tocdepth = 3
  253. # Allow duplicate toc entries.
  254. #epub_tocdup = True
  255. # Choose between 'default' and 'includehidden'.
  256. #epub_tocscope = 'default'
  257. # Fix unsupported image types using the PIL.
  258. #epub_fix_images = False
  259. # Scale large images.
  260. #epub_max_image_width = 0
  261. # How to display URL addresses: 'footnote', 'no', or 'inline'.
  262. #epub_show_urls = 'inline'
  263. # If false, no index is generated.
  264. #epub_use_index = True
  265. # -- ticket options ------------------------------------------------------------
  266. ticket_url = 'https://code.djangoproject.com/ticket/%s'