diff options
author | Helmut Grohne <helmut@subdivi.de> | 2011-11-30 20:28:22 +0100 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2011-11-30 20:28:22 +0100 |
commit | 2c607a3b8e0584fa20ce38095c9158f623501cee (patch) | |
tree | 70ec95635fd1ec208c6961f669ce45fed112c302 /wsgitools/authentication.py | |
parent | 5b5e52f8d09674eb628cdf0770b9b9b101ca862e (diff) | |
download | wsgitools-2c607a3b8e0584fa20ce38095c9158f623501cee.tar.gz |
documentation update
* added a number of internal links (L{...})
* some fixes
* some additions
Diffstat (limited to 'wsgitools/authentication.py')
-rw-r--r-- | wsgitools/authentication.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wsgitools/authentication.py b/wsgitools/authentication.py index 0c69f95..6f5d07b 100644 --- a/wsgitools/authentication.py +++ b/wsgitools/authentication.py @@ -82,7 +82,7 @@ class AuthenticationMiddleware: """Generates a WWW-Authenticate header. Subclasses must implement this method. - @type exception: AuthenticationRequired + @type exception: L{AuthenticationRequired} @param exception: reason for generating the header @rtype: (str, str) @returns: the header as (part_before_colon, part_after_colon) @@ -93,7 +93,7 @@ class AuthenticationMiddleware: """Generate an error page after failed authentication. Apart from the exception parameter, this method behaves like a WSGI application. - @type exception: AuthenticationRequired + @type exception: L{AuthenticationRequired} @param exception: reason for the authentication failure """ status = "401 Authorization required" |