Nitron / django-cas-provider
- Source
- Commits
- Network (2)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Mar 17 22:07:21 -0700 2009 | |
| |
LICENSE | Tue Mar 17 17:10:12 -0700 2009 | |
| |
README.rst | Tue Mar 17 22:09:33 -0700 2009 | |
| |
cas_provider/ | Fri Oct 02 14:41:40 -0700 2009 | |
| |
setup.py | Tue Mar 17 16:05:57 -0700 2009 |
README.rst
django-cas-provider
Chris Williams <chris@nitron.org>
OVERVIEW
django-cas-provider is a provider for the Central Authentication Service. It supports CAS version 1.0. It allows remote services to authenticate users for the purposes of Single Sign-On (SSO). For example, a user logs into a CAS server (provided by django-cas-provider) and can then access other services (such as email, calendar, etc) without re-entering her password for each service. For more details, see the CAS wiki and Single Sign-On on Wikipedia.
INSTALLATION
To install, run the following command from this directory:
python setup.py install
Or, put cas_provider somewhere on your Python path.
USAGE
- Add 'cas_provider' to your INSTALLED_APPS tuple in settings.py.
- In settings.py, set LOGIN_URL to '/cas/login/' and LOGOUT_URL to '/cas/logout/'
- In urls.py, put the following line: (r'^cas/', include('cas_provider.urls')),
- Create login/logout templates (or modify the samples)
