diff options
Diffstat (limited to 'docs/en/rst/conf.py')
-rw-r--r-- | docs/en/rst/conf.py | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/docs/en/rst/conf.py b/docs/en/rst/conf.py index 34acb4778..6d30b83ea 100644 --- a/docs/en/rst/conf.py +++ b/docs/en/rst/conf.py @@ -42,8 +42,10 @@ source_suffix = '.rst' # The master toctree document. master_doc = 'index' +display_toc = True + # General information about the project. -project = u'Bugzilla' +project = u'Red Hat Bugzilla' copyright = u'2016, The Bugzilla Team' # The version info for the project you're documenting, acts as replacement for @@ -121,7 +123,7 @@ rst_epilog = """ ---------- This documentation undoubtedly has bugs; if you find some, please file -them `here <https://bugzilla.mozilla.org/enter_bug.cgi?product=Bugzilla&component=Documentation>`_. +them `here <https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&component=Documentation>`_. """ # -- Options for HTML output --------------------------------------------------- @@ -149,7 +151,7 @@ html_style = "bugzilla.css" # The name of an image file (relative to this directory) to place at the top # of the sidebar. -html_logo = "../images/bugzilla.png" +html_logo = "../images/redhat_logo.png" # The name of an image file (within the static path) to use as favicon of the # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32 @@ -190,7 +192,7 @@ html_use_index = False html_show_sourcelink = False # If true, "Created using Sphinx" is shown in the HTML footer. Default is True. -#html_show_sphinx = True +html_show_sphinx = False # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True. html_show_copyright = False @@ -391,5 +393,5 @@ if on_rtd: else: base_api_url = '../integrating/api/' -extlinks = {'bug': ('https://bugzilla.mozilla.org/show_bug.cgi?id=%s', 'bug '), +extlinks = {'bug': ('https://bugzilla.redhat.com/show_bug.cgi?id=%s', 'bug '), 'api': (base_api_url + '%s', '')} |