summaryrefslogtreecommitdiff
path: root/webob/cookies.py
Commit message (Expand)AuthorAgeFilesLines
* Use RuntimeWarning instead of DeprecationWarningBert JW Regeer2015-03-221-1/+1
* Don't calculate the same result twiceBert JW Regeer2015-03-221-2/+4
* Until such a time that we can deprecate this, warnBert JW Regeer2015-03-221-1/+21
* Document cookie name requirements explicitlyBert JW Regeer2015-03-221-9/+19
* Raise ValueError if cookie value has invalid charsBert JW Regeer2015-03-221-16/+11
* Set new Base64Serializer as default on CookieProfileBert JW Regeer2015-03-221-1/+1
* Add new base64 serializerBert JW Regeer2015-03-221-1/+33
* Update comments that had false informationBert JW Regeer2015-03-221-5/+5
* fix #136, allow high order chars in SignedSerializer secret/saltfix.136Michael Merickel2014-02-211-1/+6
* moar typosMichael Merickel2013-12-191-2/+2
* typoMichael Merickel2013-12-191-1/+1
* add a test, only catch valueerror, fix changelogChris McDonough2013-12-131-4/+7
|\
| * Squash any exceptions raised in the deserializerBert JW Regeer2013-12-121-1/+1
| * Don't name the exceptionBert JW Regeer2013-12-101-1/+1
| * Squash ValueError from SignedSerializer in CookieProfileBert JW Regeer2013-12-101-1/+4
* | fix test, add noteChris McDonough2013-12-131-0/+2
* | Keep around original serializerBert JW Regeer2013-12-121-2/+3
|/
* - Older versions of Webob escaped the doublequote to ``\"`` and the backslashChris McDonough2013-12-091-2/+0
* - Cookies generated via webob.cookies quoted characters in cookie values thatChris McDonough2013-12-091-30/+61
* loads takes binary, not nativeChris McDonough2013-12-071-1/+1
* doc generation fixesChris McDonough2013-12-051-13/+6
* - Make tests pass on Python 3.Chris McDonough2013-12-051-95/+108
* Add SignedCookieProfileBert JW Regeer2013-12-021-0/+109
* Add CookieProfile classBert JW Regeer2013-12-021-0/+225
* Add SignedSerializerBert JW Regeer2013-12-021-0/+100
* Fixes PEP8 warningsZhongyue Luo2012-12-281-2/+3
* handle cookies that are not quoted but still contain escaped charactersSergey Schetinin2012-02-101-11/+13
* * Fix ``request.cookies.get('name', 'default')``. Previously ``default`` wasChris McDonough2011-10-151-1/+1
* * Mutating the ``request.cookies`` property now reflects the mutations intofeature.cookie-bug-for-bugChris McDonough2011-10-101-0/+134
* unused importChris McDonough2011-09-291-1/+0
* Merge branch 'sergey-1.2-py2-only' into 1.2-mergeSergey Schetinin2011-09-251-21/+30
|\
| * refactor Cookie.loadSergey Schetinin2011-09-201-18/+20
| * change req.cookies implementation to parse on demandSergey Schetinin2011-09-201-1/+15
| * cherrypick some low-impact changes from chrism-py3 branchSergey Schetinin2011-09-191-15/+16
* | binary_type -> bytesSergey Schetinin2011-09-251-2/+1
* | make all cookie morsel values bytesSergey Schetinin2011-09-241-6/+6
* | work on test coverageSergey Schetinin2011-09-241-2/+2
* | make cookies module all-bytes internallySergey Schetinin2011-09-241-35/+51
* | cookie serialization result is always asciiSergey Schetinin2011-09-231-1/+1
* | cookies: remove the need for _notrans_unicodeSergey Schetinin2011-09-231-7/+4
* | fix tests on windows; improve GET parsing; simpler cookie escapingSergey Schetinin2011-09-231-10/+7
* | use paren-importsChris McDonough2011-09-221-7/+12
* | sort imports and more direct importsChris McDonough2011-09-221-5/+5
* | fix dec and cookies tests for 3.2Chris McDonough2011-09-201-2/+2
* | atrocious straddling codeChris McDonough2011-09-201-17/+22
* | try to make cookies work on both python 2 and python 3Chris McDonough2011-09-171-24/+24
* | work towards creating and using 'compat' module and removing syntax errors wh...Chris McDonough2011-09-151-15/+18
|/
* make req.copy_body() not trust content-length as much + testsSergey Schetinin2011-08-041-2/+1
* make Response().body_file settable. usage: Response(body_file=open('foo.bin')...Sergey Schetinin2011-07-201-1/+1
* cookies: handle unicode names better (preparing for py3 compat)Sergey Schetinin2011-07-111-10/+17