chiark
/
gitweb
/
~mdw
/
chopwood
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
backend.py: Make FlatFileRecord._format include the trailing newline.
[chopwood]
/
cgi.py
diff --git
a/cgi.py
b/cgi.py
index 1aa2917950ad99350c143c70bf6486119eccc338..69b90386b36ae99638697643e737cc98eb8e11b6 100644
(file)
--- a/
cgi.py
+++ b/
cgi.py
@@
-123,6
+123,8
@@
class HTTPOutput (O.FileOutput):
for h in O.http_headers(content_type = content_type, **kw):
me.writeln(h)
me.writeln('')
for h in O.http_headers(content_type = content_type, **kw):
me.writeln(h)
me.writeln('')
+ if METHOD == 'HEAD':
+ HEADER_DONE()
def cookie(name, value, **kw):
"""
def cookie(name, value, **kw):
"""
@@
-318,6
+320,7
@@
PARAM = []
PARAMDICT = {}
PATH = []
SSLP = False
PARAMDICT = {}
PATH = []
SSLP = False
+HEADER_DONE = lambda: None
## Regular expressions for splitting apart query and cookie strings.
R_QSPLIT = RX.compile('[;&]')
## Regular expressions for splitting apart query and cookie strings.
R_QSPLIT = RX.compile('[;&]')
@@
-388,7
+391,7
@@
def cgiparse():
METHOD = getenv('REQUEST_METHOD')
## Acquire the query string.
METHOD = getenv('REQUEST_METHOD')
## Acquire the query string.
- if METHOD
== 'GET'
:
+ if METHOD
in ['GET', 'HEAD']
:
q = getenv('QUERY_STRING')
elif METHOD == 'POST':
q = getenv('QUERY_STRING')
elif METHOD == 'POST':
@@
-398,7
+401,8
@@
def cgiparse():
if not n.isdigit():
raise U.ExpectedError, (500, "Invalid CONTENT_LENGTH")
n = int(n, 10)
if not n.isdigit():
raise U.ExpectedError, (500, "Invalid CONTENT_LENGTH")
n = int(n, 10)
- if getenv('CONTENT_TYPE') != 'application/x-www-form-urlencoded':
+ ct = getenv('CONTENT_TYPE')
+ if ct != 'application/x-www-form-urlencoded':
raise U.ExpectedError, (500, "Unexpected content type `%s'" % ct)
q = SYS.stdin.read(n)
if len(q) != n:
raise U.ExpectedError, (500, "Unexpected content type `%s'" % ct)
q = SYS.stdin.read(n)
if len(q) != n:
@@
-415,7
+419,8
@@
def cgiparse():
else:
PARAM.append((k, v))
if k in seen:
else:
PARAM.append((k, v))
if k in seen:
- del PARAMDICT[k]
+ try: del PARAMDICT[k]
+ except KeyError: pass
else:
PARAMDICT[k] = v
seen.add(k)
else:
PARAMDICT[k] = v
seen.add(k)
@@
-449,6
+454,11
@@
class Subcommand (SC.Subcommand):
CGI parameters.
"""
CGI parameters.
"""
+ def __init__(me, name, contexts, desc, func,
+ methods = ['GET', 'POST'], *args, **kw):
+ super(Subcommand, me).__init__(name, contexts, desc, func, *args, **kw)
+ me.methods = set(methods)
+
def cgi(me, param, path):
"""
Invoke the subcommand given a collection of CGI parameters.
def cgi(me, param, path):
"""
Invoke the subcommand given a collection of CGI parameters.
@@
-465,6
+475,8
@@
class Subcommand (SC.Subcommand):
the list of path elements is non-empty.
"""
the list of path elements is non-empty.
"""
+ global HEADER_DONE
+
## We're going to make a pass over the supplied parameters, and we'll
## check them off against the formal parameters as we go; so we'll need
## to be able to look them up. We'll also keep track of the ones we've
## We're going to make a pass over the supplied parameters, and we'll
## check them off against the formal parameters as we go; so we'll need
## to be able to look them up. We'll also keep track of the ones we've
@@
-478,6
+490,12
@@
class Subcommand (SC.Subcommand):
want = {}
kw = {}
want = {}
kw = {}
+ ## Check the request method against the permitted list.
+ meth = METHOD
+ if meth == 'HEAD': meth = 'GET'
+ if meth not in me.methods:
+ raise U.ExpectedError, (500, "Unexpected request method `%s'" % METHOD)
+
def set_value(k, v):
"""Set a simple value: we shouldn't see multiple values."""
if k in kw:
def set_value(k, v):
"""Set a simple value: we shouldn't see multiple values."""
if k in kw: