index
:
delta/python-packages/webob.git
1.1-branch
1.4-branch
1.5-branch
1.6-branch
1.7-branch
1.8-branch
bugfix/Response_app_iter
bugfix/cgi_FieldStorage
bugfix/exc_json_response
bugfix/exc_performance
bugfix/modify_post
bugfix/nonbytes-samesite
bugfix/set_cookie_datetime
cleanup/remove_fakecgibody
cleanup/testing
docs/cleanup
feature.cookie-bug-for-bug
feature.decoding
feature.make-cookie
feature.pathinfogeddon
feature.pylons10compat
feature/Accept.best_client_match
feature/default_body_encoding
fix-linkcheck
fix.136
fix.cookie_handling
fix.wsgify-middleware-docs
fix/bodies_on_everything
fix/charset_handling
fixup/PATH_SAFE
ianb-decorator-experiment
immutable-cache-control
main
master
ng
perf/response
pr/203
sergey-1.2-py2-only
stevepiercy-patch-1
tests.pycon2011
tests.pycon2011-runup
webob-ng
github.com: Pylons/webob.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
webob
/
request.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
* always return readable file from req.body_file
Sergey Schetinin
2011-03-25
1
-0
/
+3
*
add PendingDeprecationWarning for setting req.body_file to a string value
Sergey Schetinin
2011-03-25
1
-6
/
+16
*
remove deprecated `environ_getter` arg of Request constructor
Sergey Schetinin
2011-03-25
1
-6
/
+2
*
Add req.is_body_readable / env['webob.is_body_readable'] flag and only read w...
Sergey Schetinin
2011-03-22
1
-1
/
+15
*
use env['wsgi.input'].read() instead of .read(-1), because the former is spec...
Sergey Schetinin
2011-03-22
1
-5
/
+6
*
remove dead code from req.str_cookies [from pycon2011 sprint]
Sergey Schetinin
2011-03-22
1
-4
/
+1
*
remove unnecessary guards and 'fixme' comments from request.AdhocAttrMixin [f...
Sergey Schetinin
2011-03-22
1
-6
/
+2
*
wrap lines to mostly conform to PEP-8, add pragma comments where necessary, s...
Sergey Schetinin
2011-03-22
1
-41
/
+79
*
restore python 2.4 compatibility
Sergey Schetinin
2011-03-14
1
-2
/
+4
*
update docstrings
Sergey Schetinin
2011-03-12
1
-2
/
+7
*
* add Request.from_string
Sergey Schetinin
2011-03-12
1
-8
/
+14
*
- correct Request.as_string to use CRLF
Jon Nelson
2011-03-12
1
-7
/
+20
*
* revert body_file semantics to 1.0.1 and earlier
Sergey Schetinin
2011-03-10
1
-6
/
+16
*
revert the change that was making accesses to body_file seek the stream. side...
Sergey Schetinin
2011-03-10
1
-4
/
+4
*
* avoid making body seekable when accessing req.POST (the input stream is pre...
Sergey Schetinin
2011-03-10
1
-2
/
+6
*
make sure Request.get_response(app) seeks input body to start, if possible
Sergey Schetinin
2011-03-10
1
-0
/
+2
*
Make sure that req.url and related properties do not unnecessarily escape ":"...
Daniel Nouri
2011-03-07
1
-3
/
+7
*
the cgi bug from r563 (474607292508) was in fact a Chrome and _encode_multipa...
Sergey Schetinin
2011-02-22
1
-3
/
+3
*
refactor req.str_POST a bit
Sergey Schetinin
2011-02-20
1
-13
/
+5
*
document the fact that req.body_file seeks the input stream
Sergey Schetinin
2011-02-20
1
-3
/
+3
*
* refactor from_file implementations a bit
Sergey Schetinin
2011-02-20
1
-24
/
+14
*
Add a lot of tests.
Sergey Schetinin
2011-02-20
1
-4
/
+0
*
fix setting request body to FakeCGIBody to work with the updated body_file lo...
Sergey Schetinin
2011-02-19
1
-8
/
+4
*
refactor req.copy_get()
Sergey Schetinin
2011-02-19
1
-6
/
+1
*
* instead of detecting if env['wsgi.input'].seek works, assume it does not un...
Sergey Schetinin
2011-02-19
1
-43
/
+37
*
only issue a env['wsgi.input'].read(-1) when CONTENT_LENGTH is missing or ''
Sergey Schetinin
2011-02-17
1
-1
/
+1
*
handle the case when environ is missing the SCRIPT_NAME key ( http://trac.pyt...
Sergey Schetinin
2011-02-16
1
-1
/
+1
*
make sure req.copy() leaves the original with seekable body
Sergey Schetinin
2011-02-13
1
-0
/
+1
*
add Request.make_tempfile method
Sergey Schetinin
2011-02-13
1
-3
/
+10
*
never do .read() w/o an argument on wsgi.input
Sergey Schetinin
2011-02-06
1
-1
/
+1
*
* refactor req.body to use .make_body_seekable() instead of duplicating the code
Sergey Schetinin
2011-02-03
1
-59
/
+48
*
change `req.body_file = fileobj` so that the CONTENT_LENGTH is removed, not s...
Sergey Schetinin
2011-02-02
1
-3
/
+2
*
* add req.as_string() alias to __str__
Sergey Schetinin
2011-01-29
1
-3
/
+17
*
fix del req.body, del rel.cache_control
Sergey Schetinin
2011-01-17
1
-4
/
+2
*
use io.BytesIO for wsgi.input on py2.7+
Sergey Schetinin
2010-12-06
1
-1
/
+4
*
use more decorators in request.py
Sergey Schetinin
2010-10-19
1
-26
/
+23
*
fix: setting environ_getter attr to None should remove the key from environ (...
Sergey Schetinin
2010-10-06
1
-2
/
+4
*
rename Cookie -> cookies
Sergey Schetinin
2010-10-01
1
-1
/
+1
*
* move serialize_cookie_date to Cookie
Sergey Schetinin
2010-10-01
1
-3
/
+0
*
more cookie refactoring
Sergey Schetinin
2010-10-01
1
-3
/
+2
*
merge util.cookie into webob.Cookie
Sergey Schetinin
2010-10-01
1
-2
/
+2
*
webob requires python 2.4+ since 418:5621426aecc0, drop compat modules and us...
Sergey Schetinin
2010-10-01
1
-6
/
+2
*
make req.cache_control as a view (http://trac.pythonpaste.org/pythonpaste/tic...
Sergey Schetinin
2010-08-11
1
-6
/
+7
*
separate converter_date from date_header, so it can be used for request heade...
Sergey Schetinin
2010-08-11
1
-12
/
+3
*
* move and rename descriptors._rfc_reference -> util.rfc_reference
Sergey Schetinin
2010-08-11
1
-1
/
+2
*
* rewrite UnicodePathProperty as upath_property
Sergey Schetinin
2010-08-11
1
-4
/
+4
*
* give converter(..) the same treatment as environ_getter and header_getter
Sergey Schetinin
2010-08-11
1
-26
/
+9
*
turn header_getter descriptors into builtin properties as well
Sergey Schetinin
2010-08-11
1
-17
/
+17
*
replace environ_getter with a faster and more compact implementation. attrs l...
Sergey Schetinin
2010-08-11
1
-19
/
+19
*
style tweaks
Sergey Schetinin
2010-08-11
1
-5
/
+3
[next]