]> Git Repo - qemu.git/blame - docs/interop/conf.py
qapi: Fix Visitor contract for start_alternate()
[qemu.git] / docs / interop / conf.py
CommitLineData
f8cf7147
PM
1# -*- coding: utf-8 -*-
2#
3# QEMU documentation build configuration file for the 'interop' 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 Management and Interoperability Guide'
27a296fc
PM
16
17# One entry per manual page. List of tuples
18# (source start file, name, description, authors, manual section).
19man_pages = [
20 ('qemu-ga', 'qemu-ga', u'QEMU Guest Agent',
87c0868f 21 ['Michael Roth <[email protected]>'], 8),
27a296fc 22]
This page took 0.056911 seconds and 4 git commands to generate.