This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: AUTH_TYPE and REMOTE_USER for CGIHTTPServer.py:run_cgi()
Type: Stage:
Components: Library (Lib) Versions: Python 2.2
process
Status: closed Resolution: accepted
Dependencies: Superseder:
Assigned To: Nosy List: loewis, phd
Priority: low Keywords: patch

Created on 2003-04-25 14:40 by phd, last changed 2022-04-10 16:08 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
CGIHTTPServer.py.patch phd, 2003-04-25 14:40 AUTH_TYPE and REMOTE_USER for CGIHTTPServer.py, context diff
Messages (2)
msg43479 - (view) Author: Oleg Broytman (phd) * Date: 2003-04-25 14:40
The patch adds env['AUTH_TYPE'] and env['REMOTE_USER']
for CGIHTTPServer.py:run_cgi(), if there was
Authorization header and if the header can be parsed
according to WWW-Authorization rules. REMOTE_USER
actually extracted from the header only if the header
shows it is Basic Authorization.
msg43480 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2004-08-29 16:53
Logged In: YES 
user_id=21627

Thanks for the patch. Applied as CGIHTTPServer 1.36
History
Date User Action Args
2022-04-10 16:08:19adminsetgithub: 38364
2003-04-25 14:40:47phdcreate