~pieq/checkbox/fix-1484872-env-variables-forced-to-non-international

1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
#
3281.1.1 by Brendan Donegan
CheckBox -> Checkbox & PlainBox -> Plainbox. Ahhh, that's better
4
# Plainbox documentation build configuration file, created by
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
5
# sphinx-quickstart on Wed Feb 13 11:18:39 2013.
6
#
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
7
# This file is execfile()d with the current directory set to its containing
8
# dir.
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
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
3136.1.10 by Zygmunt Krynicki
plainbox:docs: minor import wiggle in conf.py
16
import sys
17
import os
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
18
3136.1.12 by Zygmunt Krynicki
plainbox:docs: use a vendorized copy of sphinx-argparse extension
19
20
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
21
2496.1.1 by Zygmunt Krynicki
plainbox: mock-away requirements for readthedocs.org
22
try:
23
    import plainbox
24
except ImportError as exc:
25
    raise SystemExit("plainbox has to be importable")
26
else:
3136.1.11 by Zygmunt Krynicki
plainbox:docs: mock additional modules in conf.py
27
    modules_to_mock = [
28
        'xlsxwriter',
29
        'xlsxwriter.workbook',
30
        'xlsxwriter.utility',
31
        'requests',
32
        'requests.exceptions'
33
    ]
2496.1.1 by Zygmunt Krynicki
plainbox: mock-away requirements for readthedocs.org
34
    # Inject mock modules so that we can build the
35
    # documentation without having the real stuff available
36
    from plainbox.vendor import mock
3136.1.11 by Zygmunt Krynicki
plainbox:docs: mock additional modules in conf.py
37
    for mod_name in modules_to_mock:
2496.1.1 by Zygmunt Krynicki
plainbox: mock-away requirements for readthedocs.org
38
        sys.modules[mod_name] = mock.Mock()
3136.1.11 by Zygmunt Krynicki
plainbox:docs: mock additional modules in conf.py
39
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
40
# If extensions (or modules to document with autodoc) are in another
41
# directory, add these directories to sys.path here. If the directory is
42
# relative to the documentation root, use os.path.abspath to make it absolute,
43
# like shown here.
44
# sys.path.insert(0, os.path.abspath('.'))
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
45
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
46
# -- General configuration ---------------------------------------------------
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
47
48
# If your documentation needs a minimal Sphinx version, state it here.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
49
# needs_sphinx = '1.0'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
50
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
51
# Add any Sphinx extension module names here, as strings. They can be
52
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
3136.1.12 by Zygmunt Krynicki
plainbox:docs: use a vendorized copy of sphinx-argparse extension
53
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo',
54
              'sphinx.ext.coverage', 'sphinx.ext.viewcode',
55
              'plainbox.vendor.sphinxarg.ext']
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
56
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
57
autodoc_default_flags = ['members', 'undoc-members', 'inherited-members',
58
                         'show-inheritance']
