| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | gardenfeature.decoding | Chris McDonough | 2012-01-28 | 1 | -4/+4 |
| | | |||||
| * | dont try to decode remote_user | Chris McDonough | 2012-01-28 | 1 | -27/+20 |
| | | |||||
| * | garden | Chris McDonough | 2012-01-28 | 1 | -9/+14 |
| | | |||||
| * | wording | Chris McDonough | 2012-01-28 | 1 | -5/+5 |
| | | |||||
| * | garden | Chris McDonough | 2012-01-28 | 1 | -5/+0 |
| | | |||||
| * | add change notes, reduce spurious diffs | Chris McDonough | 2012-01-28 | 1 | -0/+47 |
| | | |||||
| * | garden | Chris McDonough | 2012-01-08 | 1 | -0/+3 |
| | | |||||
| * | Fixa dead link | Alexis Metaireau | 2011-12-20 | 1 | -1/+1 |
| | | |||||
| * | add __next__ for py3 compat; closes #10 | Chris McDonough | 2011-11-21 | 1 | -0/+2 |
| | | |||||
| * | * Added ``request.client_addr`` API (returns IP address implied by | Chris McDonough | 2011-10-28 | 1 | -0/+3 |
| | | | | | HTTP_X_FORWARDED_FOR, falling back to REMOTE_ADDR). | ||||
| * | * Added ``request.host_port`` API (returns port number implied by HTTP_HOST, | Chris McDonough | 2011-10-28 | 1 | -0/+6 |
| | | | | | falling back to SERVER_PORT). | ||||
| * | 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 | -0/+6 |
| | | | | | ignored. | ||||
| * | version 1.2b11.2b1 | Sergey Schetinin | 2011-10-15 | 1 | -1/+1 |
| | | |||||
| * | add note about how to replace best_matches (hand-waving) | Chris McDonough | 2011-10-14 | 1 | -1/+3 |
| | | |||||
| * | gardenfeature.pylons10compat | Chris McDonough | 2011-10-13 | 1 | -0/+7 |
| | | |||||
| * | * Mutating the ``request.cookies`` property now reflects the mutations intofeature.cookie-bug-for-bug | Chris McDonough | 2011-10-10 | 1 | -3/+2 |
| | | | | | the ``HTTP_COOKIES`` environ header. | ||||
| * | Merge branch 'master' into feature.cookie-bug-for-bug | Chris McDonough | 2011-10-07 | 1 | -4/+17 |
| |\ | |||||
| | * | * Undeprecated ``uscript_name`` and ``upath_info``. | Chris McDonough | 2011-10-06 | 1 | -0/+7 |
| | | | | | | | | | | | | | | | * For backwards compatibility purposes, switch ``req.script_name`` and ``path_info`` back again to contain "raw" undecoded native strings rather than text. Use ``uscript_name`` and ``upath_info`` to get the text version of SCRIPT_NAME and PATH_INFO. | ||||
| | * | * ``Response.request`` and ``Response.environ`` attrs are undeprecated and no | Chris McDonough | 2011-10-06 | 1 | -4/+10 |
| | | | | | | | | | | | | | | | | | | | | | | | | | longer raise exceptions when used. These can also be passed to the Response constructor. This is to support codebases that pass them to the constructor or assign them to a response instance. However, some behavior differences from 1.1 exist. In particular, synchronization is no longer done between environ and request attribute properties of Response; you may pass either to the constructor (or both) or assign one or the other or both, but they wont be managed specially and will remain the same over the lifetime of the response just as you passed them. Default values for both ``request`` and ``environ`` on any given response are ``None`` now. | ||||
| * | | * Mutating the ``request.cookies`` property now retains the mutated value | Chris McDonough | 2011-10-06 | 1 | -2/+3 |
| |/ | | | | | during the course of a single request (bug-for-bug compatibility with previous versions; in-the-wild codebases depend upon this behavior). | ||||
| * | Merge branch 'master' of github.com:Pylons/webob | Chris McDonough | 2011-10-06 | 1 | -2/+4 |
| |\ | |||||
| | * | trying to verify docs.webob.org in google webmaster tools | Sergey Schetinin | 2011-10-01 | 1 | -2/+4 |
| | | | |||||
| * | | * Fix deprecation error messages for ``response.request`` and | Chris McDonough | 2011-10-06 | 1 | -0/+4 |
| |/ | | | | | ``response.environ`` (they previously showed ``None`` as the attribute name when displayed). | ||||
| * | * ``request.cookies`` property now returns an immutable dictionary; | Chris McDonough | 2011-09-29 | 1 | -0/+3 |
| | | | | | attempting to modify it will result in a TypeError. | ||||
| * | remove Accept.best_matches(), add Accept.__iter__() | Sergey Schetinin | 2011-09-26 | 1 | -1/+3 |
| | | |||||
| * | update news | Sergey Schetinin | 2011-09-26 | 1 | -0/+10 |
| | | |||||
| * | partial doc fixes | Sergey Schetinin | 2011-09-25 | 2 | -84/+51 |
| | | |||||
| * | version 1.2a21.2a2 | Sergey Schetinin | 2011-09-25 | 1 | -3/+1 |
| | | |||||
| * | update NEWS.txt | Sergey Schetinin | 2011-09-25 | 1 | -0/+20 |
| | | |||||
| * | add news item about inheriting from io.RawIOBase | Sergey Schetinin | 2011-09-24 | 1 | -0/+3 |
| | | |||||
| * | fix docs version | Sergey Schetinin | 2011-09-24 | 1 | -2/+2 |
| | | |||||
| * | update NEWS.txt | Sergey Schetinin | 2011-09-24 | 1 | -11/+10 |
| | | |||||
| * | * The ``webob.dec.wsgify`` repr() is now much less informative, but a lot | Chris McDonough | 2011-09-22 | 1 | -2/+2 |
| | | | | | easier to test and maintain. | ||||
| * | improve from_file tests and implementation | Chris McDonough | 2011-09-22 | 1 | -0/+3 |
| | | |||||
| * | update news.txt with relevant changes | Chris McDonough | 2011-09-22 | 2 | -8/+44 |
| | | |||||
| * | reimplement FakeCGIBody as an io.RawIOBase subclass | Sergey Schetinin | 2011-09-18 | 1 | -0/+2 |
| | | |||||
| * | change links from bitbucket to github | Sergey Schetinin | 2011-09-18 | 5 | -15/+28 |
| | | |||||
| * | news.txt corrections | Sergey Schetinin | 2011-09-17 | 1 | -10/+12 |
| | | |||||
| * | news.txt formatting | Sergey Schetinin | 2011-09-17 | 1 | -1/+1 |
| | | |||||
| * | version 1.1.11.1.1 | Sergey Schetinin | 2011-09-17 | 1 | -1/+1 |
| | | |||||
| * | update news.txt | Sergey Schetinin | 2011-09-17 | 1 | -0/+24 |
| | | |||||
| * | * add AcceptCharset and AcceptLanguage subclasses instead of branching in ↵ | Sergey Schetinin | 2011-09-07 | 2 | -3/+3 |
| | | | | | | | | Accept.__init__ * that allows us to remove Accept.header_name * and change Accept.__repr__ to be more straightforward | ||||
| * | version 1.11.1 | Sergey Schetinin | 2011-09-07 | 2 | -1/+5 |
| | | |||||
| * | version 1.1rc11.1rc1 | Sergey Schetinin | 2011-08-19 | 1 | -1/+1 |
| | | |||||
| * | update news.txt | Sergey Schetinin | 2011-08-19 | 1 | -2/+19 |
| | | |||||
| * | attempt to silence deprecation warnings during testing | Sergey Schetinin | 2011-08-18 | 1 | -7/+0 |
| | | |||||
| * | * make Response.write much more efficient ↵ | Sergey Schetinin | 2011-08-18 | 3 | -5/+3 |
| | | | | | | | | | | (https://bitbucket.org/ianb/webob/issue/18) * make sure copying responses does not reset content_length or content_md5 of the original (and that of future copies) * remove Response._body so the _app_iter is the only representation * merge ResponseBodyFile.write and Response.write | ||||
| * | * change del res.body semantics so that it doesn't make the response invalid, | Sergey Schetinin | 2011-08-09 | 2 | -5/+5 |
| | | | | | | | but only removes the response body * deprecate response.ubody / unicode_body in favour of new .text attribute (the old names will be removed in 1.3 or even later) | ||||
| * | version 1.1b21.1b2 | Sergey Schetinin | 2011-08-07 | 1 | -1/+1 |
| | | |||||
