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(
# bottom, using the given strftime format.
html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Do not use smart quotes.
smartquotes = False
# Custom sidebar templates, maps document names to template names.
#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
# template names.
......
......@@ -21,9 +21,9 @@ requires = ['ZODB', 'ZConfig', 'ZEO']
tests_require = requires + ['mock']
testing_extras = tests_require + ['nose', 'coverage']
docs_extras = tests_require + [
'Sphinx >= 1.3.1',
'Sphinx >= 1.8.1',
'repoze.sphinx.autointerface',
'pylons-sphinx-themes',
'pylons-sphinx-themes >= 1.0.10',
]
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