summaryrefslogtreecommitdiff
path: root/paste/auth/basic.py
Commit message (Collapse)AuthorAgeFilesLines
* convert old-style classes to new-style classespjenvey2007-01-051-2/+2
|
* A big commit, primarily aesthetic/whitespace in nature. This is the result ↵ianb2006-10-201-2/+2
| | | | of running pylint over the codebase. Some minor/hard-to-reach typos were also picked up.
* Patch from Brad Clements to add Paste Deploy support for paste.auth methodsianb2006-06-301-0/+19
|
* This updates the paste.auth.* modules to includecce2006-02-241-5/+5
| | | | | | | | | | | | | | | | | | | | | | environ in the authentication callback functions. - auth.basic was modified to have a callback of authfunc(environ, username, password) - auth.digest was modified in a similar manner, authfunc(environ, realm, password) - auth.digest's digest_password also had it's arguments reversed to be consistent with the corresponding authfunc(); if you're going to break -- let's fix two things at once! - auth.form has a change similar to auth.basic These changes were suggested via Matthew Scott on the paste mailing list; only that I put the environ first to be consistent with other WSGI functions.
* moving httpserver from util sub-package up a levelcce2006-01-091-1/+1
|
* - fixed logic/definition problem /w multi-entry headers;cce2006-01-011-10/+11
| | | | | | | | | | | | | | __call__ now always returns a string value - renamed resolve to values in HTTPHeader to better reflect the public-interface for this (esp for multi-entry headers) - a few bugs in mult-entry headers - added common CGI headers to httpheaders; I know they don't really belong here, but error checking is nice - updated auth.digest and auth.basic to use httpheaders (this is what prompted the above changes) - added WWW_AUTHENTICATe header which will build a response to a digest challenge - fixed capitalization error in fileapp and added corresponding test
* - upgraded docs for paste.auth.digest and paste.auth.multicce2005-12-311-6/+5
|
* - cleaned up documentation for paste.auth.cookiecce2005-12-311-28/+64
| | | | | | | | - cleaned up documentation for paste.auth.form - cleaned up documentation for paste.auth.basic - converted InternalServerError into its own class (httpexceptions) - converted BadRequest into its own class (httpexceptions) - a few minor cleanups
* migrating tests to use util.httpserver rather than util.baseservercce2005-12-141-1/+1
|
* Merged changes from cce branch (r3727:HEAD/4008); the branch is now in sync ↵ianb2005-12-131-0/+67
with trunk