Commit 6a8eb2a4bb54c4effa5bbdf56a96b478d51b1ea1

Authored by Sergio Oliveira
1 parent ee6a8816

Using latest django-browserid

requirements.txt
@@ -18,7 +18,6 @@ django-hitcounter==0.1.1 @@ -18,7 +18,6 @@ django-hitcounter==0.1.1
18 Pillow==2.5.1 18 Pillow==2.5.1
19 django-i18n-model==0.0.7 19 django-i18n-model==0.0.7
20 django-tastypie==0.11.0 20 django-tastypie==0.11.0
21 -django-browserid==0.10.1  
22 21
23 gunicorn==19.1.0 22 gunicorn==19.1.0
24 eventlet==0.15.0 23 eventlet==0.15.0
@@ -28,7 +27,10 @@ raven==3.5.2 @@ -28,7 +27,10 @@ raven==3.5.2
28 tornado==3.1.1 27 tornado==3.1.1
29 28
30 # Deps for Single SignOn (SSO) - Replaced with django-browserid==0.9 29 # Deps for Single SignOn (SSO) - Replaced with django-browserid==0.9
31 -# git+https://github.com/mozilla/django-browserid 30 +
  31 +# Release 0.10.1 has a bug already fixed on 55f0b9b0ebc.
  32 +# django-browserid==0.10.1
  33 +-e git+https://github.com/mozilla/django-browserid.git#egg=django-browserid
32 34
33 django-revproxy==0.2.7 35 django-revproxy==0.2.7
34 36
src/colab/local_settings-dev.py
@@ -18,6 +18,7 @@ EMAIL_SUBJECT_PREFIX = '' @@ -18,6 +18,7 @@ EMAIL_SUBJECT_PREFIX = ''
18 SECRET_KEY = ')(jksdfhsjkadfhjkh234ns!8fqu-1186h$vuj' 18 SECRET_KEY = ')(jksdfhsjkadfhjkh234ns!8fqu-1186h$vuj'
19 19
20 SITE_URL = 'http://localhost:8000' 20 SITE_URL = 'http://localhost:8000'
  21 +BROWSERID_AUDIENCES = [SITE_URL, SITE_URL.replace('https', 'http')]
21 22
22 ALLOWED_HOSTS = ['*'] 23 ALLOWED_HOSTS = ['*']
23 24