conf.py 12 KB

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