From: Stas Kravets Date: Wed, 9 May 2012 11:40:46 +0000 (+0400) Subject: Preparing for merge with main branch - more clean-ups and documents update X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=d4a970761bf93bc48c874e5d12be3cbaa20ebef9;p=django-social-auth.git Preparing for merge with main branch - more clean-ups and documents update --- diff --git a/README.rst b/README.rst index 2fddd11..f185e05 100644 --- a/README.rst +++ b/README.rst @@ -747,6 +747,9 @@ http://127.0.0.1:8000 or http://localhost:8000 because it won't work when testing. Instead I define http://myapp.com and setup a mapping on /etc/hosts or use dnsmasq_. +If you need to perform authentication from Facebook Canvas application, take a +look to `Facebook Canvas Application Authentication`_. + Orkut ^^^^^ @@ -1140,6 +1143,7 @@ Mailing list Join to `django-social-auth discussion list`_ and bring any questions or suggestions that would improve this application. Convore_ discussion group is deprecated since the service is going to be shut down on April 1st. + South users ^^^^^^^^^^^ South_ users should add this rule to enable migrations:: @@ -1348,4 +1352,5 @@ Base work is copyrighted by: .. _hassek: https://github.com/hassek .. _Mail.ru OAuth: http://api.mail.ru/docs/guides/oauth/ .. _Odnoklassniki OAuth: http://dev.odnoklassniki.ru/wiki/display/ok/The+OAuth+2.0+Protocol -.. _authentication for VKontakte applications: http://www.ikrvss.ru/2011/11/08/django-social-auh-and-vkontakte-application/ \ No newline at end of file +.. _authentication for VKontakte applications: http://www.ikrvss.ru/2011/11/08/django-social-auh-and-vkontakte-application/ +.. _Facebook Canvas Application Authentication: http://www.ikrvss.ru/2011/09/22/django-social-auth-and-facebook-canvas-applications/ \ No newline at end of file diff --git a/example/local_settings.py.template b/example/local_settings.py.template index 827b9e0..c20f800 100644 --- a/example/local_settings.py.template +++ b/example/local_settings.py.template @@ -54,4 +54,4 @@ SOCIAL_AUTH_PIPELINE = ( 'social_auth.backends.pipeline.social.associate_user', 'social_auth.backends.pipeline.social.load_extra_data', 'social_auth.backends.pipeline.user.update_user_details', -) \ No newline at end of file +) diff --git a/example/templates/done.html b/example/templates/done.html index 9200e52..c21d950 100644 --- a/example/templates/done.html +++ b/example/templates/done.html @@ -65,18 +65,7 @@ {% else %} {% if name == "openid" %} -
{% csrf_token %} -
- - - -
-
- -
  • -
    {% csrf_token %} + {% csrf_token %}
    diff --git a/setup.py b/setup.py index d062c08..583a397 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup(name='django-social-auth', install_requires=['django>=1.2.5', 'oauth2>=1.5.167', 'python_openid>=2.2'], - classifiers=['Framework :: Django', + classifiers=['Framework :: Django', 'Development Status :: 4 - Beta', 'Topic :: Internet', 'License :: OSI Approved :: BSD License',