summaryrefslogtreecommitdiffstats
path: root/funcweb
diff options
context:
space:
mode:
authorLuke Macken <lmacken@redhat.com>2008-02-20 11:38:05 -0500
committerLuke Macken <lmacken@redhat.com>2008-02-20 11:38:05 -0500
commit87b82c0366427456a178c2eaed6d0b7e27d640ac (patch)
treeb909a1772a17b5b943b71e0c27977d4e2ed30756 /funcweb
parent169fc5e750b143432c641f85db4a492d1433f92b (diff)
downloadthird_party-func-87b82c0366427456a178c2eaed6d0b7e27d640ac.tar.gz
third_party-func-87b82c0366427456a178c2eaed6d0b7e27d640ac.tar.xz
third_party-func-87b82c0366427456a178c2eaed6d0b7e27d640ac.zip
Add some documentation to our pamprovider module
Diffstat (limited to 'funcweb')
-rw-r--r--funcweb/funcweb/identity/pamprovider.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/funcweb/funcweb/identity/pamprovider.py b/funcweb/funcweb/identity/pamprovider.py
index ebcea91..68aedfb 100644
--- a/funcweb/funcweb/identity/pamprovider.py
+++ b/funcweb/funcweb/identity/pamprovider.py
@@ -17,6 +17,16 @@
#
# Author(s): Luke Macken <lmacken@redhat.com>
+"""
+This module contains an Identity Provider used by TurboGears to authenticate
+users against PAM. It utilizes the pam.py module written by Chris AtLee.
+http://pypi.python.org/pypi/pam/0.1.2
+
+To utilize, simply define the following in your app.cfg:
+
+ identity.provider = 'pam'
+"""
+
import pam
import logging