Commit efb26f28 authored by Steve Piercy's avatar Steve Piercy

Add support for ethical ads

- Do not use smart quotes
parent 8f611b81
...@@ -127,12 +127,19 @@ html_theme_options = dict( ...@@ -127,12 +127,19 @@ html_theme_options = dict(
# bottom, using the given strftime format. # bottom, using the given strftime format.
html_last_updated_fmt = '%b %d, %Y' html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to # Do not use smart quotes.
# typographically correct entities. smartquotes = False
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names. # Custom sidebar templates, maps document names to template names.
#html_sidebars = {} #html_sidebars = {}
# Control display of sidebars and include ethical ads from RTD
html_sidebars = {'**': [
'localtoc.html',
'ethicalads.html',
'relations.html',
'sourcelink.html',
'searchbox.html',
]}
# Additional templates that should be rendered to pages, maps page names to # Additional templates that should be rendered to pages, maps page names to
# template names. # template names.
......
...@@ -21,9 +21,9 @@ requires = ['ZODB', 'ZConfig', 'ZEO'] ...@@ -21,9 +21,9 @@ requires = ['ZODB', 'ZConfig', 'ZEO']
tests_require = requires + ['mock'] tests_require = requires + ['mock']
testing_extras = tests_require + ['nose', 'coverage'] testing_extras = tests_require + ['nose', 'coverage']
docs_extras = tests_require + [ docs_extras = tests_require + [
'Sphinx >= 1.3.1', 'Sphinx >= 1.8.1',
'repoze.sphinx.autointerface', 'repoze.sphinx.autointerface',
'pylons-sphinx-themes', 'pylons-sphinx-themes >= 1.0.10',
] ]
setup(name='zodburi', setup(name='zodburi',
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment