classification
Title: cgi.fieldStorage doesn't grok standards env. variables
Type: enhancement Stage: test needed
Components: Library (Lib) Versions: Python 3.2
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: orsenthil Nosy List: BreamoreBoy, nimbustier, orsenthil
Priority: normal Keywords: easy

Created on 2004-02-19 09:09 by nimbustier, last changed 2010-07-11 05:53 by orsenthil.

Messages (2)
msg60464 - (view) Author: Dominique Hazaƫl-Massieux (nimbustier) Date: 2004-02-19 09:09
The cgi.FieldStorage object has a headers property,
defined as:

"headers         : header dictionary-like object; default:
    taken from environ as per CGI spec"

But the CGI Spec gives a list of well-known environment
variables, plus a generic method to read environment
variables (those starting with HTTP_), that are *not*
read and parsred in this dictionary.
http://hoohoo.ncsa.uiuc.edu/cgi/env.html

msg109855 - (view) Author: Mark Lawrence (BreamoreBoy) Date: 2010-07-10 11:41
Original link is duff try this.
http://cgi-spec.golux.com/draft-coar-cgi-v11-03.txt
History
Date User Action Args
2010-07-11 05:53:10orsenthilsetassignee: orsenthil

nosy: + orsenthil
2010-07-10 11:41:21BreamoreBoysetnosy: + BreamoreBoy

messages: + msg109855
versions: + Python 3.2, - Python 2.7
2009-04-22 17:17:51ajaksu2setkeywords: + easy
2009-02-14 11:34:34ajaksu2setstage: test needed
type: enhancement
versions: + Python 2.7, - Python 2.3
2004-02-19 09:09:24nimbustiercreate