conf.py 12 KB

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