Mercurial > libervia-web
annotate doc/conf.py @ 1617:e338426ed4de
doc (user/calls): document A/V conferences use.
fix 448
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 07 Aug 2024 00:02:40 +0200 |
parents | e412712bef95 |
children |
rev | line source |
---|---|
1239 | 1 |
1190
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
2 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
3 # Configuration file for the Sphinx documentation builder. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
4 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
5 # This file does only contain a selection of the most common options. For a |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
6 # full list see the documentation: |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
7 # http://www.sphinx-doc.org/en/master/config |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
8 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
9 # -- Path setup -------------------------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
10 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
11 # If extensions (or modules to document with autodoc) are in another directory, |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
12 # add these directories to sys.path here. If the directory is relative to the |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
13 # documentation root, use os.path.abspath to make it absolute, like shown here. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
14 # |
1606 | 15 import os |
16 import sys | |
17 sys.path.insert(0, os.path.abspath('..')) | |
1537 | 18 from libervia.web import __version__ |
1190
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
19 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
20 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
21 # -- Project information ----------------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
22 |
1518
eb00d593801d
refactoring: rename `libervia` to `libervia.web` + update imports following backend changes
Goffi <goffi@goffi.org>
parents:
1502
diff
changeset
|
23 project = u'Libervia Web' |
1606 | 24 copyright = u'2019-2024 Jérôme Poisson' |
1190
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
25 author = u'Jérôme Poisson' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
26 |
1537 | 27 version = __version__ |
1190
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
28 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
29 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
30 # -- General configuration --------------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
31 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
32 # If your documentation needs a minimal Sphinx version, state it here. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
33 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
34 # needs_sphinx = '1.0' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
35 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
36 # Add any Sphinx extension module names here, as strings. They can be |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
37 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
38 # ones. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
39 extensions = [ |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
40 'sphinx.ext.autodoc', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
41 ] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
42 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
43 # Add any paths that contain templates here, relative to this directory. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
44 templates_path = ['_templates'] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
45 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
46 # The suffix(es) of source filenames. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
47 # You can specify multiple suffix as a list of string: |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
48 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
49 # source_suffix = ['.rst', '.md'] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
50 source_suffix = '.rst' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
51 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
52 # The master toctree document. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
53 master_doc = 'index' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
54 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
55 # The language for content autogenerated by Sphinx. Refer to documentation |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
56 # for a list of supported languages. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
57 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
58 # This is also used if you do content translation via gettext catalogs. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
59 # Usually you set "language" from the command line for these cases. |
1502
e1ccba0d2b71
doc: set `language` and use `libervia-media` instead of `sat_media`
Goffi <goffi@goffi.org>
parents:
1440
diff
changeset
|
60 language = "en" |
1190
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
61 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
62 # List of patterns, relative to source directory, that match files and |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
63 # directories to ignore when looking for source files. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
64 # This pattern also affects html_static_path and html_extra_path. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
65 exclude_patterns = [u'_build', 'Thumbs.db', '.DS_Store'] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
66 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
67 # The name of the Pygments (syntax highlighting) style to use. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
68 pygments_style = None |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
69 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
70 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
71 # -- Options for HTML output ------------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
72 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
73 # The theme to use for HTML and HTML Help pages. See the documentation for |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
74 # a list of builtin themes. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
75 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
76 html_theme = 'alabaster' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
77 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
78 # Theme options are theme-specific and customize the look and feel of a theme |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
79 # further. For a list of options available for each theme, see the |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
80 # documentation. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
81 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
82 # html_theme_options = {} |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
83 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
84 # Add any paths that contain custom static files (such as style sheets) here, |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
85 # relative to this directory. They are copied after the builtin static files, |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
86 # so a file named "default.css" will overwrite the builtin "default.css". |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
87 html_static_path = ['_static'] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
88 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
89 # Custom sidebar templates, must be a dictionary that maps document names |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
90 # to template names. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
91 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
92 # The default sidebars (for documents that don't match any pattern) are |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
93 # defined by theme itself. Builtin themes are using these templates by |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
94 # default: ``['localtoc.html', 'relations.html', 'sourcelink.html', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
95 # 'searchbox.html']``. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
96 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
97 # html_sidebars = {} |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
98 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
99 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
100 # -- Options for HTMLHelp output --------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
101 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
102 # Output file base name for HTML help builder. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
103 htmlhelp_basename = 'LiberviaSalutToidoc' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
104 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
105 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
106 # -- Options for LaTeX output ------------------------------------------------ |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
107 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
108 latex_elements = { |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
109 # The paper size ('letterpaper' or 'a4paper'). |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
110 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
111 # 'papersize': 'letterpaper', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
112 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
113 # The font size ('10pt', '11pt' or '12pt'). |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
114 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
115 # 'pointsize': '10pt', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
116 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
117 # Additional stuff for the LaTeX preamble. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
118 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
119 # 'preamble': '', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
120 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
121 # Latex figure (float) alignment |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
122 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
123 # 'figure_align': 'htbp', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
124 } |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
125 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
126 # Grouping the document tree into LaTeX files. List of tuples |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
127 # (source start file, target name, title, |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
128 # author, documentclass [howto, manual, or own class]). |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
129 latex_documents = [ |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
130 (master_doc, 'LiberviaSalutToi.tex', u'Libervia (Salut à Toi) Documentation', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
131 u'Jérôme Poisson', 'manual'), |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
132 ] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
133 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
134 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
135 # -- Options for manual page output ------------------------------------------ |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
136 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
137 # One entry per manual page. List of tuples |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
138 # (source start file, name, description, authors, manual section). |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
139 man_pages = [ |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
140 (master_doc, 'liberviasaluttoi', u'Libervia (Salut à Toi) Documentation', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
141 [author], 1) |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
142 ] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
143 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
144 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
145 # -- Options for Texinfo output ---------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
146 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
147 # Grouping the document tree into Texinfo files. List of tuples |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
148 # (source start file, target name, title, author, |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
149 # dir menu entry, description, category) |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
150 texinfo_documents = [ |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
151 (master_doc, 'LiberviaSalutToi', u'Libervia (Salut à Toi) Documentation', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
152 author, 'LiberviaSalutToi', 'One line description of project.', |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
153 'Miscellaneous'), |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
154 ] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
155 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
156 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
157 # -- Options for Epub output ------------------------------------------------- |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
158 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
159 # Bibliographic Dublin Core info. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
160 epub_title = project |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
161 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
162 # The unique identifier of the text. This can be a ISBN number |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
163 # or the project homepage. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
164 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
165 # epub_identifier = '' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
166 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
167 # A unique identification for the text. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
168 # |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
169 # epub_uid = '' |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
170 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
171 # A list of files that should not be packed into the epub file. |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
172 epub_exclude_files = ['search.html'] |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
173 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
174 |
b9a5418e9f2e
doc: added forgotten conf.py and index.rst files
Goffi <goffi@goffi.org>
parents:
diff
changeset
|
175 # -- Extension configuration ------------------------------------------------- |