conf.py 1.3 KB

1234567891011121314151617181920212223242526272829303132333435
  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.
  6. import sys
  7. import os
  8. qemu_docdir = os.path.abspath("..")
  9. parent_config = os.path.join(qemu_docdir, "conf.py")
  10. exec(compile(open(parent_config, "rb").read(), parent_config, 'exec'))
  11. # This slightly misuses the 'description', but is the best way to get
  12. # the manual title to appear in the sidebar.
  13. html_theme_options['description'] = \
  14. u'Tools Guide'
  15. # One entry per manual page. List of tuples
  16. # (source start file, name, description, authors, manual section).
  17. man_pages = [
  18. ('qemu-img', 'qemu-img', u'QEMU disk image utility',
  19. ['Fabrice Bellard'], 1),
  20. ('qemu-nbd', 'qemu-nbd', u'QEMU Disk Network Block Device Server',
  21. ['Anthony Liguori <anthony@codemonkey.ws>'], 8),
  22. ('qemu-pr-helper', 'qemu-pr-helper', 'QEMU persistent reservation helper',
  23. [], 8),
  24. ('qemu-trace-stap', 'qemu-trace-stap', u'QEMU SystemTap trace tool',
  25. [], 1),
  26. ('virtfs-proxy-helper', 'virtfs-proxy-helper',
  27. u'QEMU 9p virtfs proxy filesystem helper',
  28. ['M. Mohan Kumar'], 1),
  29. ('virtiofsd', 'virtiofsd', u'QEMU virtio-fs shared file system daemon',
  30. ['Stefan Hajnoczi <stefanha@redhat.com>',
  31. 'Masayoshi Mizuma <m.mizuma@jp.fujitsu.com>'], 1),
  32. ]