diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-05-19 16:24:21 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-05-19 16:24:21 -0700 |
| commit | 02c9dc5b0384ba8f6d4bb2da1cea68a9224f43dd (patch) | |
| tree | 14ede0da10509f2a0f3d26914ed66c4abc3070b0 /docs | |
| parent | 11d26f5102162ec02c890aafc3c78f19ce3a6025 (diff) | |
| download | waitress-02c9dc5b0384ba8f6d4bb2da1cea68a9224f43dd.tar.gz | |
Add date for copyright
- fix GitHub URL
- use correct name of organization
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/conf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index aa9b3fb..41fd08e 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -18,6 +18,7 @@ #sys.path.append(os.path.abspath('some/directory')) import sys, os +import datetime import pkg_resources import pylons_sphinx_themes @@ -41,7 +42,8 @@ master_doc = 'index' # General substitutions. project = 'waitress' -copyright = '2012, Agendaless Consulting <chrism@plope.com>' +thisyear = datetime.datetime.now().year +copyright = '2012-%s, Agendaless Consulting <chrism@plope.com>' % thisyear # The default replacements for |version| and |release|, also used in various # other places throughout the built documents. @@ -91,7 +93,7 @@ pygments_style = 'sphinx' # Add and use Pylons theme html_theme = 'pylons' html_theme_path = pylons_sphinx_themes.get_html_themes_path() -html_theme_options = dict(github_url='http://github.com/Pylons/waitress') +html_theme_options = dict(github_url='https://github.com/Pylons/waitress') # The style sheet to use for HTML and HTML Help pages. A file of that name # must exist either in Sphinx' static/ path, or in one of the custom paths @@ -175,7 +177,7 @@ htmlhelp_basename = 'atemplatedoc' # author, document class [howto/manual]). latex_documents = [ ('index', 'waitress.tex', 'waitress Documentation', - 'Pylons Developers', 'manual'), + 'Pylons Project Developers', 'manual'), ] # The name of an image file (relative to this directory) to place at the |
