conf.py 14 KB

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