summaryrefslogtreecommitdiff
path: root/webob
Commit message (Expand)AuthorAgeFilesLines
* * Mutating the ``request.cookies`` property now reflects the mutations intofeature.cookie-bug-for-bugChris McDonough2011-10-102-11/+142
* Merge branch 'master' into feature.cookie-bug-for-bugChris McDonough2011-10-081-4/+11
|\
| * typoChris McDonough2011-10-081-1/+1
| * improve deprecation warningsChris McDonough2011-10-081-4/+11
* | Merge branch 'master' into feature.cookie-bug-for-bugChris McDonough2011-10-072-20/+9
|\ \ | |/
| * * Undeprecated ``uscript_name`` and ``upath_info``.Chris McDonough2011-10-061-14/+7
| * * ``Response.request`` and ``Response.environ`` attrs are undeprecated and noChris McDonough2011-10-061-6/+2
| * get docstring descriptions right for cookies and paramsChris McDonough2011-10-061-2/+3
* | * Mutating the ``request.cookies`` property now retains the mutated valueChris McDonough2011-10-062-16/+11
|/
* Merge branch 'master' of github.com:Pylons/webobChris McDonough2011-10-062-3/+6
|\
| * fix str(Response()) w/o charset, but only on py2Sergey Schetinin2011-10-021-2/+1
| * add req.json_body (adapted from Pyramid)Sergey Schetinin2011-09-301-1/+5
* | * Fix deprecation error messages for ``response.request`` andChris McDonough2011-10-061-2/+2
|/
* forgot the TypeError messageSergey Schetinin2011-09-301-1/+1
* merge all methods overridden in ImmutableDict into oneSergey Schetinin2011-09-301-23/+6
* * ``request.cookies`` property now returns an immutable dictionary;Chris McDonough2011-09-292-2/+30
* unused importChris McDonough2011-09-291-1/+0
* remove Accept.best_matches(), add Accept.__iter__()Sergey Schetinin2011-09-261-31/+11
* change content-range parsing to regexpSergey Schetinin2011-09-261-34/+10
* tidy up testsSergey Schetinin2011-09-261-4/+0
* refactor Range to only handle a single rangeSergey Schetinin2011-09-262-94/+42
* allow resp.etag = (tag, False) for setting weak etagsSergey Schetinin2011-09-251-6/+10
* version 1.2a21.2a2Sergey Schetinin2011-09-251-1/+1
* test coverage back at 100%Sergey Schetinin2011-09-251-2/+2
* test coverage; transcode fixes; remove multidict_from_bodyfileSergey Schetinin2011-09-254-67/+27
* Merge branch 'sergey-1.2-py2-only' into 1.2-mergeSergey Schetinin2011-09-257-381/+403
|\
| * use except Exception as exc syntaxsergey-1.2-py2-onlySergey Schetinin2011-09-242-3/+3
| * merge transcode into requestSergey Schetinin2011-09-222-91/+72
| * improve webob.transcodeSergey Schetinin2011-09-221-47/+60
| * make 304 response generation a bit more tidySergey Schetinin2011-09-221-4/+4
| * improve req.charset handlingSergey Schetinin2011-09-221-31/+47
| * enable weak matching for if-none-matchSergey Schetinin2011-09-212-3/+3
| * much stricter parsing for if-none-match, if-range and if-match headersSergey Schetinin2011-09-212-31/+13
| * remove internal weak/strong differentiation in ETagMatcher, filter weak out b...Sergey Schetinin2011-09-211-31/+18
| * change IfRange api to `resp in req.if_range`Sergey Schetinin2011-09-212-16/+8
| * better support for weak response etagSergey Schetinin2011-09-213-14/+30
| * set request body as seekable after transcodingSergey Schetinin2011-09-201-0/+1
| * GetDict.tracker -> on_changeSergey Schetinin2011-09-202-21/+17
| * remove todo that is no longer relevantSergey Schetinin2011-09-201-1/+0
| * hardcode utf-8 into FakeCGIBody and MultiDict.form_fieldstorageSergey Schetinin2011-09-202-9/+7
| * mark Response.unicode_errors for deprecationSergey Schetinin2011-09-201-1/+1
| * hardcode Request.charset to 'UTF-8'Sergey Schetinin2011-09-203-78/+40
| * remove debug prints in trasncodeSergey Schetinin2011-09-201-2/+0
| * add webob.transcodeSergey Schetinin2011-09-202-15/+96
| * refactor Cookie.loadSergey Schetinin2011-09-201-18/+20
| * change req.cookies implementation to parse on demandSergey Schetinin2011-09-202-16/+18
| * drop UnicodeMultiDict; change TrackableMultiDict -> GetDictSergey Schetinin2011-09-202-215/+63
| * req.script_name and .path_info contain unicode nowSergey Schetinin2011-09-203-35/+42
| * don't special-case ETagMatcher.parse('*')Sergey Schetinin2011-09-201-2/+2
| * refactor IfRangeSergey Schetinin2011-09-203-72/+45