Lines Matching refs:POST
173 - Preserve document ordering of GET and POST request data when POST data passed
205 (``Request.blank("/", POST=dict(file1=("foo.jpg", "xxx")))``)
409 ``Request.POST`` is now just a plain ``MultiDict``.
480 before sending the entire request body (POST / PUT), ``req.POST``, ``req.body``
492 * Add support for file upload testing via ``Request.blank(POST=..)``. Patch contributed by
502 * Change ``req.decode_param_names`` default to ``True``. This means that ``.POST``, ``.GET``,
545 as unreadable and PUT and POST as readable
615 * When accessing ``req.POST`` we now avoid making the body seekable as the input stream data
630 of POST requests.
767 This ensures that all values in ``req.GET``, ``req.POST`` and ``req.params``
910 * Fix problem with ``req.POST`` causing a re-parse of the body when
912 (e.g., when using middleware that looks at ``req.POST``).
914 * Recreate the request body properly when a ``POST`` includes file
917 * When ``req.POST`` is updated, the generated body will include the
920 * Added a ``POST`` parameter to :meth:`webob.Request.blank`; when
921 given this will create a request body for the POST parameters (list
1011 * ``request.POST`` now supports PUT requests with the appropriate
1115 * Bugfix (typo) with reusing POST body.
1131 * ``request.POST`` was giving FieldStorage objects for *every*
1150 sole names ``req.GET`` and ``req.POST`` (also ``req.str_GET`` and