New authentication middleware.
authorAntony Chazapis <chazapis@gmail.com>
Thu, 4 Aug 2011 15:06:15 +0000 (18:06 +0300)
committerAntony Chazapis <chazapis@gmail.com>
Thu, 4 Aug 2011 15:06:15 +0000 (18:06 +0300)
commitd7d601478c62f75e06aaffe50d7c6d9a27bed4f7
tree3a9b1f7f8c141081bbe91e00ff64e2676fd25070
parentc1cdc455114658d07c2396a244f5fff59dc2047c
New authentication middleware.
Uses users stored in a django model.

Update settings.py and then run:
  python manage.py syncdb
  python manage.py loaddata aai/fixtures/auth_test_data.json
13 files changed:
pithos/aai/__init__.py [new file with mode: 0644]
pithos/aai/fixtures/auth_test_data.json [new file with mode: 0644]
pithos/aai/functions.py [new file with mode: 0644]
pithos/aai/models.py [new file with mode: 0644]
pithos/aai/shibboleth.py [new file with mode: 0644]
pithos/aai/util.py [new file with mode: 0644]
pithos/middleware/__init__.py
pithos/middleware/auth.py [new file with mode: 0644]
pithos/middleware/log.py [moved from pithos/api/auth.py with 71% similarity]
pithos/public/tests.py [deleted file]
pithos/settings.py.dist
pithos/test-settings.py [deleted file]
pithos/urls.py