conf.py 15 KB

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