blob: e127c9e4174bac46e3b1c13bf28f101b24296a50 [file] [log] [blame]
Erik Faye-Lund00cd1342019-05-02 23:21:36 +02001#!/usr/bin/env python3
2# -*- coding: utf-8 -*-
3
4import sphinx_rtd_theme
5
6#
7# The Mesa 3D Graphics Library documentation build configuration file, created by
8# sphinx-quickstart on Wed Mar 29 14:08:51 2017.
9#
10# This file is execfile()d with the current directory set to its
11# containing dir.
12#
13# Note that not all possible configuration values are present in this
14# autogenerated file.
15#
16# All configuration values have a default; values that are commented out
17# serve to show the default.
18
19# If extensions (or modules to document with autodoc) are in another directory,
20# add these directories to sys.path here. If the directory is relative to the
21# documentation root, use os.path.abspath to make it absolute, like shown here.
22#
23# import os
24# import sys
25# sys.path.insert(0, os.path.abspath('.'))
26
27
28# -- General configuration ------------------------------------------------
29
30# If your documentation needs a minimal Sphinx version, state it here.
31#
32# needs_sphinx = '1.0'
33
34# Add any Sphinx extension module names here, as strings. They can be
35# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
36# ones.
37extensions = []
38
39# Add any paths that contain templates here, relative to this directory.
40templates_path = ['_templates']
41
42# The suffix(es) of source filenames.
43# You can specify multiple suffix as a list of string:
44#
45# source_suffix = ['.rst', '.md']
46source_suffix = '.rst'
47
48# The master toctree document.
49master_doc = 'index'
50
51# General information about the project.
52project = 'The Mesa 3D Graphics Library'
53copyright = '1995-2018, Brian Paul'
54author = 'Brian Paul'
55html_show_copyright = False
56
57html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
58
59# The version info for the project you're documenting, acts as replacement for
60# |version| and |release|, also used in various other places throughout the
61# built documents.
62#
63# The short X.Y version.
64version = 'latest'
65# The full version, including alpha/beta/rc tags.
66release = 'latest'
67
68# The language for content autogenerated by Sphinx. Refer to documentation
69# for a list of supported languages.
70#
71# This is also used if you do content translation via gettext catalogs.
72# Usually you set "language" from the command line for these cases.
73language = None
74
75# List of patterns, relative to source directory, that match files and
76# directories to ignore when looking for source files.
77# This patterns also effect to html_static_path and html_extra_path
78exclude_patterns = [ "contents.rst" ]
79
80# The name of the Pygments (syntax highlighting) style to use.
81pygments_style = 'sphinx'
82
83# If true, `todo` and `todoList` produce output, else they produce nothing.
84todo_include_todos = False
85
Erik Faye-Lunddcaab1b2019-06-04 15:15:39 +020086# Disable highlighting unless a language is specified, otherwise we'll get
87# python keywords highlit in literal blocks.
88highlight_language = "none"
89
Erik Faye-Lund00cd1342019-05-02 23:21:36 +020090
91# -- Options for HTML output ----------------------------------------------
92
93# The theme to use for HTML and HTML Help pages. See the documentation for
94# a list of builtin themes.
95#
96html_theme = 'sphinx_rtd_theme'
97
Laura Ekstrand8342fe82018-06-11 15:42:39 -070098html_favicon = "favicon.ico"
99
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200100# Theme options are theme-specific and customize the look and feel of a theme
101# further. For a list of options available for each theme, see the
102# documentation.
103#
Laura Ekstrand21adb672018-06-06 14:43:35 -0700104html_theme_options = {
105 'display_version': False,
106}
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200107
Erik Faye-Lund17aefa72019-06-10 20:15:08 +0200108html_copy_source = False
109
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200110# Add any paths that contain custom static files (such as style sheets) here,
111# relative to this directory. They are copied after the builtin static files,
112# so a file named "default.css" will overwrite the builtin "default.css".
113html_static_path = []
114
Erik Faye-Lunddd3add12020-04-18 11:44:57 +0200115html_extra_path = [
Erik Faye-Lund381fc0e2020-04-18 11:54:11 +0200116 '_extra/',
Eric Engestromc75e46f2019-11-22 14:10:50 +0000117 'release-maintainers-keys/',
Erik Faye-Lunddd3add12020-04-18 11:44:57 +0200118 'features.txt',
119 'libGL.txt',
120 'README.UVD',
121 'README.VCE',
122 'README.WIN32',
Erik Faye-Lunddd3add12020-04-18 11:44:57 +0200123]
124
Erik Faye-Lund00cd1342019-05-02 23:21:36 +0200125
126# -- Options for HTMLHelp output ------------------------------------------
127
128# Output file base name for HTML help builder.
129htmlhelp_basename = 'TheMesa3DGraphicsLibrarydoc'
130
131
132# -- Options for LaTeX output ---------------------------------------------
133
134latex_elements = {
135 # The paper size ('letterpaper' or 'a4paper').
136 #
137 # 'papersize': 'letterpaper',
138
139 # The font size ('10pt', '11pt' or '12pt').
140 #
141 # 'pointsize': '10pt',
142
143 # Additional stuff for the LaTeX preamble.
144 #
145 # 'preamble': '',
146
147 # Latex figure (float) alignment
148 #
149 # 'figure_align': 'htbp',
150}
151
152# Grouping the document tree into LaTeX files. List of tuples
153# (source start file, target name, title,
154# author, documentclass [howto, manual, or own class]).
155latex_documents = [
156 (master_doc, 'TheMesa3DGraphicsLibrary.tex', 'The Mesa 3D Graphics Library Documentation',
157 'Brian Paul', 'manual'),
158]
159
160
161# -- Options for manual page output ---------------------------------------
162
163# One entry per manual page. List of tuples
164# (source start file, name, description, authors, manual section).
165man_pages = [
166 (master_doc, 'themesa3dgraphicslibrary', 'The Mesa 3D Graphics Library Documentation',
167 [author], 1)
168]
169
170
171# -- Options for Texinfo output -------------------------------------------
172
173# Grouping the document tree into Texinfo files. List of tuples
174# (source start file, target name, title, author,
175# dir menu entry, description, category)
176texinfo_documents = [
177 (master_doc, 'TheMesa3DGraphicsLibrary', 'The Mesa 3D Graphics Library Documentation',
178 author, 'TheMesa3DGraphicsLibrary', 'One line description of project.',
179 'Miscellaneous'),
180]