conf.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429
  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/g/sphinx-dev/c/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. "sphinx.ext.autosectionlabel",
  38. ]
  39. # AutosectionLabel settings.
  40. # Uses a <page>:<label> schema which doesn't work for duplicate sub-section
  41. # labels, so set max depth.
  42. autosectionlabel_prefix_document = True
  43. autosectionlabel_maxdepth = 2
  44. # Linkcheck settings.
  45. linkcheck_ignore = [
  46. # Special-use addresses and domain names. (RFC 6761/6890)
  47. r"^https?://(?:127\.0\.0\.1|\[::1\])(?::\d+)?/",
  48. r"^https?://(?:[^/\.]+\.)*example\.(?:com|net|org)(?::\d+)?/",
  49. r"^https?://(?:[^/\.]+\.)*(?:example|invalid|localhost|test)(?::\d+)?/",
  50. # Pages that are inaccessible because they require authentication.
  51. r"^https://github\.com/[^/]+/[^/]+/fork",
  52. r"^https://code\.djangoproject\.com/github/login",
  53. r"^https://code\.djangoproject\.com/newticket",
  54. r"^https://(?:code|www)\.djangoproject\.com/admin/",
  55. r"^https://www\.djangoproject\.com/community/add/blogs/",
  56. r"^https://www\.google\.com/webmasters/tools/ping",
  57. r"^https://search\.google\.com/search-console/welcome",
  58. # Fragments used to dynamically switch content or populate fields.
  59. r"^https://web\.libera\.chat/#",
  60. r"^https://github\.com/[^#]+#L\d+-L\d+$",
  61. r"^https://help\.apple\.com/itc/podcasts_connect/#/itc",
  62. # Anchors on certain pages with missing a[name] attributes.
  63. r"^https://tools\.ietf\.org/html/rfc1123\.html#section-",
  64. ]
  65. # Spelling check needs an additional module that is not installed by default.
  66. # Add it only if spelling check is requested so docs can be generated without it.
  67. if "spelling" in sys.argv:
  68. extensions.append("sphinxcontrib.spelling")
  69. # Spelling language.
  70. spelling_lang = "en_US"
  71. # Location of word list.
  72. spelling_word_list_filename = "spelling_wordlist"
  73. spelling_warning = True
  74. # Add any paths that contain templates here, relative to this directory.
  75. # templates_path = []
  76. # The suffix of source filenames.
  77. source_suffix = ".txt"
  78. # The encoding of source files.
  79. # source_encoding = 'utf-8-sig'
  80. # The root document.
  81. root_doc = "contents"
  82. # General substitutions.
  83. project = "Django"
  84. copyright = "Django Software Foundation and contributors"
  85. # The version info for the project you're documenting, acts as replacement for
  86. # |version| and |release|, also used in various other places throughout the
  87. # built documents.
  88. #
  89. # The short X.Y version.
  90. version = "4.1"
  91. # The full version, including alpha/beta/rc tags.
  92. try:
  93. from django import VERSION, get_version
  94. except ImportError:
  95. release = version
  96. else:
  97. def django_release():
  98. pep440ver = get_version()
  99. if VERSION[3:5] == ("alpha", 0) and "dev" not in pep440ver:
  100. return pep440ver + ".dev"
  101. return pep440ver
  102. release = django_release()
  103. # The "development version" of Django
  104. django_next_version = "4.1"
  105. extlinks = {
  106. "bpo": ("https://bugs.python.org/issue%s", "bpo-"),
  107. "commit": ("https://github.com/django/django/commit/%s", ""),
  108. "cve": ("https://nvd.nist.gov/vuln/detail/CVE-%s", "CVE-"),
  109. # A file or directory. GitHub redirects from blob to tree if needed.
  110. "source": ("https://github.com/django/django/blob/main/%s", ""),
  111. "ticket": ("https://code.djangoproject.com/ticket/%s", "#"),
  112. }
  113. # The language for content autogenerated by Sphinx. Refer to documentation
  114. # for a list of supported languages.
  115. # language = None
  116. # Location for .po/.mo translation files used when language is set
  117. locale_dirs = ["locale/"]
  118. # There are two options for replacing |today|: either, you set today to some
  119. # non-false value, then it is used:
  120. # today = ''
  121. # Else, today_fmt is used as the format for a strftime call.
  122. today_fmt = "%B %d, %Y"
  123. # List of patterns, relative to source directory, that match files and
  124. # directories to ignore when looking for source files.
  125. exclude_patterns = ["_build", "_theme", "requirements.txt"]
  126. # The reST default role (used for this markup: `text`) to use for all documents.
  127. default_role = "default-role-error"
  128. # If true, '()' will be appended to :func: etc. cross-reference text.
  129. add_function_parentheses = True
  130. # If true, the current module name will be prepended to all description
  131. # unit titles (such as .. function::).
  132. add_module_names = False
  133. # If true, sectionauthor and moduleauthor directives will be shown in the
  134. # output. They are ignored by default.
  135. show_authors = False
  136. # The name of the Pygments (syntax highlighting) style to use.
  137. pygments_style = "trac"
  138. # Links to Python's docs should reference the most recent version of the 3.x
  139. # branch, which is located at this URL.
  140. intersphinx_mapping = {
  141. "python": ("https://docs.python.org/3/", None),
  142. "sphinx": ("https://www.sphinx-doc.org/en/master/", None),
  143. "psycopg2": ("https://www.psycopg.org/docs/", None),
  144. }
  145. # Python's docs don't change every week.
  146. intersphinx_cache_limit = 90 # days
  147. # The 'versionadded' and 'versionchanged' directives are overridden.
  148. suppress_warnings = ["app.add_directive"]
  149. # -- Options for HTML output ---------------------------------------------------
  150. # The theme to use for HTML and HTML Help pages. See the documentation for
  151. # a list of builtin themes.
  152. html_theme = "djangodocs"
  153. # Theme options are theme-specific and customize the look and feel of a theme
  154. # further. For a list of options available for each theme, see the
  155. # documentation.
  156. # html_theme_options = {}
  157. # Add any paths that contain custom themes here, relative to this directory.
  158. html_theme_path = ["_theme"]
  159. # The name for this set of Sphinx documents. If None, it defaults to
  160. # "<project> v<release> documentation".
  161. # html_title = None
  162. # A shorter title for the navigation bar. Default is the same as html_title.
  163. # html_short_title = None
  164. # The name of an image file (relative to this directory) to place at the top
  165. # of the sidebar.
  166. # html_logo = None
  167. # The name of an image file (within the static path) to use as favicon of the
  168. # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
  169. # pixels large.
  170. # html_favicon = None
  171. # Add any paths that contain custom static files (such as style sheets) here,
  172. # relative to this directory. They are copied after the builtin static files,
  173. # so a file named "default.css" will overwrite the builtin "default.css".
  174. # html_static_path = ["_static"]
  175. # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
  176. # using the given strftime format.
  177. html_last_updated_fmt = "%b %d, %Y"
  178. # Content template for the index page.
  179. # html_index = ''
  180. # Custom sidebar templates, maps document names to template names.
  181. # html_sidebars = {}
  182. # Additional templates that should be rendered to pages, maps page names to
  183. # template names.
  184. html_additional_pages = {}
  185. # If false, no module index is generated.
  186. # html_domain_indices = True
  187. # If false, no index is generated.
  188. # html_use_index = True
  189. # If true, the index is split into individual pages for each letter.
  190. # html_split_index = False
  191. # If true, links to the reST sources are added to the pages.
  192. # html_show_sourcelink = True
  193. # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
  194. # html_show_sphinx = True
  195. # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
  196. # html_show_copyright = True
  197. # If true, an OpenSearch description file will be output, and all pages will
  198. # contain a <link> tag referring to it. The value of this option must be the
  199. # base URL from which the finished HTML is served.
  200. # html_use_opensearch = ''
  201. # This is the file name suffix for HTML files (e.g. ".xhtml").
  202. # html_file_suffix = None
  203. # Output file base name for HTML help builder.
  204. htmlhelp_basename = "Djangodoc"
  205. modindex_common_prefix = ["django."]
  206. # Appended to every page
  207. rst_epilog = """
  208. .. |django-users| replace:: :ref:`django-users <django-users-mailing-list>`
  209. .. |django-developers| replace:: :ref:`django-developers <django-developers-mailing-list>`
  210. .. |django-announce| replace:: :ref:`django-announce <django-announce-mailing-list>`
  211. .. |django-updates| replace:: :ref:`django-updates <django-updates-mailing-list>`
  212. """ # NOQA
  213. # -- Options for LaTeX output --------------------------------------------------
  214. # Use XeLaTeX for Unicode support.
  215. latex_engine = "xelatex"
  216. latex_use_xindy = False
  217. # Set font for CJK and fallbacks for unicode characters.
  218. latex_elements = {
  219. "fontpkg": r"""
  220. \setmainfont{Symbola}
  221. """,
  222. "preamble": r"""
  223. \usepackage{newunicodechar}
  224. \usepackage[UTF8]{ctex}
  225. \newunicodechar{π}{\ensuremath{\pi}}
  226. \newunicodechar{≤}{\ensuremath{\le}}
  227. \newunicodechar{≥}{\ensuremath{\ge}}
  228. \newunicodechar{♥}{\ensuremath{\heartsuit}}
  229. \newunicodechar{…}{\ensuremath{\ldots}}
  230. """,
  231. }
  232. # Grouping the document tree into LaTeX files. List of tuples
  233. # (source start file, target name, title, author, document class [howto/manual]).
  234. # latex_documents = []
  235. latex_documents = [
  236. (
  237. "contents",
  238. "django.tex",
  239. "Django Documentation",
  240. "Django Software Foundation",
  241. "manual",
  242. ),
  243. ]
  244. # The name of an image file (relative to this directory) to place at the top of
  245. # the title page.
  246. # latex_logo = None
  247. # For "manual" documents, if this is true, then toplevel headings are parts,
  248. # not chapters.
  249. # latex_use_parts = False
  250. # If true, show page references after internal links.
  251. # latex_show_pagerefs = False
  252. # If true, show URL addresses after external links.
  253. # latex_show_urls = False
  254. # Documents to append as an appendix to all manuals.
  255. # latex_appendices = []
  256. # If false, no module index is generated.
  257. # latex_domain_indices = True
  258. # -- Options for manual page output --------------------------------------------
  259. # One entry per manual page. List of tuples
  260. # (source start file, name, description, authors, manual section).
  261. man_pages = [
  262. (
  263. "ref/django-admin",
  264. "django-admin",
  265. "Utility script for the Django web framework",
  266. ["Django Software Foundation"],
  267. 1,
  268. )
  269. ]
  270. # -- Options for Texinfo output ------------------------------------------------
  271. # List of tuples (startdocname, targetname, title, author, dir_entry,
  272. # description, category, toctree_only)
  273. texinfo_documents = [
  274. (
  275. root_doc,
  276. "django",
  277. "",
  278. "",
  279. "Django",
  280. "Documentation of the Django framework",
  281. "Web development",
  282. False,
  283. )
  284. ]
  285. # -- Options for Epub output ---------------------------------------------------
  286. # Bibliographic Dublin Core info.
  287. epub_title = project
  288. epub_author = "Django Software Foundation"
  289. epub_publisher = "Django Software Foundation"
  290. epub_copyright = copyright
  291. # The basename for the epub file. It defaults to the project name.
  292. # epub_basename = 'Django'
  293. # The HTML theme for the epub output. Since the default themes are not optimized
  294. # for small screen space, using the same theme for HTML and epub output is
  295. # usually not wise. This defaults to 'epub', a theme designed to save visual
  296. # space.
  297. epub_theme = "djangodocs-epub"
  298. # The language of the text. It defaults to the language option
  299. # or en if the language is not set.
  300. # epub_language = ''
  301. # The scheme of the identifier. Typical schemes are ISBN or URL.
  302. # epub_scheme = ''
  303. # The unique identifier of the text. This can be an ISBN number
  304. # or the project homepage.
  305. # epub_identifier = ''
  306. # A unique identification for the text.
  307. # epub_uid = ''
  308. # A tuple containing the cover image and cover page html template filenames.
  309. epub_cover = ("", "epub-cover.html")
  310. # A sequence of (type, uri, title) tuples for the guide element of content.opf.
  311. # epub_guide = ()
  312. # HTML files that should be inserted before the pages created by sphinx.
  313. # The format is a list of tuples containing the path and title.
  314. # epub_pre_files = []
  315. # HTML files shat should be inserted after the pages created by sphinx.
  316. # The format is a list of tuples containing the path and title.
  317. # epub_post_files = []
  318. # A list of files that should not be packed into the epub file.
  319. # epub_exclude_files = []
  320. # The depth of the table of contents in toc.ncx.
  321. # epub_tocdepth = 3
  322. # Allow duplicate toc entries.
  323. # epub_tocdup = True
  324. # Choose between 'default' and 'includehidden'.
  325. # epub_tocscope = 'default'
  326. # Fix unsupported image types using the PIL.
  327. # epub_fix_images = False
  328. # Scale large images.
  329. # epub_max_image_width = 0
  330. # How to display URL addresses: 'footnote', 'no', or 'inline'.
  331. # epub_show_urls = 'inline'
  332. # If false, no index is generated.
  333. # epub_use_index = True