From a89be24303ff2779e9f03a663a8c751c27a02a70 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Mon, 20 Apr 2015 13:27:30 +0200 Subject: [PATCH] RST Guides: Fix Report a bug link We need to have html_show_sourcelink as True (default) so that "Report a bug" works, otherwise the source name is not available. Change-Id: I5300fa02908757ed77b30ef4bb9894136318e364 --- doc/networking-guide/source/conf.py | 3 ++- doc/user-guides/source/conf.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/networking-guide/source/conf.py b/doc/networking-guide/source/conf.py index 70ed1ef7b2..2eaa6d1159 100644 --- a/doc/networking-guide/source/conf.py +++ b/doc/networking-guide/source/conf.py @@ -181,7 +181,8 @@ html_use_index = False # html_split_index = False # If true, links to the reST sources are added to the pages. -html_show_sourcelink = False +# This one is needed for "Report a bug". +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. # html_show_sphinx = True diff --git a/doc/user-guides/source/conf.py b/doc/user-guides/source/conf.py index 246feed3e3..eeae6bd983 100644 --- a/doc/user-guides/source/conf.py +++ b/doc/user-guides/source/conf.py @@ -199,7 +199,8 @@ html_use_index = False # html_split_index = False # If true, links to the reST sources are added to the pages. -html_show_sourcelink = False +# This one is needed for "Report a bug". +# html_show_sourcelink = True # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. # html_show_sphinx = True