3543.2.1 by Zygmunt Krynicki
plainbox:docs: add default flags for :automodule:
59
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
60
# Add any paths that contain templates here, relative to this directory.
61
templates_path = ['_templates']
62
63
# The suffix of source filenames.
64
source_suffix = '.rst'
65
66
# The encoding of source files.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
67
# source_encoding = 'utf-8-sig'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
68
69
# The master toctree document.
70
master_doc = 'index'
71
72
# General information about the project.
3281.1.1 by Brendan Donegan
CheckBox -> Checkbox & PlainBox -> Plainbox. Ahhh, that's better
73
project = 'Plainbox'
2614.2.11 by Zygmunt Krynicki
plainbox:docs: bump copyright
74
copyright = '2012-2014 Canonical Ltd'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
75
76
# The version info for the project you're documenting, acts as replacement for
77
# |version| and |release|, also used in various other places throughout the
78
# built documents.
79
#
80
# The short X.Y version.
2614.2.12 by Zygmunt Krynicki
plainbox:docs: use real version from plainbox package
81
version = "{0[0]}.{0[1]}".format(plainbox.__version__)
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
82
# The full version, including alpha/beta/rc tags.
2614.2.12 by Zygmunt Krynicki
plainbox:docs: use real version from plainbox package
83
release = "{0[0]}.{0[1]}.{0[2]}.{0[3]}.{0[4]}".format(plainbox.__version__)
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
84
85
# The language for content autogenerated by Sphinx. Refer to documentation
86
# for a list of supported languages.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
87
# language = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
88
89
# There are two options for replacing |today|: either, you set today to some
90
# non-false value, then it is used:
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
91
# today = ''
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
92
# Else, today_fmt is used as the format for a strftime call.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
93
# today_fmt = '%B %d, %Y'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
94
95
# List of patterns, relative to source directory, that match files and
96
# directories to ignore when looking for source files.
97
exclude_patterns = []
98
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
99
# The reST default role (used for this markup: `text`) to use for all
100
# documents.
101
# default_role = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
102
103
# If true, '()' will be appended to :func: etc. cross-reference text.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
104
# add_function_parentheses = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
105
106
# If true, the current module name will be prepended to all description
107
# unit titles (such as .. function::).
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
108
# add_module_names = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
109
110
# If true, sectionauthor and moduleauthor directives will be shown in the
111
# output. They are ignored by default.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
112
# show_authors = False
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
113
114
# The name of the Pygments (syntax highlighting) style to use.
115
pygments_style = 'sphinx'
116
117
# A list of ignored prefixes for module index sorting.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
118
# modindex_common_prefix = []
119
120
121
# -- Options for HTML output -------------------------------------------------
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
122
123
# The theme to use for HTML and HTML Help pages.  See the documentation for
124
# a list of builtin themes.
2643.1.1 by Zygmunt Krynicki
plainbox:docs: add disqus.com support on plainbox.readthedocs.com
125
#
126
# Use our custom theme. For now it only adds Disqus.com support but we may
127
# customize it further later on. The theme is called 'plainbox' and has one
128
# option which controls if disqus is active or not.
129
html_theme = 'plainbox'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
130
131
# Theme options are theme-specific and customize the look and feel of a theme
132
# further.  For a list of options available for each theme, see the
133
# documentation.
2643.1.1 by Zygmunt Krynicki
plainbox:docs: add disqus.com support on plainbox.readthedocs.com
134
#
135
# Due to the way disqus works, it's only going to work on
136
# plainbox.readthedocs.org so only use it if building for readthedocs.
137
138
html_theme_options = {
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
139
    'show_disqus': 'true' if os.environ.get(
140
        "READTHEDOCS", None) == 'True' else ''
2643.1.1 by Zygmunt Krynicki
plainbox:docs: add disqus.com support on plainbox.readthedocs.com
141
}
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
142
143
# Add any paths that contain custom themes here, relative to this directory.
2643.1.1 by Zygmunt Krynicki
plainbox:docs: add disqus.com support on plainbox.readthedocs.com
144
html_theme_path = ['_theme']
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
145
146
# The name for this set of Sphinx documents.  If None, it defaults to
147
# "<project> v<release> documentation".
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
148
# html_title = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
149
150
# A shorter title for the navigation bar.  Default is the same as html_title.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
151
# html_short_title = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
152
153
# The name of an image file (relative to this directory) to place at the top
154
# of the sidebar.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
155
# html_logo = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
156
157
# The name of an image file (within the static path) to use as favicon of the
158
# docs.  This file should be a Windows icon file (.ico) being 16x16 or 32x32
159
# pixels large.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
160
# html_favicon = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
161
162
# Add any paths that contain custom static files (such as style sheets) here,
163
# relative to this directory. They are copied after the builtin static files,
164
# so a file named "default.css" will overwrite the builtin "default.css".
165
html_static_path = ['_static']
166
167
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
168
# using the given strftime format.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
169
# html_last_updated_fmt = '%b %d, %Y'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
170
171
# If true, SmartyPants will be used to convert quotes and dashes to
172
# typographically correct entities.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
173
# html_use_smartypants = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
174
175
# Custom sidebar templates, maps document names to template names.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
176
# html_sidebars = {}
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
177
178
# Additional templates that should be rendered to pages, maps page names to
179
# template names.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
180
# html_additional_pages = {}
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
181
182
# If false, no module index is generated.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
183
# html_domain_indices = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
184
185
# If false, no index is generated.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
186
# html_use_index = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
187
188
# If true, the index is split into individual pages for each letter.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
189
# html_split_index = False
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
190
191
# If true, links to the reST sources are added to the pages.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
192
# html_show_sourcelink = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
193
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
194
# If true, "Created using Sphinx" is shown in the HTML footer. Default is
195
# True.
196
# html_show_sphinx = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
197
198
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
199
# html_show_copyright = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
200
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.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
204
# html_use_opensearch = ''
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
205
206
# This is the file name suffix for HTML files (e.g. ".xhtml").
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
207
# html_file_suffix = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
208
209
# Output file base name for HTML help builder.
3281.1.1 by Brendan Donegan
CheckBox -> Checkbox & PlainBox -> Plainbox. Ahhh, that's better
210
htmlhelp_basename = 'Plainboxdoc'
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
211
212
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
213
# -- Options for LaTeX output ------------------------------------------------
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
214
215
latex_elements = {
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
216
    # The paper size ('letterpaper' or 'a4paper').
217
    # 'papersize': 'letterpaper',
218
219
    # The font size ('10pt', '11pt' or '12pt').
220
    # 'pointsize': '10pt',
221
222
    # Additional stuff for the LaTeX preamble.
223
    # 'preamble': '',
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
224
}
225
226
# Grouping the document tree into LaTeX files. List of tuples
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
227
# (source start file, target name, title, author,
228
# documentclass [howto/manual]).
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
229
latex_documents = [
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
230
    ('index', 'Plainbox.tex', 'Plainbox Documentation',
231
     'Zygmunt Krynicki', 'manual'),
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
232
]
233
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
234
# The name of an image file (relative to this directory) to place at the top
235
# of the title page.
236
# latex_logo = None
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
237
238
# For "manual" documents, if this is true, then toplevel headings are parts,
239
# not chapters.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
240
# latex_use_parts = False
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
241
242
# If true, show page references after internal links.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
243
# latex_show_pagerefs = False
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
244
245
# If true, show URL addresses after external links.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
246
# latex_show_urls = False
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
247
248
# Documents to append as an appendix to all manuals.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
249
# latex_appendices = []
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
250
251
# If false, no module index is generated.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
252
# latex_domain_indices = True
253
254
255
# -- Options for manual page output ------------------------------------------
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
256
257
# One entry per manual page. List of tuples
258
# (source start file, name, description, authors, manual section).
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
259
_authors = ['Zygmunt Krynicki & Checkbox Contributors']
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
260
man_pages = [
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
261
    # Section 1
2767.1.2 by Zygmunt Krynicki
plainbox:docs: fix description of plainbox(1)
262
    ('manpages/plainbox', 'plainbox',
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
263
     'toolkit for software and hardware integration testing',
264
     _authors, 1),
2767.1.4 by Zygmunt Krynicki
plainbox:docs: build plainbox-trusted-launcher-1(1)
265
    ('manpages/plainbox-trusted-launcher-1', 'plainbox-trusted-launcher-1',
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
266
     'execute job command as another user', _authors, 1),
267
    ('manpages/plainbox-run', 'plainbox-run',
268
     'run a test job', _authors, 1),
269
    ('manpages/plainbox-check-config', 'plainbox-check-config',
270
     'check and display plainbox configuration', _authors, 1),
271
    ('manpages/plainbox-startprovider', 'plainbox-startprovider',
272
     'create a new plainbox provider', _authors, 1),
273
    ('manpages/plainbox-self-test', 'plainbox-self-test',
274
     'run unit and integration tests', _authors, 1),
275
    ('manpages/plainbox-manage.py', 'manage.py',
276
     'plainbox provider management script', _authors, 1),
277
    ('manpages/plainbox-session', 'plainbox-session',
278
     'session management sub-commands', _authors, 1),
279
    ('manpages/plainbox-session-list', 'plainbox-session-list',
280
     'list available session', _authors, 1),
281
    ('manpages/plainbox-session-remove', 'plainbox-session-remove',
282
     'remove one ore more sessions', _authors, 1),
283
    ('manpages/plainbox-session-show', 'plainbox-session-show',
284
     'show a single session', _authors, 1),
285
    ('manpages/plainbox-session-archive', 'plainbox-session-archive',
286
     'archive a single session', _authors, 1),
3286.1.1 by Zygmunt Krynicki
plainbox:docs: add a manual page for plainbox-session-export
287
    ('manpages/plainbox-session-export', 'plainbox-session-export',
288
     '(re-)export an existing session', _authors, 1),
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
289
    ('manpages/plainbox-dev', 'plainbox-dev',
290
     'commands for test developers', _authors, 1),
291
    ('manpages/plainbox-dev-script', 'plainbox-dev-script',
292
     'run a command from a job', _authors, 1),
293
    ('manpages/plainbox-dev-special', 'plainbox-dev-special',
294
     'special/internal commands', _authors, 1),
295
    ('manpages/plainbox-dev-analyze', 'plainbox-dev-analyze',
296
     'analyze how seleted jobs would be executed', _authors, 1),
297
    ('manpages/plainbox-dev-parse', 'plainbox-dev-parse',
298
     'parse stdin with the specified parser', _authors, 1),
299
    ('manpages/plainbox-dev-crash', 'plainbox-dev-crash',
300
     'crash the application', _authors, 1),
301
    ('manpages/plainbox-dev-logtest', 'plainbox-dev-logtest',
302
     'log messages at various levels', _authors, 1),
303
    ('manpages/plainbox-dev-list', 'plainbox-dev-list',
304
     'list and describe various objects', _authors, 1),
3344.1.4 by Zygmunt Krynicki
plainbox:docs: add manual page for 'plainbox device'
305
    ('manpages/plainbox-device', 'plainbox-device',
306
     'device management commands', _authors, 1),
3542.1.12 by Maciej Kisielewski
plainbox:doc: add manpage for plainbox-qml-shell
307
    ('manpages/plainbox-qml-shell', 'plainbox-qml-shell',
308
     'standalone qml-native shell', _authors, 1),
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
309
    # Section 5
310
    ('manpages/plainbox.conf', 'plainbox.conf',
311
     'plainbox configuration file', _authors, 5),
312
    # Section 7
313
    ('manpages/plainbox-session-structure', 'plainbox-session-structure',
314
     'structure of per-session directory', _authors, 7),
3159.2.23 by Zygmunt Krynicki
plainbox:docs: add a manual page for template units
315
    ('manpages/plainbox-template-units', 'plainbox-template-units',
3281.1.1 by Brendan Donegan
CheckBox -> Checkbox & PlainBox -> Plainbox. Ahhh, that's better
316
     'syntax and semantics of Plainbox template unit type', _authors, 7),
3211.3.1 by Zygmunt Krynicki
plainbox:docs: add plainbox-category-units manual page
317
    ('manpages/plainbox-category-units', 'plainbox-category-units',
3281.1.1 by Brendan Donegan
CheckBox -> Checkbox & PlainBox -> Plainbox. Ahhh, that's better
318
     'syntax and semantics of Plainbox category unit type', _authors, 7),
3263.1.3 by Zygmunt Krynicki
plainbox:docs: add plainbox-file-units(7) manual page
319
    ('manpages/plainbox-file-units', 'plainbox-file-units',
3281.1.1 by Brendan Donegan
CheckBox -> Checkbox & PlainBox -> Plainbox. Ahhh, that's better
320
     'syntax and semantics of Plainbox file unit type', _authors, 7),
3288.1.4 by Zygmunt Krynicki
plainbox:docs: add manual page for test plan units
321
    ('manpages/plainbox-test-plan-units', 'plainbox-test-plan-units',
322
     'syntax and semantics of Plainbox test plan unit type', _authors, 7),
3414.1.1 by Maciej Kisielewski
plainbox:docs: add job unit man page
323
    ('manpages/plainbox-job-units', 'plainbox-job-units',
324
     'syntax and semantics of Plainbox job unit type', _authors, 7),
3631.1.1 by Zygmunt Krynicki
plainbox:manifest: add manifest unit
325
    ('manpages/plainbox-manifest-entry-units', 'plainbox-job-units',
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
326
     'syntax and semantics of Plainbox manifest entry unit type',
327
     _authors, 7),
3859.1.1 by Sylvain Pineau
plainbox:docs:manpages: New man page for exporter units
328
    ('manpages/plainbox-exporter-units', 'plainbox-exporter-units',
329
     'syntax and semantics of Plainbox exporter unit type',
330
     _authors, 7),
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
331
    ('manpages/plainbox-packaging-meta-data-units',
332
     'plainbox-packaging-meta-data-units',
333
     'syntax and semantics of Plainbox package meta-data unit type',
334
     _authors, 7),
3136.1.9 by Zygmunt Krynicki
plainbox:docs: update conf.py's index of manaual pages to build
335
    ('manpages/PLAINBOX_SESSION_SHARE', 'PLAINBOX_SESSION_SHARE',
336
     'per-session runtime shared-state directory', _authors, 7),
337
    ('manpages/PLAINBOX_PROVIDER_DATA', 'PLAINBOX_PROVIDER_DATA',
338
     'per-provider data directory', _authors, 7),
339
    ('manpages/CHECKBOX_DATA', 'CHECKBOX_DATA',
340
     'legacy name for PLAINBOX_SESSION_SHARE', _authors, 7),
341
    ('manpages/CHECKBOX_SHARE', 'CHECKBOX_SHARE',
342
     'legacy name for PLAINBOX_PROVIDER_DATA', _authors, 7),
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
343
]
344
345
# If true, show URL addresses after external links.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
346
# man_show_urls = False
347
348
349
# -- Options for Texinfo output ----------------------------------------------
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
350
351
# Grouping the document tree into Texinfo files. List of tuples
352
# (source start file, target name, title, author,
353
#  dir menu entry, description, category)
354
texinfo_documents = [
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
355
    ('index', 'Plainbox', 'Plainbox Documentation',
356
     'Zygmunt Krynicki', 'Plainbox', 'One line description of project.',
357
     'Miscellaneous'),
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
358
]
359
360
# Documents to append as an appendix to all manuals.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
361
# texinfo_appendices = []
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
362
363
# If false, no module index is generated.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
364
# texinfo_domain_indices = True
1928.1.1 by Zygmunt Krynicki
docs: add autogenerated template
365
366
# How to display URL addresses: 'footnote', 'no', or 'inline'.
3828.4.1 by Paul Larson
plainbox:conf.py: fix pep-8 issues
367
# texinfo_show_urls = 'footnote'