conf.py 15 KB

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