Fix documentation build
This commit is contained in:
parent
42b6f8d91d
commit
73b70bf35f
2 changed files with 7 additions and 7 deletions
|
@ -7,7 +7,6 @@ Changelog
|
|||
* :support:`-` update to Python 3
|
||||
* :support:`-` use Pipenv for dependency management
|
||||
* :support:`-` switch result backend to Redis
|
||||
* :bug:`-` fix template error in password reset response
|
||||
* :support:`-` use separate test vhost for celery queues
|
||||
* :support:`-` switch licensing to AGPLv3+
|
||||
* :support:`-` add a Vagrant setup to ease development
|
||||
|
@ -21,13 +20,13 @@ Changelog
|
|||
* :support:`-` update documentation
|
||||
|
||||
* :release:`0.11.6 <2020-02-14>`
|
||||
:support:`-` Update dependencies to versions that work with Debian Stretch
|
||||
* :support:`-` Update dependencies to versions that work with Debian Stretch
|
||||
|
||||
* :release:`0.11.5 <2018-12-26>`
|
||||
:support:`-` Remove Xing support from settings and templates
|
||||
* :support:`-` Remove Xing support from settings and templates
|
||||
|
||||
* :release:`0.11.4 <2016-12-31>`
|
||||
:bug:`-` fix wrong tag in password reset done template
|
||||
* :bug:`-` fix wrong tag in password reset done template
|
||||
|
||||
* :release:`0.11.3 <2015-02-21>`
|
||||
* :bug:`-` fix handling of OpenSSH formatted keys with whitespace in comments
|
||||
|
|
|
@ -22,6 +22,7 @@ import django
|
|||
# documentation root, use os.path.abspath to make it absolute, like shown here.
|
||||
sys.path.insert(0, os.path.abspath(os.path.join('..', 'gnuviechadmin')))
|
||||
|
||||
os.environ['DJANGO_SETTINGS_MODULE'] = 'gnuviechadmin.settings'
|
||||
os.environ['GVA_SITE_ADMINMAIL'] = 'admin@gva.example.org'
|
||||
|
||||
django.setup()
|
||||
|
@ -38,8 +39,8 @@ extensions = [
|
|||
'sphinxcontrib.blockdiag']
|
||||
|
||||
# configuration for releases extension
|
||||
releases_issue_uri = 'https://dev.gnuviech-server.de/gva/ticket/%s'
|
||||
releases_release_uri = 'https://dev.gnuviech-server.de/gva/browser/?rev=%s'
|
||||
releases_issue_uri = 'https://git.dittberner.info/gnuviech/gva/issues/%s'
|
||||
releases_release_uri = 'https://git.dittberner.info/gnuviech/gva/src/tag/%s'
|
||||
|
||||
# configuration for blockdiag extension
|
||||
blockdiag_fontpath = '/usr/share/fonts/truetype/dejavu/'
|
||||
|
@ -58,7 +59,7 @@ master_doc = 'index'
|
|||
|
||||
# General information about the project.
|
||||
project = u'gnuviechadmin'
|
||||
copyright = u'2014, 2015, 2016 Jan Dittberner'
|
||||
copyright = u'2014-2020, Jan Dittberner'
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
|
|
Loading…
Reference in a new issue