2015-04-04 15:00:34 +03:00
|
|
|
#
|
|
|
|
# Pillow (PIL Fork) documentation build configuration file, created by
|
|
|
|
# sphinx-quickstart on Sat Apr 4 07:54:11 2015.
|
|
|
|
#
|
|
|
|
# This file is execfile()d with the current directory set to its
|
|
|
|
# containing dir.
|
|
|
|
#
|
|
|
|
# Note that not all possible configuration values are present in this
|
|
|
|
# autogenerated file.
|
|
|
|
#
|
|
|
|
# All configuration values have a default; values that are commented out
|
|
|
|
# serve to show the default.
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# If extensions (or modules to document with autodoc) are in another directory,
|
|
|
|
# add these directories to sys.path here. If the directory is relative to the
|
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
2018-10-18 23:14:54 +03:00
|
|
|
# sys.path.insert(0, os.path.abspath('.'))
|
2023-12-21 14:13:31 +03:00
|
|
|
from __future__ import annotations
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2020-08-07 13:28:33 +03:00
|
|
|
import PIL
|
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# -- General configuration ------------------------------------------------
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# If your documentation needs a minimal Sphinx version, state it here.
|
2024-04-17 04:47:35 +03:00
|
|
|
needs_sphinx = "7.3"
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Add any Sphinx extension module names here, as strings. They can be
|
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
|
|
|
|
# ones.
|
2020-07-09 12:24:23 +03:00
|
|
|
extensions = [
|
2024-04-22 14:43:48 +03:00
|
|
|
"dater",
|
2020-07-09 12:24:23 +03:00
|
|
|
"sphinx.ext.autodoc",
|
2023-03-08 19:07:14 +03:00
|
|
|
"sphinx.ext.extlinks",
|
2023-03-21 15:05:58 +03:00
|
|
|
"sphinx.ext.intersphinx",
|
2020-07-09 12:24:23 +03:00
|
|
|
"sphinx.ext.viewcode",
|
2022-11-28 12:08:39 +03:00
|
|
|
"sphinx_copybutton",
|
|
|
|
"sphinx_inline_tabs",
|
2021-05-11 19:07:21 +03:00
|
|
|
"sphinxext.opengraph",
|
2020-07-09 12:24:23 +03:00
|
|
|
]
|
2015-04-04 15:00:34 +03:00
|
|
|
|
2020-07-10 00:20:45 +03:00
|
|
|
intersphinx_mapping = {"python": ("https://docs.python.org/3", None)}
|
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# The suffix(es) of source filenames.
|
|
|
|
# You can specify multiple suffix as a list of string:
|
|
|
|
# source_suffix = ['.rst', '.md']
|
2019-06-13 18:54:57 +03:00
|
|
|
source_suffix = ".rst"
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The encoding of source files.
|
2018-10-18 23:14:54 +03:00
|
|
|
# source_encoding = 'utf-8-sig'
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The master toctree document.
|
2019-06-13 18:54:57 +03:00
|
|
|
master_doc = "index"
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# General information about the project.
|
2019-09-30 17:56:31 +03:00
|
|
|
project = "Pillow (PIL Fork)"
|
2024-03-24 00:50:41 +03:00
|
|
|
copyright = (
|
|
|
|
"1995-2011 Fredrik Lundh and contributors, "
|
|
|
|
"2010-2024 Jeffrey A. Clark and contributors."
|
|
|
|
)
|
2024-03-23 16:40:39 +03:00
|
|
|
author = "Fredrik Lundh (PIL), Jeffrey A. Clark (Pillow)"
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# The version info for the project you're documenting, acts as replacement for
|
|
|
|
# |version| and |release|, also used in various other places throughout the
|
|
|
|
# built documents.
|
|
|
|
#
|
2013-04-12 21:52:50 +04:00
|
|
|
# The short X.Y version.
|
2018-04-11 12:05:09 +03:00
|
|
|
version = PIL.__version__
|
2013-04-12 21:52:50 +04:00
|
|
|
# The full version, including alpha/beta/rc tags.
|
2018-04-11 12:05:09 +03:00
|
|
|
release = PIL.__version__
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
|
|
|
# for a list of supported languages.
|
|
|
|
#
|
|
|
|
# This is also used if you do content translation via gettext catalogs.
|
|
|
|
# Usually you set "language" from the command line for these cases.
|
2022-06-04 09:38:06 +03:00
|
|
|
language = "en"
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# There are two options for replacing |today|: either, you set today to some
|
|
|
|
# non-false value, then it is used:
|
2018-10-18 23:14:54 +03:00
|
|
|
# today = ''
|
2015-04-04 15:00:34 +03:00
|
|
|
# Else, today_fmt is used as the format for a strftime call.
|
2018-10-18 23:14:54 +03:00
|
|
|
# today_fmt = '%B %d, %Y'
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# List of patterns, relative to source directory, that match files and
|
|
|
|
# directories to ignore when looking for source files.
|
2020-08-09 20:08:38 +03:00
|
|
|
exclude_patterns = ["_build", "releasenotes/template.rst"]
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The reST default role (used for this markup: `text`) to use for all
|
|
|
|
# documents.
|
2018-10-18 23:14:54 +03:00
|
|
|
# default_role = None
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, '()' will be appended to :func: etc. cross-reference text.
|
2018-10-18 23:14:54 +03:00
|
|
|
# add_function_parentheses = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, the current module name will be prepended to all description
|
|
|
|
# unit titles (such as .. function::).
|
2018-10-18 23:14:54 +03:00
|
|
|
# add_module_names = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, sectionauthor and moduleauthor directives will be shown in the
|
|
|
|
# output. They are ignored by default.
|
2018-10-18 23:14:54 +03:00
|
|
|
# show_authors = False
|
2013-04-12 21:52:50 +04:00
|
|
|
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
2019-06-13 18:54:57 +03:00
|
|
|
pygments_style = "sphinx"
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# A list of ignored prefixes for module index sorting.
|
2018-10-18 23:14:54 +03:00
|
|
|
# modindex_common_prefix = []
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, keep warnings as "system message" paragraphs in the built documents.
|
2018-10-18 23:14:54 +03:00
|
|
|
# keep_warnings = False
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, `todo` and `todoList` produce output, else they produce nothing.
|
|
|
|
todo_include_todos = False
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2020-07-10 02:48:42 +03:00
|
|
|
# If true, Sphinx will warn about all references where the target cannot be found.
|
|
|
|
# Default is False. You can activate this mode temporarily using the -n command-line
|
|
|
|
# switch.
|
|
|
|
nitpicky = True
|
|
|
|
|
|
|
|
# A list of (type, target) tuples (by default empty) that should be ignored when
|
|
|
|
# generating warnings in “nitpicky mode”. Note that type should include the domain name
|
|
|
|
# if present. Example entries would be ('py:func', 'int') or
|
|
|
|
# ('envvar', 'LD_LIBRARY_PATH').
|
2024-04-17 04:47:35 +03:00
|
|
|
# nitpick_ignore = []
|
2020-07-10 02:48:42 +03:00
|
|
|
|
2013-10-07 07:36:05 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# -- Options for HTML output ----------------------------------------------
|
|
|
|
|
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for
|
|
|
|
# a list of builtin themes.
|
|
|
|
|
2022-03-26 21:17:44 +03:00
|
|
|
html_theme = "furo"
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
|
|
# further. For a list of options available for each theme, see the
|
|
|
|
# documentation.
|
2022-03-28 13:41:44 +03:00
|
|
|
html_theme_options = {
|
|
|
|
"light_logo": "pillow-logo-dark-text.png",
|
|
|
|
"dark_logo": "pillow-logo.png",
|
|
|
|
}
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Add any paths that contain custom themes here, relative to this directory.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_theme_path = []
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The name for this set of Sphinx documents. If None, it defaults to
|
|
|
|
# "<project> v<release> documentation".
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_title = None
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# A shorter title for the navigation bar. Default is the same as html_title.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_short_title = None
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top
|
|
|
|
# of the sidebar.
|
2022-03-28 13:41:44 +03:00
|
|
|
# html_logo = "resources/pillow-logo.png"
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The name of an image file (within the static path) to use as favicon of the
|
|
|
|
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
|
|
|
|
# pixels large.
|
2020-01-20 18:22:10 +03:00
|
|
|
html_favicon = "resources/favicon.ico"
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Add any paths that contain custom static files (such as style sheets) here,
|
|
|
|
# relative to this directory. They are copied after the builtin static files,
|
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css".
|
2019-07-07 02:37:57 +03:00
|
|
|
html_static_path = ["resources"]
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# Add any extra paths that contain custom files (such as robots.txt or
|
|
|
|
# .htaccess) here, relative to this directory. These files are copied
|
|
|
|
# directly to the root of the documentation.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_extra_path = []
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2023-11-28 12:04:41 +03:00
|
|
|
html_css_files = ["css/dark.css"]
|
|
|
|
|
2023-11-27 17:27:39 +03:00
|
|
|
html_js_files = [
|
|
|
|
"js/activate_tab.js",
|
|
|
|
]
|
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
|
|
|
|
# using the given strftime format.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_last_updated_fmt = '%b %d, %Y'
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, SmartyPants will be used to convert quotes and dashes to
|
|
|
|
# typographically correct entities.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_use_smartypants = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Custom sidebar templates, maps document names to template names.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_sidebars = {}
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Additional templates that should be rendered to pages, maps page names to
|
|
|
|
# template names.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_additional_pages = {}
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_domain_indices = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If false, no index is generated.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_use_index = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, the index is split into individual pages for each letter.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_split_index = False
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, links to the reST sources are added to the pages.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_show_sourcelink = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_show_sphinx = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_show_copyright = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, an OpenSearch description file will be output, and all pages will
|
|
|
|
# contain a <link> tag referring to it. The value of this option must be the
|
|
|
|
# base URL from which the finished HTML is served.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_use_opensearch = ''
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# This is the file name suffix for HTML files (e.g. ".xhtml").
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_file_suffix = None
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Language to be used for generating the HTML full-text search index.
|
|
|
|
# Sphinx supports the following languages:
|
|
|
|
# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
|
|
|
|
# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_search_language = 'en'
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# A dictionary with options for the search language support, empty by default.
|
|
|
|
# Now only 'ja' uses this config value
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_search_options = {'type': 'default'}
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# The name of a javascript file (relative to the configuration directory) that
|
|
|
|
# implements a search results scorer. If empty, the default will be used.
|
2018-10-18 23:14:54 +03:00
|
|
|
# html_search_scorer = 'scorer.js'
|
2013-04-12 21:52:50 +04:00
|
|
|
|
|
|
|
# Output file base name for HTML help builder.
|
2019-06-13 18:54:57 +03:00
|
|
|
htmlhelp_basename = "PillowPILForkdoc"
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# -- Options for LaTeX output ---------------------------------------------
|
2013-04-12 21:52:50 +04:00
|
|
|
|
2023-12-26 14:26:11 +03:00
|
|
|
latex_elements: dict[str, str] = {
|
2018-10-19 11:42:24 +03:00
|
|
|
# The paper size ('letterpaper' or 'a4paper').
|
2018-10-18 23:14:54 +03:00
|
|
|
# 'papersize': 'letterpaper',
|
2018-10-19 11:42:24 +03:00
|
|
|
# The font size ('10pt', '11pt' or '12pt').
|
2018-10-18 23:14:54 +03:00
|
|
|
# 'pointsize': '10pt',
|
2018-10-19 11:42:24 +03:00
|
|
|
# Additional stuff for the LaTeX preamble.
|
2018-10-18 23:14:54 +03:00
|
|
|
# 'preamble': '',
|
2018-10-19 11:42:24 +03:00
|
|
|
# Latex figure (float) alignment
|
2018-10-18 23:14:54 +03:00
|
|
|
# 'figure_align': 'htbp',
|
2015-04-04 15:00:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
|
|
# (source start file, target name, title,
|
|
|
|
# author, documentclass [howto, manual, or own class]).
|
2013-04-12 21:52:50 +04:00
|
|
|
latex_documents = [
|
2019-06-13 18:54:57 +03:00
|
|
|
(
|
|
|
|
master_doc,
|
|
|
|
"PillowPILFork.tex",
|
2019-09-30 17:56:31 +03:00
|
|
|
"Pillow (PIL Fork) Documentation",
|
2024-03-23 16:40:39 +03:00
|
|
|
"Jeffrey A. Clark",
|
2019-06-13 18:54:57 +03:00
|
|
|
"manual",
|
|
|
|
)
|
2015-04-04 15:00:34 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
# The name of an image file (relative to this directory) to place at the top of
|
|
|
|
# the title page.
|
2018-10-18 23:14:54 +03:00
|
|
|
# latex_logo = None
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# For "manual" documents, if this is true, then toplevel headings are parts,
|
|
|
|
# not chapters.
|
2018-10-18 23:14:54 +03:00
|
|
|
# latex_use_parts = False
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, show page references after internal links.
|
2018-10-18 23:14:54 +03:00
|
|
|
# latex_show_pagerefs = False
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If true, show URL addresses after external links.
|
2018-10-18 23:14:54 +03:00
|
|
|
# latex_show_urls = False
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# Documents to append as an appendix to all manuals.
|
2018-10-18 23:14:54 +03:00
|
|
|
# latex_appendices = []
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
# If false, no module index is generated.
|
2018-10-18 23:14:54 +03:00
|
|
|
# latex_domain_indices = True
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
# -- Options for manual page output ---------------------------------------
|
|
|
|
|
|
|
|
# One entry per manual page. List of tuples
|
|
|
|
# (source start file, name, description, authors, manual section).
|
|
|
|
man_pages = [
|
2019-09-30 17:56:31 +03:00
|
|
|
(master_doc, "pillowpilfork", "Pillow (PIL Fork) Documentation", [author], 1)
|
2015-04-04 15:00:34 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
# If true, show URL addresses after external links.
|
2018-10-18 23:14:54 +03:00
|
|
|
# man_show_urls = False
|
2015-04-04 15:00:34 +03:00
|
|
|
|
|
|
|
|
|
|
|
# -- Options for Texinfo output -------------------------------------------
|
|
|
|
|
|
|
|
# Grouping the document tree into Texinfo files. List of tuples
|
|
|
|
# (source start file, target name, title, author,
|
|
|
|
# dir menu entry, description, category)
|
|
|
|
texinfo_documents = [
|
2019-06-13 18:54:57 +03:00
|
|
|
(
|
|
|
|
master_doc,
|
|
|
|
"PillowPILFork",
|
2019-09-30 17:56:31 +03:00
|
|
|
"Pillow (PIL Fork) Documentation",
|
2019-06-13 18:54:57 +03:00
|
|
|
author,
|
|
|
|
"PillowPILFork",
|
2024-03-23 16:40:39 +03:00
|
|
|
"Pillow is the friendly PIL fork by Jeffrey A. Clark and contributors.",
|
2019-06-13 18:54:57 +03:00
|
|
|
"Miscellaneous",
|
|
|
|
)
|
2013-04-12 21:52:50 +04:00
|
|
|
]
|
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# Documents to append as an appendix to all manuals.
|
2018-10-18 23:14:54 +03:00
|
|
|
# texinfo_appendices = []
|
2013-10-07 04:29:30 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# If false, no module index is generated.
|
2018-10-18 23:14:54 +03:00
|
|
|
# texinfo_domain_indices = True
|
2013-10-07 04:29:30 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# How to display URL addresses: 'footnote', 'no', or 'inline'.
|
2018-10-18 23:14:54 +03:00
|
|
|
# texinfo_show_urls = 'footnote'
|
2013-10-07 04:29:30 +04:00
|
|
|
|
2015-04-04 15:00:34 +03:00
|
|
|
# If true, do not generate a @detailmenu in the "Top" node's menu.
|
2018-10-18 23:14:54 +03:00
|
|
|
# texinfo_no_detailmenu = False
|
2018-11-23 10:57:17 +03:00
|
|
|
|
2018-12-26 14:48:55 +03:00
|
|
|
|
2023-05-11 09:49:08 +03:00
|
|
|
linkcheck_allowed_redirects = {
|
2023-02-23 16:45:11 +03:00
|
|
|
r"https://www.bestpractices.dev/projects/6331": r"https://www.bestpractices.dev/en/.*",
|
|
|
|
r"https://badges.gitter.im/python-pillow/Pillow.svg": r"https://badges.gitter.im/repo.svg",
|
|
|
|
r"https://gitter.im/python-pillow/Pillow?.*": r"https://app.gitter.im/#/room/#python-pillow_Pillow:gitter.im?.*",
|
|
|
|
r"https://pillow.readthedocs.io/?badge=latest": r"https://pillow.readthedocs.io/en/stable/?badge=latest",
|
2023-05-11 09:49:08 +03:00
|
|
|
r"https://pillow.readthedocs.io": r"https://pillow.readthedocs.io/en/stable/",
|
2024-02-18 23:54:58 +03:00
|
|
|
r"https://tidelift.com/badges/package/pypi/pillow?.*": r"https://img.shields.io/badge/.*",
|
2023-02-23 16:45:11 +03:00
|
|
|
r"https://zenodo.org/badge/17549/python-pillow/Pillow.svg": r"https://zenodo.org/badge/doi/[\.0-9]+/zenodo.[0-9]+.svg",
|
|
|
|
r"https://zenodo.org/badge/latestdoi/17549/python-pillow/Pillow": r"https://zenodo.org/record/[0-9]+",
|
2023-05-11 09:49:08 +03:00
|
|
|
}
|
|
|
|
|
2023-03-08 19:07:14 +03:00
|
|
|
# sphinx.ext.extlinks
|
|
|
|
# This config is a dictionary of external sites,
|
|
|
|
# mapping unique short aliases to a base URL and a prefix.
|
|
|
|
# https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html
|
|
|
|
_repo = "https://github.com/python-pillow/Pillow/"
|
|
|
|
extlinks = {
|
2024-07-01 07:23:36 +03:00
|
|
|
"cve": ("https://www.cve.org/CVERecord?id=CVE-%s", "CVE-%s"),
|
2023-03-08 19:07:14 +03:00
|
|
|
"cwe": ("https://cwe.mitre.org/data/definitions/%s.html", "CWE-%s"),
|
|
|
|
"issue": (_repo + "issues/%s", "#%s"),
|
|
|
|
"pr": (_repo + "pull/%s", "#%s"),
|
2023-10-30 09:56:42 +03:00
|
|
|
"pypi": ("https://pypi.org/project/%s/", "%s"),
|
2023-03-08 19:07:14 +03:00
|
|
|
}
|
2021-05-14 21:30:39 +03:00
|
|
|
|
|
|
|
# sphinxext.opengraph
|
|
|
|
ogp_image = (
|
2021-10-15 17:30:05 +03:00
|
|
|
"https://raw.githubusercontent.com/python-pillow/pillow-logo/main/"
|
2021-05-14 21:30:39 +03:00
|
|
|
"pillow-logo-dark-text-1280x640.png"
|
|
|
|
)
|
2021-05-15 02:07:36 +03:00
|
|
|
ogp_image_alt = "Pillow"
|