summaryrefslogtreecommitdiff
path: root/webob/descriptors.py
Commit message (Expand)AuthorAgeFilesLines
* Fix optional and bad whitespace parsing in auth-paramlieryan2014-09-221-1/+1
* Fixes PEP8 warningsZhongyue Luo2012-12-281-1/+0
* set deprecated properties on BaseRequest rather than LegacyRequest, use envir...Chris McDonough2012-01-281-1/+0
* bytesrequest renamed to legacyrequest... it no longer eagerly converts to byt...Chris McDonough2012-01-281-5/+1
* make upath_property take into account url encodingChris McDonough2012-01-261-5/+9
* unused imports, long lineChris McDonough2012-01-261-1/+2
* move environ_decoder descriptor next to environ_getterChris McDonough2012-01-251-28/+31
* First cut at distinct TextRequest/BytesRequest implementations as aChris McDonough2012-01-251-0/+28
* refactor Range to only handle a single rangeSergey Schetinin2011-09-261-10/+6
* allow resp.etag = (tag, False) for setting weak etagsSergey Schetinin2011-09-251-6/+10
* Merge branch 'sergey-1.2-py2-only' into 1.2-mergeSergey Schetinin2011-09-251-22/+24
|\
| * much stricter parsing for if-none-match, if-range and if-match headersSergey Schetinin2011-09-211-2/+1
| * better support for weak response etagSergey Schetinin2011-09-211-9/+21
| * hardcode Request.charset to 'UTF-8'Sergey Schetinin2011-09-201-2/+2
| * req.script_name and .path_info contain unicode nowSergey Schetinin2011-09-201-28/+25
| * refactor IfRangeSergey Schetinin2011-09-201-7/+1
* | binary_type -> bytesSergey Schetinin2011-09-251-2/+1
* | remove text_to_wsgiSergey Schetinin2011-09-251-3/+2
* | specialize upath_property by py versionSergey Schetinin2011-09-251-6/+13
* | work on test coverageSergey Schetinin2011-09-241-1/+1
* | mirror some deprecation changes from sergey-1.2-py2-only branchSergey Schetinin2011-09-241-29/+30
* | use paren-importsChris McDonough2011-09-221-13/+28
* | sort imports and more direct importsChris McDonough2011-09-221-10/+10
* | line lengthChris McDonough2011-09-211-2/+3
* | no need for two separate functions for upath_propertyChris McDonough2011-09-211-18/+7
* | 100% coverage for descriptors and multidictChris McDonough2011-09-211-1/+1
* | trim compat down to only necessary components; more direct imports; 100% test...Chris McDonough2011-09-211-2/+2
* | unbreak on py2Chris McDonough2011-09-201-1/+1
* | fix descriptor tests for 3.2Chris McDonough2011-09-201-4/+3
* | make all test_request tests pass under py 3.2Chris McDonough2011-09-201-6/+18
* | use a 'normal' MultiDict for both GET and POST instead of a UnicodeMultiDict;...Chris McDonough2011-09-161-5/+9
* | made all response tests pass except cookie-related onesChris McDonough2011-09-161-2/+3
* | work on items/keys/values, better conversions, syntax errorsChris McDonough2011-09-151-8/+6
* | work towards creating and using 'compat' module and removing syntax errors wh...Chris McDonough2011-09-151-11/+13
|/
* * add warn_deprecation(...) mechanism that centralizes the deprecation warnin...Sergey Schetinin2011-07-081-20/+5
* * move html_escape to webob.util (still exported from webob)Sergey Schetinin2011-07-071-12/+3
* fix docs, adjust tests for docstringsSergey Schetinin2011-07-071-5/+14
* make resp.etag None for weak etagsSergey Schetinin2011-06-301-2/+2
* wrap lines to mostly conform to PEP-8, add pragma comments where necessary, s...Sergey Schetinin2011-03-221-3/+4
* handle the case when environ is missing the SCRIPT_NAME key ( http://trac.pyt...Sergey Schetinin2011-02-161-1/+1
* make req.upath_info and req.uscript_name settableSergey Schetinin2011-01-271-1/+3
* fix: setting environ_getter attr to None should remove the key from environ (...Sergey Schetinin2010-10-061-4/+9
* separate converter_date from date_header, so it can be used for request heade...Sergey Schetinin2010-08-111-2/+4
* make list_headers values tuples, so that they are immutableSergey Schetinin2010-08-111-16/+19
* * add list_header, date_header descriptorsSergey Schetinin2010-08-111-12/+7
* * move and rename descriptors._rfc_reference -> util.rfc_referenceSergey Schetinin2010-08-111-61/+4
* drop webob.headers.normalize_header, just use .lower()Sergey Schetinin2010-08-111-4/+4
* no reason for uscript_name and upath_info to be settableSergey Schetinin2010-08-111-7/+1
* * simpler accept_property implementationSergey Schetinin2010-08-111-32/+25
* * rewrite UnicodePathProperty as upath_propertySergey Schetinin2010-08-111-50/+37