summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* gardenfeature.decodingChris McDonough2012-01-281-4/+4
|
* dont try to decode remote_userChris McDonough2012-01-281-27/+20
|
* gardenChris McDonough2012-01-281-9/+14
|
* wordingChris McDonough2012-01-281-5/+5
|
* gardenChris McDonough2012-01-281-5/+0
|
* add change notes, reduce spurious diffsChris McDonough2012-01-281-0/+47
|
* gardenChris McDonough2012-01-081-0/+3
|
* Fixa dead linkAlexis Metaireau2011-12-201-1/+1
|
* add __next__ for py3 compat; closes #10Chris McDonough2011-11-211-0/+2
|
* * Added ``request.client_addr`` API (returns IP address implied byChris McDonough2011-10-281-0/+3
| | | | HTTP_X_FORWARDED_FOR, falling back to REMOTE_ADDR).
* * Added ``request.host_port`` API (returns port number implied by HTTP_HOST,Chris McDonough2011-10-281-0/+6
| | | | falling back to SERVER_PORT).
* 1.2b21.2b2Sergey Schetinin2011-10-151-1/+1
|
* * Fix ``request.cookies.get('name', 'default')``. Previously ``default`` wasChris McDonough2011-10-151-0/+6
| | | | ignored.
* version 1.2b11.2b1Sergey Schetinin2011-10-151-1/+1
|
* add note about how to replace best_matches (hand-waving)Chris McDonough2011-10-141-1/+3
|
* gardenfeature.pylons10compatChris McDonough2011-10-131-0/+7
|
* * Mutating the ``request.cookies`` property now reflects the mutations intofeature.cookie-bug-for-bugChris McDonough2011-10-101-3/+2
| | | | the ``HTTP_COOKIES`` environ header.
* Merge branch 'master' into feature.cookie-bug-for-bugChris McDonough2011-10-071-4/+17
|\
| * * Undeprecated ``uscript_name`` and ``upath_info``.Chris McDonough2011-10-061-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 noChris McDonough2011-10-061-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 valueChris McDonough2011-10-061-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/webobChris McDonough2011-10-061-2/+4
|\
| * trying to verify docs.webob.org in google webmaster toolsSergey Schetinin2011-10-011-2/+4
| |
* | * Fix deprecation error messages for ``response.request`` andChris McDonough2011-10-061-0/+4
|/ | | | | ``response.environ`` (they previously showed ``None`` as the attribute name when displayed).
* * ``request.cookies`` property now returns an immutable dictionary;Chris McDonough2011-09-291-0/+3
| | | | attempting to modify it will result in a TypeError.
* remove Accept.best_matches(), add Accept.__iter__()Sergey Schetinin2011-09-261-1/+3
|
* update newsSergey Schetinin2011-09-261-0/+10
|
* partial doc fixesSergey Schetinin2011-09-252-84/+51
|
* version 1.2a21.2a2Sergey Schetinin2011-09-251-3/+1
|
* update NEWS.txtSergey Schetinin2011-09-251-0/+20
|
* add news item about inheriting from io.RawIOBaseSergey Schetinin2011-09-241-0/+3
|
* fix docs versionSergey Schetinin2011-09-241-2/+2
|
* update NEWS.txtSergey Schetinin2011-09-241-11/+10
|
* * The ``webob.dec.wsgify`` repr() is now much less informative, but a lotChris McDonough2011-09-221-2/+2
| | | | easier to test and maintain.
* improve from_file tests and implementationChris McDonough2011-09-221-0/+3
|
* update news.txt with relevant changesChris McDonough2011-09-222-8/+44
|
* reimplement FakeCGIBody as an io.RawIOBase subclassSergey Schetinin2011-09-181-0/+2
|
* change links from bitbucket to githubSergey Schetinin2011-09-185-15/+28
|
* news.txt correctionsSergey Schetinin2011-09-171-10/+12
|
* news.txt formattingSergey Schetinin2011-09-171-1/+1
|
* version 1.1.11.1.1Sergey Schetinin2011-09-171-1/+1
|
* update news.txtSergey Schetinin2011-09-171-0/+24
|
* * add AcceptCharset and AcceptLanguage subclasses instead of branching in ↵Sergey Schetinin2011-09-072-3/+3
| | | | | | | Accept.__init__ * that allows us to remove Accept.header_name * and change Accept.__repr__ to be more straightforward
* version 1.11.1Sergey Schetinin2011-09-072-1/+5
|
* version 1.1rc11.1rc1Sergey Schetinin2011-08-191-1/+1
|
* update news.txtSergey Schetinin2011-08-191-2/+19
|
* attempt to silence deprecation warnings during testingSergey Schetinin2011-08-181-7/+0
|
* * make Response.write much more efficient ↵Sergey Schetinin2011-08-183-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 Schetinin2011-08-092-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.1b2Sergey Schetinin2011-08-071-1/+1
|