Fixes to README.rst including mention of the partial support for the CAS version...
[django-cas-provider.git] / README.rst
1 ===================
2 django-cas-provider
3 ===================
4
5 ---------------------------------
6 Chris Williams <chris@nitron.org>
7 ---------------------------------
8
9 OVERVIEW
10 =========
11
12 django-cas-provider is a provider for the `Central Authentication Service <http://jasig.org/cas>`_. It supports CAS version 1.0 and parts of CAS version 2.0 protocol. It allows remote services to authenticate users for the purposes of Single Sign-On (SSO). For example, a user logs into a CAS server 
13 (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 <http://www.ja-sig.org/wiki/display/CAS/Home>`_ and `Single Sign-On on Wikipedia <http://en.wikipedia.org/wiki/Single_Sign_On>`_.
14
15 INSTALLATION
16 =============
17
18 To install, run the following command from this directory::
19
20         python setup.py install
21
22 Or, put `cas_provider` somewhere on your Python path.
23         
24 USAGE
25 ======
26
27 #. Add ``'cas_provider'`` to your ``INSTALLED_APPS`` tuple in *settings.py*.
28 #. In *settings.py*, set ``LOGIN_URL`` to ``'/cas/login/'`` and ``LOGOUT_URL`` to ``'/cas/logout/'``
29 #. In *urls.py*, put the following line: ``(r'^cas/', include('cas_provider.urls')),``
30 #. Create login/logout templates (or modify the samples)