1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Yaroslav Halchenko <debian@onerussian.com>
Subject: Disable google analytics referrals in the -doc
if we were to provide some information from just reading documentation we
had to disclose and seek approval from the user before doing that.
Thanks Ambrose Andrews for the analysis and report
Origin: Debian
Bug: 730259
Bug-Debian: http://bugs.debian.org/730259
Bug-Ubuntu: https://launchpad.net/bugs/
Last-Update: 2013-11-24
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -133,7 +133,7 @@ html_theme = 'scikit-learn'
# further. For a list of options available for each theme, see the
# documentation.
html_theme_options = {'oldversion': False, 'collapsiblesidebar': True,
- 'google_analytics': True, 'surveybanner': False,
+ 'google_analytics': False, 'surveybanner': False,
'sprintbanner': True}
# Add any paths that contain custom themes here, relative to this directory.
--- a/doc/themes/scikit-learn/theme.conf
+++ b/doc/themes/scikit-learn/theme.conf
@@ -6,6 +6,6 @@ pygments_style = tango
[options]
oldversion = False
collapsiblesidebar = True
-google_analytics = True
+google_analytics = False
surveybanner = False
sprintbanner = True
|