Commit e2241836a0920ec9d65e8927b8a27af9144bc8f5
1 parent
a2e34e57
Exists in
master
and in
31 other branches
removed sentry from deps
Showing
3 changed files
with
13 additions
and
13 deletions
Show diff stats
colab/management/initconfig.py
colab/settings.py
| ... | ... | @@ -252,12 +252,7 @@ TASTYPIE_DEFAULT_FORMATS = ['json', ] |
| 252 | 252 | |
| 253 | 253 | from .utils.conf import load_colab_apps, load_py_settings |
| 254 | 254 | |
| 255 | -if locals().get('RAVEN_DSN', False): | |
| 256 | - RAVEN_CONFIG = { | |
| 257 | - 'dsn': RAVEN_DSN + '?timeout=30', # noqa | |
| 258 | - } | |
| 259 | - INSTALLED_APPS += ('raven.contrib.django.raven_compat',) | |
| 260 | - | |
| 255 | +BROWSERID_ENABLED = locals().get('BROWSERID_ENABLED') or False | |
| 261 | 256 | SOCIAL_NETWORK_ENABLED = locals().get('SOCIAL_NETWORK_ENABLED') or False |
| 262 | 257 | |
| 263 | 258 | locals().update(load_colab_apps()) | ... | ... |
setup.py
| ... | ... | @@ -25,11 +25,19 @@ REQUIREMENTS = [ |
| 25 | 25 | 'gunicorn==19.1.0', |
| 26 | 26 | 'eventlet==0.15.2', |
| 27 | 27 | |
| 28 | - # Deps for sentry client (raven) | |
| 29 | - 'raven==3.5.2', | |
| 30 | - 'tornado==3.1.1', | |
| 28 | + # Deps for Single SignOn (SSO) - Replaced with django-browserid==0.9 | |
| 29 | + 'django-browserid==0.11', | |
| 30 | + 'django-revproxy==0.9.0', | |
| 31 | 31 | |
| 32 | - 'django-revproxy==0.9.3', | |
| 32 | + # Converse.js (XMPP client) | |
| 33 | + 'django-conversejs==0.3.4', | |
| 34 | + | |
| 35 | + # Feedzilla (planet) and deps | |
| 36 | + 'django-common==0.1.51', | |
| 37 | + 'feedparser==5.1.3', | |
| 38 | + 'lxml==3.2.4', | |
| 39 | + 'grab==0.4.13', | |
| 40 | + 'transliterate==1.5', | |
| 33 | 41 | |
| 34 | 42 | # Diazo |
| 35 | 43 | 'diazo==1.0.5', | ... | ... |