|
@@ -29,7 +29,6 @@
|
|
import os
|
|
import os
|
|
import sys
|
|
import sys
|
|
import sphinx
|
|
import sphinx
|
|
-from distutils.version import LooseVersion
|
|
|
|
from sphinx.errors import ConfigError
|
|
from sphinx.errors import ConfigError
|
|
|
|
|
|
# The per-manual conf.py will set qemu_docdir for a single-manual build;
|
|
# The per-manual conf.py will set qemu_docdir for a single-manual build;
|
|
@@ -165,11 +164,10 @@
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
# Theme options are theme-specific and customize the look and feel of a theme
|
|
# further. For a list of options available for each theme, see the
|
|
# further. For a list of options available for each theme, see the
|
|
# documentation.
|
|
# documentation.
|
|
-if LooseVersion(sphinx_rtd_theme.__version__) >= LooseVersion("0.4.3"):
|
|
|
|
- html_theme_options = {
|
|
|
|
- "style_nav_header_background": "#802400",
|
|
|
|
- "navigation_with_keys": True,
|
|
|
|
- }
|
|
|
|
|
|
+html_theme_options = {
|
|
|
|
+ "style_nav_header_background": "#802400",
|
|
|
|
+ "navigation_with_keys": True,
|
|
|
|
+}
|
|
|
|
|
|
html_logo = os.path.join(qemu_docdir, "../ui/icons/qemu_128x128.png")
|
|
html_logo = os.path.join(qemu_docdir, "../ui/icons/qemu_128x128.png")
|
|
|
|
|