├── .coveragerc ├── .editorconfig ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── setup.py ├── simple_sso ├── __init__.py ├── exceptions.py ├── models.py ├── sso_client │ ├── __init__.py │ └── client.py ├── sso_server │ ├── __init__.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_consumer_name_max_length.py │ │ ├── 0003_token_redirect_to_max_length.py │ │ └── __init__.py │ ├── models.py │ └── server.py └── utils.py ├── tests ├── __init__.py ├── requirements.txt ├── settings.py ├── test_core.py ├── test_migrations.py ├── urls.py └── utils │ ├── __init__.py │ └── context_managers.py ├── tox.ini └── travis.yml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/setup.py -------------------------------------------------------------------------------- /simple_sso/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.3.0' 2 | -------------------------------------------------------------------------------- /simple_sso/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/exceptions.py -------------------------------------------------------------------------------- /simple_sso/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/models.py -------------------------------------------------------------------------------- /simple_sso/sso_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_sso/sso_client/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_client/client.py -------------------------------------------------------------------------------- /simple_sso/sso_server/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/__init__.py -------------------------------------------------------------------------------- /simple_sso/sso_server/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/apps.py -------------------------------------------------------------------------------- /simple_sso/sso_server/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/migrations/0001_initial.py -------------------------------------------------------------------------------- /simple_sso/sso_server/migrations/0002_consumer_name_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/migrations/0002_consumer_name_max_length.py -------------------------------------------------------------------------------- /simple_sso/sso_server/migrations/0003_token_redirect_to_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/migrations/0003_token_redirect_to_max_length.py -------------------------------------------------------------------------------- /simple_sso/sso_server/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /simple_sso/sso_server/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/models.py -------------------------------------------------------------------------------- /simple_sso/sso_server/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/sso_server/server.py -------------------------------------------------------------------------------- /simple_sso/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/simple_sso/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- 1 | tox 2 | coverage 3 | flake8 4 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/tests/test_core.py -------------------------------------------------------------------------------- /tests/test_migrations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/tests/test_migrations.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/context_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/tests/utils/context_managers.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/tox.ini -------------------------------------------------------------------------------- /travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divio/django-simple-sso/HEAD/travis.yml --------------------------------------------------------------------------------