| Commit message (Expand) | Author | Age | Files | Lines |
| * | dont try to decode remote_user | Chris McDonough | 2012-01-28 | 1 | -3/+1 |
| * | give up on trying to encode header values when request.headers is used | Chris McDonough | 2012-01-28 | 2 | -11/+14 |
| * | more spurious diff removal | Chris McDonough | 2012-01-28 | 1 | -8/+8 |
| * | add change notes, reduce spurious diffs | Chris McDonough | 2012-01-28 | 1 | -30/+28 |
| * | set deprecated properties on BaseRequest rather than LegacyRequest, use envir... | Chris McDonough | 2012-01-28 | 2 | -13/+16 |
| * | bytesrequest renamed to legacyrequest... it no longer eagerly converts to byt... | Chris McDonough | 2012-01-28 | 3 | -132/+87 |
| * | test textrequest and bytesrequest independently | Chris McDonough | 2012-01-28 | 2 | -11/+12 |
| * | use latin-1 as the default decoder/encoder | Chris McDonough | 2012-01-26 | 1 | -2/+2 |
| * | use environ[REQUEST_METHOD] rather than req.method in case we decide to leave... | Chris McDonough | 2012-01-26 | 1 | -5/+6 |
| * | make upath_property take into account url encoding | Chris McDonough | 2012-01-26 | 1 | -5/+9 |
| * | get rid of useless literals | Chris McDonough | 2012-01-26 | 1 | -13/+5 |
| * | make charset a native string, make _content_type_raw an environ getter rather... | Chris McDonough | 2012-01-26 | 1 | -13/+11 |
| * | turn remote_user_encoding and url_encoding into environ_getters (adding webob... | Chris McDonough | 2012-01-26 | 2 | -15/+19 |
| * | fix EnvironHeaders class to do encoding and decoding properly | Chris McDonough | 2012-01-26 | 2 | -14/+11 |
| * | unused imports, long line | Chris McDonough | 2012-01-26 | 3 | -5/+2 |
| * | remove missing NoIfRange from __all__ | Chris McDonough | 2012-01-26 | 1 | -2/+1 |
| * | make bytesrequest work on python 3 | Chris McDonough | 2012-01-26 | 1 | -58/+98 |
| * | move environ_decoder descriptor next to environ_getter | Chris McDonough | 2012-01-25 | 1 | -28/+31 |
| * | First cut at distinct TextRequest/BytesRequest implementations as a | Chris McDonough | 2012-01-25 | 2 | -87/+179 |
| * | fix status_int/status bug on py3 (use explicit floor division), add coverage | Chris McDonough | 2012-01-08 | 1 | -2/+2 |
| * | add warning to docstring of client_addr (closes #20) | Chris McDonough | 2012-01-06 | 1 | -0/+10 |
| * | __all__ definition duplicate removed | Piotr HusiatyĆski | 2012-01-01 | 1 | -2/+0 |
| * | fix https://github.com/Pylons/webob/issues/18 (non-ascii form POST, then pars... | Sergey Schetinin | 2011-12-26 | 2 | -5/+9 |
| * | Improving compliance with RFC2616 re HTTP status codes - now an application can | Michael Stella | 2011-12-06 | 2 | -3/+19 |
| * | * Added ``request.client_addr`` API (returns IP address implied by | Chris McDonough | 2011-10-28 | 1 | -0/+20 |
| * | * Added ``request.host_port`` API (returns port number implied by HTTP_HOST, | Chris McDonough | 2011-10-28 | 1 | -0/+27 |
| * | Fix NilAccept.best_match() so an empty "offers" + default_match picks default | Christopher Allan Webber | 2011-10-18 | 1 | -1/+1 |
| * | 1.2b21.2b2 | Sergey Schetinin | 2011-10-15 | 1 | -1/+1 |
| * | * Fix ``request.cookies.get('name', 'default')``. Previously ``default`` was | Chris McDonough | 2011-10-15 | 1 | -1/+1 |
| * | version 1.2b11.2b1 | Sergey Schetinin | 2011-10-15 | 1 | -1/+1 |
| * | gardenfeature.pylons10compat | Chris McDonough | 2011-10-13 | 1 | -1/+4 |
| * | be less aggressive about feature removal for benefit of pylons 1.X | Chris McDonough | 2011-10-13 | 2 | -13/+30 |
| * | * Mutating the ``request.cookies`` property now reflects the mutations intofeature.cookie-bug-for-bug | Chris McDonough | 2011-10-10 | 2 | -11/+142 |
| * | Merge branch 'master' into feature.cookie-bug-for-bug | Chris McDonough | 2011-10-08 | 1 | -4/+11 |
| |\ |
|
| | * | typo | Chris McDonough | 2011-10-08 | 1 | -1/+1 |
| | * | improve deprecation warnings | Chris McDonough | 2011-10-08 | 1 | -4/+11 |
| * | | Merge branch 'master' into feature.cookie-bug-for-bug | Chris McDonough | 2011-10-07 | 2 | -20/+9 |
| |\ \
| |/ |
|
| | * | * Undeprecated ``uscript_name`` and ``upath_info``. | Chris McDonough | 2011-10-06 | 1 | -14/+7 |
| | * | * ``Response.request`` and ``Response.environ`` attrs are undeprecated and no | Chris McDonough | 2011-10-06 | 1 | -6/+2 |
| | * | get docstring descriptions right for cookies and params | Chris McDonough | 2011-10-06 | 1 | -2/+3 |
| * | | * Mutating the ``request.cookies`` property now retains the mutated value | Chris McDonough | 2011-10-06 | 2 | -16/+11 |
| |/ |
|
| * | Merge branch 'master' of github.com:Pylons/webob | Chris McDonough | 2011-10-06 | 2 | -3/+6 |
| |\ |
|
| | * | fix str(Response()) w/o charset, but only on py2 | Sergey Schetinin | 2011-10-02 | 1 | -2/+1 |
| | * | add req.json_body (adapted from Pyramid) | Sergey Schetinin | 2011-09-30 | 1 | -1/+5 |
| * | | * Fix deprecation error messages for ``response.request`` and | Chris McDonough | 2011-10-06 | 1 | -2/+2 |
| |/ |
|
| * | forgot the TypeError message | Sergey Schetinin | 2011-09-30 | 1 | -1/+1 |
| * | merge all methods overridden in ImmutableDict into one | Sergey Schetinin | 2011-09-30 | 1 | -23/+6 |
| * | * ``request.cookies`` property now returns an immutable dictionary; | Chris McDonough | 2011-09-29 | 2 | -2/+30 |
| * | unused import | Chris McDonough | 2011-09-29 | 1 | -1/+0 |
| * | remove Accept.best_matches(), add Accept.__iter__() | Sergey Schetinin | 2011-09-26 | 1 | -31/+11 |