X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=doc%2Fsource%2Fconf.py;h=d0f203afce95e4db45d97701ac85856a9b63005f;hp=17572a26da4ef41b005726f090b89bc2dca4900d;hb=0990f14397431811d3bce39b455201b802ad3ae7;hpb=eddd57cd87b8e404daa2d4e05cf9e936fd090309 diff --git a/doc/source/conf.py b/doc/source/conf.py index 17572a2..d0f203a 100755 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,7 +1,8 @@ -# Copyright (c) 2018 mudpy authors. Permission to use, copy, +# Copyright (c) 2018-2020 mudpy authors. Permission to use, copy, # modify, and distribute this software is granted under terms # provided in the LICENSE file distributed with this software. +import collections import os import sys @@ -11,7 +12,7 @@ project = 'mudpy' add_function_parentheses = True add_module_names = True -copyright = '2004-2018, Jeremy Stanley ' +copyright = '2004-2020, mudpy authors' extensions = ['sphinx.ext.autodoc'] html_favicon = '_static/logo.svg' html_logo = '_static/logo.svg' @@ -24,6 +25,12 @@ html_sidebars = {'**': [ ]} html_theme_options = { 'description': 'The mudpy MUD server engine.', + 'extra_nav_links': collections.OrderedDict(( + ('Browse Source', 'https://mudpy.org/code/mudpy/'), + ('Bug Reporting', 'https://mudpy.org/bugs/mudpy/'), + ('Git Clone URL', 'https://mudpy.org/code/mudpy/'), + ('Release Files', 'https://mudpy.org/dist/mudpy/'), + )), 'fixed_sidebar': True, 'logo_name': True, 'logo_text_align': 'center',