2
0

conf.py 12 KB

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