]> git.proxmox.com Git - mirror_qemu.git/blame - docs/tools/conf.py
tools/virtiofsd: xattr name mappings: Simple 'map'
[mirror_qemu.git] / docs / tools / conf.py
CommitLineData
65c3542b
PM
1# -*- coding: utf-8 -*-
2#
3# QEMU documentation build configuration file for the 'tools' 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'] = \
16 u'Tools Guide'
a08b4a9f
PM
17
18# One entry per manual page. List of tuples
19# (source start file, name, description, authors, manual section).
20man_pages = [
21 ('qemu-img', 'qemu-img', u'QEMU disk image utility',
22 ['Fabrice Bellard'], 1),
23 ('qemu-nbd', 'qemu-nbd', u'QEMU Disk Network Block Device Server',
24 ['Anthony Liguori <anthony@codemonkey.ws>'], 8),
25 ('qemu-trace-stap', 'qemu-trace-stap', u'QEMU SystemTap trace tool',
26 [], 1),
27 ('virtfs-proxy-helper', 'virtfs-proxy-helper',
28 u'QEMU 9p virtfs proxy filesystem helper',
29 ['M. Mohan Kumar'], 1),
30 ('virtiofsd', 'virtiofsd', u'QEMU virtio-fs shared file system daemon',
31 ['Stefan Hajnoczi <stefanha@redhat.com>',
32 'Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>'], 1),
33]