doc: fix navigation levels in html sidebar of guides
authorJohn McNamara <john.mcnamara@intel.com>
Fri, 15 Jan 2016 16:35:32 +0000 (16:35 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sat, 16 Jan 2016 08:16:56 +0000 (09:16 +0100)
Fix issue where the navigation levels weren't displayed in the
html sidebar with the new read_the_docs theme.

This was due to the :titlesonly: directive in the high level
index.rst and also due to a stray newline in the parsed version
number.

Reported-by: Matthew Hall <mhall@mhcomputing.net>
Signed-off-by: John McNamara <john.mcnamara@intel.com>
doc/guides/conf.py
doc/guides/index.rst

index 1861443..2c5610f 100644 (file)
@@ -45,7 +45,7 @@ html_add_permalinks = ""
 html_show_copyright = False
 highlight_language = 'none'
 
-version = subprocess.check_output(['make', '-sRrC', '../../', 'showversion']).decode('utf-8')
+version = subprocess.check_output(['make', '-sRrC', '../../', 'showversion']).decode('utf-8').rstrip()
 release = version
 
 master_doc = 'index'
index 638eab9..7aef7a3 100644 (file)
@@ -33,7 +33,6 @@ DPDK documentation
 
 .. toctree::
    :maxdepth: 1
-   :titlesonly:
 
    linux_gsg/index
    freebsd_gsg/index