]> git.proxmox.com Git - mirror_qemu.git/blame - docs/system/conf.py
Merge remote-tracking branch 'remotes/vivier/tags/q800-for-5.0-pull-request' into...
[mirror_qemu.git] / docs / system / conf.py
CommitLineData
0928523a
PM
1# -*- coding: utf-8 -*-
2#
3# QEMU documentation build configuration file for the 'system' manual.
4#
5# This includes the top level conf file and then makes any necessary tweaks.
6import sys
7import os
8
9qemu_docdir = os.path.abspath("..")
10parent_config = os.path.join(qemu_docdir, "conf.py")
11exec(compile(open(parent_config, "rb").read(), parent_config, 'exec'))
12
13# This slightly misuses the 'description', but is the best way to get
14# the manual title to appear in the sidebar.
15html_theme_options['description'] = u'System Emulation User''s Guide'
1bf84a1e 16
acab923d
PM
17# One entry per manual page. List of tuples
18# (source start file, name, description, authors, manual section).
19man_pages = [
d06118bf
PM
20 ('qemu-manpage', 'qemu', u'QEMU User Documentation',
21 ['Fabrice Bellard'], 1),
acab923d
PM
22 ('qemu-block-drivers', 'qemu-block-drivers',
23 u'QEMU block drivers reference',
1bf84a1e
KC
24 ['Fabrice Bellard and the QEMU Project developers'], 7),
25 ('qemu-cpu-models', 'qemu-cpu-models',
26 u'QEMU CPU Models',
27 ['The QEMU Project developers'], 7)
acab923d 28]