From patchwork Tue Oct 20 11:31:29 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John McNamara X-Patchwork-Id: 7765 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id EA5638E83; Tue, 20 Oct 2015 13:31:34 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 5885A8E82 for ; Tue, 20 Oct 2015 13:31:33 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP; 20 Oct 2015 04:31:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.17,707,1437462000"; d="scan'208";a="797911251" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 20 Oct 2015 04:31:31 -0700 Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id t9KBVUxG003259; Tue, 20 Oct 2015 12:31:30 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id t9KBVUEq032668; Tue, 20 Oct 2015 12:31:30 +0100 Received: (from jmcnam2@localhost) by sivswdev02.ir.intel.com with id t9KBVU29032664; Tue, 20 Oct 2015 12:31:30 +0100 From: John McNamara To: dev@dpdk.org Date: Tue, 20 Oct 2015 12:31:29 +0100 Message-Id: <1445340689-32625-1-git-send-email-john.mcnamara@intel.com> X-Mailer: git-send-email 1.7.4.1 Subject: [dpdk-dev] [PATCH] doc: change sphinx theme to the read the docs theme X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Change the Sphinx default theme from "alabaster" to the ReadTheDocs theme. See for example: http://dpdk.readthedocs.org/en/latest/ This looks better for technical documentation and in particular it has a 80 char wide verbatim block rendering. Also turn off option for distracting Html mouseover permalinks. Signed-off-by: John McNamara --- doc/guides/conf.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/conf.py b/doc/guides/conf.py index b2290b4..8cfb7d3 100644 --- a/doc/guides/conf.py +++ b/doc/guides/conf.py @@ -37,6 +37,8 @@ from pygments.formatters.latex import LatexFormatter project = 'DPDK' +html_theme = "sphinx_rtd_theme" +html_add_permalinks = "" html_show_copyright = False highlight_language = 'none'