diff -r 2cf127d4f5fd -r b4bcabf55e77 wsgi/request.py --- a/wsgi/request.py Fri Jun 14 16:13:24 2013 +0200 +++ b/wsgi/request.py Fri Jun 14 16:26:25 2013 +0200 @@ -38,13 +38,14 @@ class CubicWebWsgiRequest(CubicWebRequestBase): - """most of this code COMES FROM DJANO + """most of this code COMES FROM DJANGO """ def __init__(self, environ, vreg): self.environ = environ self.path = environ['PATH_INFO'] self.method = environ['REQUEST_METHOD'].upper() + self.content = environ['wsgi.input'] headers_in = dict((normalize_header(k[5:]), v) for k, v in self.environ.items() if k.startswith('HTTP_'))