Commit 6936a9ac49afcd2da18aeacbb19547c47d25dcd9
1 parent
0524f486
Exists in
master
and in
39 other branches
Fix #13 login problems with browserid
-Fix login not working after downgrading from 0.10 -Change requirements to 0.9 instead of latest Signed-off-by: Gustavo Jaruga<darksshades@gmail.com>
Showing
2 changed files
with
4 additions
and
2 deletions
Show diff stats
requirements.txt
@@ -18,6 +18,7 @@ django-hitcounter==0.1.1 | @@ -18,6 +18,7 @@ django-hitcounter==0.1.1 | ||
18 | Pillow==2.2.1 | 18 | Pillow==2.2.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.9 | ||
21 | 22 | ||
22 | gunicorn==18.0 | 23 | gunicorn==18.0 |
23 | gevent==0.13.8 | 24 | gevent==0.13.8 |
@@ -26,8 +27,8 @@ gevent==0.13.8 | @@ -26,8 +27,8 @@ gevent==0.13.8 | ||
26 | raven==3.5.2 | 27 | raven==3.5.2 |
27 | tornado==3.1.1 | 28 | tornado==3.1.1 |
28 | 29 | ||
29 | -# Deps for Single SignOn (SSO) | ||
30 | -git+https://github.com/mozilla/django-browserid | 30 | +# Deps for Single SignOn (SSO) - Replaced with django-browserid==0.9 |
31 | +# git+https://github.com/mozilla/django-browserid | ||
31 | 32 | ||
32 | django-revproxy==0.2.7 | 33 | django-revproxy==0.2.7 |
33 | 34 |
src/templates/base.html
@@ -41,6 +41,7 @@ | @@ -41,6 +41,7 @@ | ||
41 | </head> | 41 | </head> |
42 | 42 | ||
43 | <body class="container"> | 43 | <body class="container"> |
44 | + {% browserid_info %} | ||
44 | 45 | ||
45 | {% block navbar %} | 46 | {% block navbar %} |
46 | <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> | 47 | <nav class="navbar navbar-default navbar-fixed-top" role="navigation"> |