├── .gitignore ├── CONTRIBUTORS ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── TODO.rst ├── background.rst ├── callbacks.rst ├── conf.py ├── credits.rst ├── goals.rst ├── index.rst ├── make.bat ├── settings.rst ├── test_project.rst └── usage.rst ├── la_facebook ├── __init__.py ├── access.py ├── admin.py ├── callbacks │ ├── __init__.py │ ├── base.py │ └── default.py ├── exceptions.py ├── la_fb_logging.py ├── models.py ├── templates │ └── la_facebook │ │ └── fb_error.html ├── templatetags │ ├── __init__.py │ └── la_facebook_tags.py ├── tests │ ├── __init__.py │ ├── test_access_module.py │ ├── test_callbacks.py │ ├── test_models.py │ ├── test_views.py │ ├── urls.py │ └── views.py ├── urls.py ├── utils │ ├── __init__.py │ ├── anyetree.py │ └── loader.py └── views.py ├── requirements.txt ├── setup.cfg ├── setup.py └── test_project ├── __init__.py ├── connect ├── __init__.py ├── fixtures │ └── initial_data.json ├── models.py ├── templates │ ├── after.html │ ├── fbinfo.html │ ├── index.html │ └── registration │ │ └── login.html ├── tests │ ├── __init__.py │ ├── test_connect.py │ └── utils.py ├── urls.py └── views.py ├── manage.py ├── settings.py └── urls.py /.gitignore: -------------------------------------------------------------------------------- 1 | MANIFEST 2 | dist 3 | *pyc 4 | lafbenv/ 5 | test_project/dummy 6 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/TODO.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/TODO.rst -------------------------------------------------------------------------------- /docs/background.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/background.rst -------------------------------------------------------------------------------- /docs/callbacks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/callbacks.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/credits.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/credits.rst -------------------------------------------------------------------------------- /docs/goals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/goals.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/settings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/settings.rst -------------------------------------------------------------------------------- /docs/test_project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/test_project.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /la_facebook/__init__.py: -------------------------------------------------------------------------------- 1 | __VERSION__=(0,1,0) 2 | -------------------------------------------------------------------------------- /la_facebook/access.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/access.py -------------------------------------------------------------------------------- /la_facebook/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/admin.py -------------------------------------------------------------------------------- /la_facebook/callbacks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /la_facebook/callbacks/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/callbacks/base.py -------------------------------------------------------------------------------- /la_facebook/callbacks/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/callbacks/default.py -------------------------------------------------------------------------------- /la_facebook/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/exceptions.py -------------------------------------------------------------------------------- /la_facebook/la_fb_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/la_fb_logging.py -------------------------------------------------------------------------------- /la_facebook/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/models.py -------------------------------------------------------------------------------- /la_facebook/templates/la_facebook/fb_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/templates/la_facebook/fb_error.html -------------------------------------------------------------------------------- /la_facebook/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /la_facebook/templatetags/la_facebook_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/templatetags/la_facebook_tags.py -------------------------------------------------------------------------------- /la_facebook/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/__init__.py -------------------------------------------------------------------------------- /la_facebook/tests/test_access_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/test_access_module.py -------------------------------------------------------------------------------- /la_facebook/tests/test_callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/test_callbacks.py -------------------------------------------------------------------------------- /la_facebook/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/test_models.py -------------------------------------------------------------------------------- /la_facebook/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/test_views.py -------------------------------------------------------------------------------- /la_facebook/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/urls.py -------------------------------------------------------------------------------- /la_facebook/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/tests/views.py -------------------------------------------------------------------------------- /la_facebook/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/urls.py -------------------------------------------------------------------------------- /la_facebook/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /la_facebook/utils/anyetree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/utils/anyetree.py -------------------------------------------------------------------------------- /la_facebook/utils/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/utils/loader.py -------------------------------------------------------------------------------- /la_facebook/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/la_facebook/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/setup.py -------------------------------------------------------------------------------- /test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/connect/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/connect/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/fixtures/initial_data.json -------------------------------------------------------------------------------- /test_project/connect/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/models.py -------------------------------------------------------------------------------- /test_project/connect/templates/after.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/templates/after.html -------------------------------------------------------------------------------- /test_project/connect/templates/fbinfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/templates/fbinfo.html -------------------------------------------------------------------------------- /test_project/connect/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/templates/index.html -------------------------------------------------------------------------------- /test_project/connect/templates/registration/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/templates/registration/login.html -------------------------------------------------------------------------------- /test_project/connect/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/tests/__init__.py -------------------------------------------------------------------------------- /test_project/connect/tests/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/tests/test_connect.py -------------------------------------------------------------------------------- /test_project/connect/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/tests/utils.py -------------------------------------------------------------------------------- /test_project/connect/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/urls.py -------------------------------------------------------------------------------- /test_project/connect/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/connect/views.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/settings.py -------------------------------------------------------------------------------- /test_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cartwheelweb/django-la-facebook/HEAD/test_project/urls.py --------------------------------------------------------------------------------