aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorStefan Hajnoczi <stefanha@redhat.com>2019-12-19 13:56:20 +0000
committerThomas Huth <thuth@redhat.com>2020-01-12 11:42:41 +0100
commit22108f333d16cbfbd5808bb4f661c394b08fe698 (patch)
tree3d0e85acee9c94c444f0fc799cf6007aff0b770c /docs
parent1cf4323ecd03235984e43a416a42f10c975cf785 (diff)
downloadqemu-22108f333d16cbfbd5808bb4f661c394b08fe698.zip
qemu-22108f333d16cbfbd5808bb4f661c394b08fe698.tar.gz
qemu-22108f333d16cbfbd5808bb4f661c394b08fe698.tar.bz2
docs: build an index page for the HTML docs
There is no index.html start page for the QEMU HTML documentation. An index page is needed so that documentation can be browsed easily on the web. This patch adds an index.html.in template file where the QEMU version number is expanded. It is written in HTML instead of using the existing sphinx (rST) and texi documentation generators because they are heavyweight and would make this harder. Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> Message-Id: <20191219135620.1626608-1-stefanha@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/index.html.in17
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/index.html.in b/docs/index.html.in
new file mode 100644
index 0000000..94eb782
--- /dev/null
+++ b/docs/index.html.in
@@ -0,0 +1,17 @@
+<!DOCTYPE html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8">
+ <title>QEMU @@VERSION@@ Documentation</title>
+ </head>
+ <body>
+ <h1>QEMU @@VERSION@@ Documentation</h1>
+ <ul>
+ <li><a href="qemu-doc.html">User Documentation</a></li>
+ <li><a href="qemu-qmp-ref.html">QMP Reference Manual</a></li>
+ <li><a href="qemu-ga-ref.html">Guest Agent Protocol Reference</a></li>
+ <li><a href="interop/index.html">System Emulation Management and Interoperability Guide</a></li>
+ <li><a href="specs/index.html">System Emulation Guest Hardware Specifications</a></li>
+ </ul>
+ </body>
+</html>