From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:38818) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gpa9Y-0008Js-8Y for qemu-devel@nongnu.org; Fri, 01 Feb 2019 09:50:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gpa9W-00045U-KX for qemu-devel@nongnu.org; Fri, 01 Feb 2019 09:50:48 -0500 Received: from mail-wr1-x444.google.com ([2a00:1450:4864:20::444]:45906) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gpa9W-00044A-CF for qemu-devel@nongnu.org; Fri, 01 Feb 2019 09:50:46 -0500 Received: by mail-wr1-x444.google.com with SMTP id t6so7330030wrr.12 for ; Fri, 01 Feb 2019 06:50:46 -0800 (PST) From: Peter Maydell Date: Fri, 1 Feb 2019 14:50:29 +0000 Message-Id: <20190201145035.22739-6-peter.maydell@linaro.org> In-Reply-To: <20190201145035.22739-1-peter.maydell@linaro.org> References: <20190201145035.22739-1-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH 05/11] docs/conf.py: Configure the 'alabaster' theme List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: patches@linaro.org, Stefan Hajnoczi , Paolo Bonzini , =?UTF-8?q?Daniel=20P=20=2E=20Berrang=C3=A9?= , =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= , =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= Add the 'navigation' bar to the sidebar, which for some reason is not enabled by default. Remove 'relations', which is effectively disabled anyway and isn't useful for us. Signed-off-by: Peter Maydell --- docs/conf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/conf.py b/docs/conf.py index e1d08a34a65..348e6358740 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -106,7 +106,8 @@ html_theme = 'alabaster' # refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars html_sidebars = { '**': [ - 'relations.html', # needs 'show_related': True theme option to display + 'about.html', + 'navigation.html', 'searchbox.html', ] } -- 2.20.1