Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-23 | made RequestLogWSGIFilter define attrs in __init__ | Helmut Grohne | |
2009-03-29 | improve digest module (killed isnonce method) | Helmut Grohne | |
Prior to this change the digest module would check whether a nonce looks like a nonce, verify the response and then verify the nonce. This left a bit more room for brute forcing passwords, as the same nonce could be used in arbitrary many tries and a stale response would indicate an authentication success. Now authentication is only tried for valid nonces. This also makes the NonceStoreBase.isnonce method superfluous. | |||
2009-03-29 | get rid of old builtin long | Helmut Grohne | |
Even Py2.4 can handle large parameters to int, so long is not needed. | |||
2009-03-29 | quite some changes for py3 | Helmut Grohne | |
These changes introduce some compatibility code. They don't make wsgitools usable with Python 3.0, but they also don't break compatibility with Python 2.5. | |||
2009-03-29 | make digest.gen_rand_str forward compatible (py3) | Helmut Grohne | |
2009-02-27 | except binascii.Error instead of Exception in middlewares | Helmut Grohne | |
2009-02-27 | extract common code to gen_rand_str in digest | Helmut Grohne | |
2009-02-27 | added more doctests for digest module | Helmut Grohne | |
2009-02-27 | fixed bug in digest.MemoryNonceStore.checknonce | Helmut Grohne | |
2009-02-26 | made scgi.forkpool wsgi compliant in handling exc_info | Helmut Grohne | |
2009-02-01 | wsgi compliance: scgi.asynchronous no longer holds data | Helmut Grohne | |
2009-02-01 | added config parameter (for environ) to scgi.forkpool | Helmut Grohne | |
2009-02-01 | added config parameter (for environ) to scgi.asynchronous | Helmut Grohne | |
2009-01-31 | GzipWSGIFilter removes Content-length header if compressing | Helmut Grohne | |
2009-01-31 | StaticFile uses wsgi.file_wrapper from environ if possible | Helmut Grohne | |
2008-10-14 | added some kind of main documentation | Helmut Grohne | |
2008-10-14 | update docstring: DigestAuth now partly works with forkpool | Helmut Grohne | |
2008-10-14 | small digest cleanup | Helmut Grohne | |
2008-10-14 | extended digest.NonceStoreBase interface | Helmut Grohne | |
The methods now take an optional last parameter called ident. It can be used to bind nonces to specific uses within one NonceStore. | |||
2008-10-14 | added epydoc markup to doc strings | Helmut Grohne | |
2008-09-24 | RequestLogWSGIFilter can also log QUERY_STRING | Helmut Grohne | |
2008-09-22 | improve comments | Helmut Grohne | |
2008-09-22 | make limits in scgi.asynchronous configurable | Helmut Grohne | |
2008-09-22 | added applications.StaticFile | Helmut Grohne | |
2008-09-22 | applications.StaticContent: fail on bad request | Helmut Grohne | |
2008-09-22 | improve digest.NonceStoreBase.checknonce interface | Helmut Grohne | |
2008-09-22 | added a description to scgi.forkpool | Helmut Grohne | |
2008-09-22 | added MANIFEST.in (for setup.py) and updated copyright | Helmut Grohne | |
2008-09-21 | digest: create a generic nonce storage interface | Helmut Grohne | |
2008-09-20 | added some examples/doctests for digest.parse_digest_response | Helmut Grohne | |
2008-09-20 | epydoc syntax fixes in wsgitools.filters | Helmut Grohne | |
2008-09-19 | added ReusableWSGIInputFilter | Helmut Grohne | |
2008-09-10 | change BasicAuthMiddleware again | Helmut Grohne | |
2008-09-09 | made error page for BasicAuthMiddleware configurable | Helmut Grohne | |
2008-09-09 | update BasicAuthMiddleware docs to reflect api change | Helmut Grohne | |
2008-07-12 | fix some comments and epydocify them | Helmut Grohne | |
2008-07-12 | refactor middlewares.NoWriteCallableMiddleware | Helmut Grohne | |
2008-07-12 | optimize adapter to not mangle data when unnecessary | Helmut Grohne | |
2008-07-12 | fix adapters (returned wrong value) | Helmut Grohne | |
2008-07-09 | added some module docstrings | Helmut Grohne | |
2008-07-09 | speed up receiving data in forkpool | Helmut Grohne | |
2008-07-09 | check for whether environ contains CONTENT_LENGTH | Helmut Grohne | |
2008-07-08 | epydoc syntax fixes in scgi.forkpool | Helmut Grohne | |
2008-07-08 | environ["wsgi.input"].read fixed in scgi.forkpool | Helmut Grohne | |
2008-07-08 | add environ param to check_function in middlewares.BasicAuthMiddleware | Helmut Grohne | |
The check_function passed to the BasicAuthMiddleware constructur will now receive a third parameter environ to check against additional things. If the function does not take a third parameter the function will be called in the old manner thus maintaining backwards compatibility. | |||
2008-07-08 | refactor scgi.forkpool socket handling | Helmut Grohne | |
2008-04-27 | clarified usage of EncodeWSGIFilter | Helmut Grohne | |
2008-04-27 | added flush parameter to GzipWSGIFilter | Helmut Grohne | |
2008-03-29 | fix middleware start_reponse to accept only two parameters | Helmut Grohne | |
2008-03-28 | fixed non-fatal bugs | Helmut Grohne | |