File: privacy-breach.patch

package info (click to toggle)
pywps 4.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,000 kB
  • sloc: python: 8,838; xml: 723; makefile: 39
file content (21 lines) | stat: -rw-r--r-- 557 bytes parent folder | download | duplicates (4)
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
 }