]> git.proxmox.com Git - proxmox-backup.git/blob - docs/conf.py
pdf docs: scale down monospace font
[proxmox-backup.git] / docs / conf.py
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3 #
4 # Proxmox Backup documentation build configuration file, originally
5 # created by sphinx-quickstart on Tue Feb 26 16:54:35 2019.
6 #
7 # This file is execfile()d with the current directory set to its
8 # containing dir.
9 #
10 # Note that not all possible configuration values are present in this
11 # autogenerated file.
12 #
13 # All configuration values have a default; values that are commented out
14 # serve to show the default.
15
16 # If extensions (or modules to document with autodoc) are in another directory,
17 # add these directories to sys.path here. If the directory is relative to the
18 # documentation root, use os.path.abspath to make it absolute, like shown here.
19 #
20 # import os
21 # import sys
22 # sys.path.insert(0, os.path.abspath('.'))
23
24 # -- General configuration ------------------------------------------------
25
26 # If your documentation needs a minimal Sphinx version, state it here.
27 #
28 # needs_sphinx = '1.0'
29
30 # Add any Sphinx extension module names here, as strings. They can be
31 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32 # ones.
33 extensions = ["sphinx.ext.graphviz", "sphinx.ext.todo"]
34
35 # Add any paths that contain templates here, relative to this directory.
36 templates_path = ['_templates']
37
38 # The suffix(es) of source filenames.
39 # You can specify multiple suffix as a list of string:
40 #
41 # source_suffix = ['.rst', '.md']
42 source_suffix = '.rst'
43
44 # The encoding of source files.
45 #
46 # source_encoding = 'utf-8-sig'
47
48 # The master toctree document.
49 master_doc = 'index'
50
51 epilog_file = open('epilog.rst', 'r')
52 rst_epilog = epilog_file.read()
53
54 # General information about the project.
55 project = 'Proxmox Backup'
56 copyright = '2019, Proxmox Support Team'
57 author = 'Proxmox Support Team'
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.
64 version = '1.0'
65 # The full version, including alpha/beta/rc tags.
66 release = '1.0-1'
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.
73 language = None
74
75 # There are two options for replacing |today|: either, you set today to some
76 # non-false value, then it is used:
77 #
78 # today = ''
79 #
80 # Else, today_fmt is used as the format for a strftime call.
81 #
82 # today_fmt = '%B %d, %Y'
83
84 # List of patterns, relative to source directory, that match files and
85 # directories to ignore when looking for source files.
86 # This patterns also effect to html_static_path and html_extra_path
87 exclude_patterns = [
88 '_build', 'Thumbs.db', '.DS_Store',
89 'proxmox-backup-client/man1.rst',
90 'proxmox-backup-manager/man1.rst',
91 'proxmox-backup-proxy/man1.rst',
92 'pxar/man1.rst',
93 'epilog.rst',
94 'pbs-copyright.rst',
95 'sysadmin.rst',
96 'package-repositories.rst',
97 ]
98
99 # The reST default role (used for this markup: `text`) to use for all
100 # documents.
101 #
102 # default_role = None
103
104 # If true, '()' will be appended to :func: etc. cross-reference text.
105 #
106 # add_function_parentheses = True
107
108 # If true, the current module name will be prepended to all description
109 # unit titles (such as .. function::).
110 #
111 # add_module_names = True
112
113 # If true, sectionauthor and moduleauthor directives will be shown in the
114 # output. They are ignored by default.
115 #
116 # show_authors = False
117
118 # The name of the Pygments (syntax highlighting) style to use.
119 pygments_style = 'sphinx'
120
121 # A list of ignored prefixes for module index sorting.
122 # modindex_common_prefix = []
123
124 # If true, keep warnings as "system message" paragraphs in the built documents.
125 # keep_warnings = False
126
127 # If true, `todo` and `todoList` produce output, else they produce nothing.
128 todo_include_todos = True
129
130
131 # -- Options for HTML output ----------------------------------------------
132
133 # The theme to use for HTML and HTML Help pages. See the documentation for
134 # a list of builtin themes.
135 #
136 html_theme = 'sphinxdoc'
137
138 # Theme options are theme-specific and customize the look and feel of a theme
139 # further. For a list of options available for each theme, see the
140 # documentation.
141 #
142 # html_theme_options = {}
143
144 # Add any paths that contain custom themes here, relative to this directory.
145 # html_theme_path = []
146
147 # The name for this set of Sphinx documents.
148 # "<project> v<release> documentation" by default.
149 #
150 # html_title = 'Proxmox Backup v1.0-1'
151
152 # A shorter title for the navigation bar. Default is the same as html_title.
153 #
154 # html_short_title = None
155
156 # The name of an image file (relative to this directory) to place at the top
157 # of the sidebar.
158 #
159 html_logo = 'images/proxmox-logo.svg'
160
161 # The name of an image file (relative to this directory) to use as a favicon of
162 # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
163 # pixels large.
164 #
165 html_favicon = 'images/favicon.ico'
166
167 # Add any paths that contain custom static files (such as style sheets) here,
168 # relative to this directory. They are copied after the builtin static files,
169 # so a file named "default.css" will overwrite the builtin "default.css".
170 html_static_path = ['_static']
171
172 # Add any extra paths that contain custom files (such as robots.txt or
173 # .htaccess) here, relative to this directory. These files are copied
174 # directly to the root of the documentation.
175 #
176 # html_extra_path = []
177
178 # If not None, a 'Last updated on:' timestamp is inserted at every page
179 # bottom, using the given strftime format.
180 # The empty string is equivalent to '%b %d, %Y'.
181 #
182 # html_last_updated_fmt = None
183
184 # If true, SmartyPants will be used to convert quotes and dashes to
185 # typographically correct entities.
186 #
187 # html_use_smartypants = True
188
189 # Custom sidebar templates, maps document names to template names.
190 #
191 # html_sidebars = {}
192
193 # Additional templates that should be rendered to pages, maps page names to
194 # template names.
195 #
196 # html_additional_pages = {}
197
198 # If false, no module index is generated.
199 #
200 # html_domain_indices = True
201
202 # If false, no index is generated.
203 #
204 # html_use_index = True
205
206 # If true, the index is split into individual pages for each letter.
207 #
208 # html_split_index = False
209
210 # If true, links to the reST sources are added to the pages.
211 #
212 # html_show_sourcelink = True
213
214 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
215 #
216 # html_show_sphinx = True
217
218 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
219 #
220 # html_show_copyright = True
221
222 # If true, an OpenSearch description file will be output, and all pages will
223 # contain a <link> tag referring to it. The value of this option must be the
224 # base URL from which the finished HTML is served.
225 #
226 # html_use_opensearch = ''
227
228 # This is the file name suffix for HTML files (e.g. ".xhtml").
229 # html_file_suffix = None
230
231 # Language to be used for generating the HTML full-text search index.
232 # Sphinx supports the following languages:
233 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'h', 'it', 'ja'
234 # 'nl', 'no', 'pt', 'ro', 'r', 'sv', 'tr', 'zh'
235 #
236 # html_search_language = 'en'
237
238 # A dictionary with options for the search language support, empty by default.
239 # 'ja' uses this config value.
240 # 'zh' user can custom change `jieba` dictionary path.
241 #
242 # html_search_options = {'type': 'default'}
243
244 # The name of a javascript file (relative to the configuration directory) that
245 # implements a search results scorer. If empty, the default will be used.
246 #
247 # html_search_scorer = 'scorer.js'
248
249 # Output file base name for HTML help builder.
250 htmlhelp_basename = 'ProxmoxBackupdoc'
251
252 # -- Options for LaTeX output ---------------------------------------------
253
254 latex_engine = 'xelatex'
255
256 latex_elements = {
257 'fontenc': '\\usepackage{fontspec}',
258
259 # The paper size ('letterpaper' or 'a4paper').
260 #
261 'papersize': 'a4paper',
262
263 # The font size ('10pt', '11pt' or '12pt').
264 #
265 'pointsize': '10pt',
266
267 'fontpkg': r'''
268 \setmainfont{DejaVu Serif}
269 \setsansfont{DejaVu Sans}
270 \setmonofont{DejaVu Sans Mono}[Scale=0.8]
271 ''',
272
273 # Additional stuff for the LaTeX preamble.
274 #
275 # 'preamble': '',
276
277 # Latex figure (float) alignment
278 #
279 # 'figure_align': 'htbp',
280 }
281
282 # Grouping the document tree into LaTeX files. List of tuples
283 # (source start file, target name, title,
284 # author, documentclass [howto, manual, or own class]).
285 latex_documents = [
286 (master_doc, 'ProxmoxBackup.tex', 'Proxmox Backup Documentation',
287 'Proxmox Support Team', 'manual'),
288 ]
289
290 # The name of an image file (relative to this directory) to place at the top of
291 # the title page.
292 #
293 #
294 # Note: newer sphinx 1.6 should be able to convert .svg to .png
295 # automatically using sphinx.ext.imgconverter
296 latex_logo = "images/proxmox-logo.png"
297
298 # For "manual" documents, if this is true, then toplevel headings are parts,
299 # not chapters.
300 #
301 # latex_use_parts = False
302
303 # If true, show page references after internal links.
304 #
305 # latex_show_pagerefs = False
306
307 # If true, show URL addresses after external links.
308 #
309 # latex_show_urls = False
310
311 # Documents to append as an appendix to all manuals.
312 #
313 # latex_appendices = []
314
315 # It false, will not define \strong, \code, itleref, \crossref ... but only
316 # \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added
317 # packages.
318 #
319 # latex_keep_old_macro_names = True
320
321 # If false, no module index is generated.
322 #
323 # latex_domain_indices = True
324
325
326 # -- Options for Epub output ----------------------------------------------
327
328 # Bibliographic Dublin Core info.
329 epub_title = project
330 epub_author = author
331 epub_publisher = author
332 epub_copyright = copyright
333
334 # The basename for the epub file. It defaults to the project name.
335 # epub_basename = project
336
337 # The HTML theme for the epub output. Since the default themes are not
338 # optimized for small screen space, using the same theme for HTML and epub
339 # output is usually not wise. This defaults to 'epub', a theme designed to save
340 # visual space.
341 #
342 # epub_theme = 'epub'
343
344 # The language of the text. It defaults to the language option
345 # or 'en' if the language is not set.
346 #
347 # epub_language = ''
348
349 # The scheme of the identifier. Typical schemes are ISBN or URL.
350 # epub_scheme = ''
351
352 # The unique identifier of the text. This can be a ISBN number
353 # or the project homepage.
354 #
355 # epub_identifier = ''
356
357 # A unique identification for the text.
358 #
359 # epub_uid = ''
360
361 # A tuple containing the cover image and cover page html template filenames.
362 #
363 # epub_cover = ()
364
365 # A sequence of (type, uri, title) tuples for the guide element of content.opf.
366 #
367 # epub_guide = ()
368
369 # HTML files that should be inserted before the pages created by sphinx.
370 # The format is a list of tuples containing the path and title.
371 #
372 # epub_pre_files = []
373
374 # HTML files that should be inserted after the pages created by sphinx.
375 # The format is a list of tuples containing the path and title.
376 #
377 # epub_post_files = []
378
379 # A list of files that should not be packed into the epub file.
380 epub_exclude_files = ['search.html']
381
382 # The depth of the table of contents in toc.ncx.
383 #
384 # epub_tocdepth = 3
385
386 # Allow duplicate toc entries.
387 #
388 # epub_tocdup = True
389
390 # Choose between 'default' and 'includehidden'.
391 #
392 # epub_tocscope = 'default'
393
394 # Fix unsupported image types using the Pillow.
395 #
396 # epub_fix_images = False
397
398 # Scale large images.
399 #
400 # epub_max_image_width = 0
401
402 # How to display URL addresses: 'footnote', 'no', or 'inline'.
403 #
404 # epub_show_urls = 'inline'
405
406 # If false, no index is generated.
407 #
408 # epub_use_index = True