1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: Disable Sphinx theme options causing privacy breach issues.
Author: Bas Couwenberg <sebastic@debian.org>
Forwarded: not-needed
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -54,11 +54,11 @@ html_sidebars = {
}
html_theme_options = {
'show_related': True,
- 'travis_button': True,
- 'github_banner': True,
+ 'travis_button': False,
+ 'github_banner': False,
'github_user': 'geopython',
'github_repo': 'pywps',
- 'github_button': True,
+ 'github_button': False,
'logo': 'pywps.png',
'logo_name': False
}
|