| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Remove deprecated str_ and others | Bert JW Regeer | 2016-01-28 | 1 | -24/+1 |
| | | |||||
| * | Improved test coverage for MIMEAccept wildcard matching | Lucas Taylor | 2015-03-23 | 1 | -10/+6 |
| | | |||||
| * | Allow wildcards to be used when comparing a MIMEAccept against an offer | Lucas Taylor | 2015-03-23 | 1 | -10/+56 |
| | | | | | | | - Use list comprehension instead of map for minor performance gain in ``MIMEAccept.parse`` - Fixes #155 | ||||
| * | Ignore invalid mime wildcards in MIMEAccept | Ryan Kelly | 2012-11-09 | 1 | -0/+4 |
| | | |||||
| * | Fix case-sensitive behaviour in MIMEAccept and AcceptCharset. | Lorenzo M. Catucci | 2012-06-06 | 1 | -7/+8 |
| | | | | | | RFC 2616 requires case-insensitive matching for media ranges and character sets. | ||||
| * | Add actual fix. | Graham Higgins | 2012-05-12 | 1 | -1/+2 |
| | | |||||
| * | Fix NilAccept.best_match() so an empty "offers" + default_match picks default | Christopher Allan Webber | 2011-10-18 | 1 | -1/+1 |
| | | | | | | | | Prior to this, NilAccept.best_match([], default_match="default") threw: UnboundLocalError: local variable 'best_offer' referenced before assignment Also added a relevant test. | ||||
| * | remove Accept.best_matches(), add Accept.__iter__() | Sergey Schetinin | 2011-09-26 | 1 | -31/+11 |
| | | |||||
| * | work on test coverage | Sergey Schetinin | 2011-09-24 | 1 | -1/+1 |
| | | |||||
| * | remove unreachable code in first_match | Sergey Schetinin | 2011-09-24 | 1 | -10/+0 |
| | | |||||
| * | use paren-imports | Chris McDonough | 2011-09-22 | 1 | -2/+4 |
| | | |||||
| * | sort imports and more direct imports | Chris McDonough | 2011-09-22 | 1 | -1/+3 |
| | | |||||
| * | use a 'normal' MultiDict for both GET and POST instead of a ↵ | Chris McDonough | 2011-09-16 | 1 | -0/+2 |
| | | | | | UnicodeMultiDict; try to beat down some more test failures. | ||||
| * | make sure that `'en' in AcceptLanguage('en-gb')` and `'en_GB' in ↵ | Sergey Schetinin | 2011-09-08 | 1 | -2/+5 |
| | | | | | AcceptLanguage('en-gb')` | ||||
| * | * add AcceptCharset and AcceptLanguage subclasses instead of branching in ↵ | Sergey Schetinin | 2011-09-07 | 1 | -61/+54 |
| | | | | | | | | Accept.__init__ * that allows us to remove Accept.header_name * and change Accept.__repr__ to be more straightforward | ||||
| * | Fixed AssertionError raised by MimeAccept best_macth function when | zyegfryed | 2011-09-07 | 1 | -0/+1 |
| | | | | | using wildcard Accept header. | ||||
| * | * add warn_deprecation(...) mechanism that centralizes the deprecation ↵ | Sergey Schetinin | 2011-07-08 | 1 | -9/+3 |
| | | | | | | | | warnings / exceptions based on current WebOb version * deprecated_property is only used to throw exception now, simplify accordingly * remove check for cls.charset, cls.default_charset in BaseRequest.__init__ (they were deprecated long enough, for us to allow subclasses to use them as they wish) | ||||
| * | * move html_escape to webob.util (still exported from webob) | Sergey Schetinin | 2011-07-07 | 1 | -5/+2 |
| | | | | | * kill rfc_reference, add header_docstring | ||||
| * | fix docs, adjust tests for docstrings | Sergey Schetinin | 2011-07-07 | 1 | -4/+6 |
| | | |||||
| * | make accept.quality(..) return best quality, not first match | Sergey Schetinin | 2011-06-30 | 1 | -5/+4 |
| | | |||||
| * | add deprecation warning for accept.first_match(..) - use .best_match(..) instead | Sergey Schetinin | 2011-06-30 | 1 | -3/+16 |
| | | |||||
| * | * fix accept matching for types that UA assigned zero-quality (see ↵ | Sergey Schetinin | 2011-04-10 | 1 | -31/+39 |
| | | | | | | | https://bitbucket.org/ianb/webob/issue/10 ) * check offers to be specific more consistently (in all matchers) | ||||
| * | webob requires python 2.4+ since 418:5621426aecc0, drop compat modules and ↵ | Sergey Schetinin | 2010-10-01 | 1 | -1/+1 |
| | | | | | use decorators where appropriate | ||||
| * | * move and rename descriptors._rfc_reference -> util.rfc_reference | Sergey Schetinin | 2010-08-11 | 1 | -1/+28 |
| | | | | | | * move accept_property to acceptparse * move etag_property to etag | ||||
| * | accept-language: | Sergey Schetinin | 2010-08-11 | 1 | -3/+10 |
| | | | | | | * add prefix matching http://trac.pythonpaste.org/pythonpaste/ticket/393 * best_match(fallback) should add fallback as it was passed, not how it was specified in the request | ||||
| * | accept-charset: add default iso-8859-1 quality ↵ | Sergey Schetinin | 2010-08-11 | 1 | -0/+7 |
| | | | | | http://trac.pythonpaste.org/pythonpaste/ticket/394 | ||||
| * | * merge headersdict and datastruct modules into new module webob.headers | Sergey Schetinin | 2010-08-11 | 1 | -4/+1 |
| | | | | | | | | * rename HeadersDict to ResponseHeaders * merge updatedict module into cachecontrol * merge webob.util.reversed and webob.compat modules into webob.util.__init__ * make DictMixin, reversed and sorted importable directly from webob.util | ||||
| * | corrections to changeset:8075 | Sergey Schetinin | 2009-10-18 | 1 | -49/+36 |
| | | |||||
| * | * make accept.best_match smarter (prefers more specific matches) (kinda ↵ | Sergey Schetinin | 2009-10-18 | 1 | -29/+52 |
| | | | | | | | | fixes ticket:348) * Accept._match was completely broken, fixed * best_match() argument may not contain non-specific types | ||||
| * | webob: make sure bool(Request.blank('/').accept) is False (Ticket #385) | Sergey Schetinin | 2009-10-15 | 1 | -3/+7 |
| | | |||||
| * | update docstring | Ian Bicking | 2009-06-08 | 1 | -1/+3 |
| | | |||||
| * | Prefer types earlier in the list with req.accept.best_match(types) | Ian Bicking | 2009-06-04 | 1 | -1/+1 |
| | | |||||
| * | more familliar repr ids | Philip Jenvey | 2008-11-28 | 1 | -1/+1 |
| | | |||||
| * | added in sorted for python2.3 compatibility, from Bryan O'Sullivan | Ian Bicking | 2008-05-05 | 1 | -0/+4 |
| | | |||||
| * | Make req.accept_encoding be really empty, unlike before | Ian Bicking | 2007-08-16 | 1 | -0/+5 |
| | | |||||
| * | docstring updates | Ian Bicking | 2007-08-16 | 1 | -0/+20 |
| | | |||||
| * | Add request.accept.accept_html(); add an option to get exc_info from ↵ | Ian Bicking | 2007-08-10 | 1 | -0/+9 |
| | | | | | call_application | ||||
| * | rename | Ian Bicking | 2007-08-08 | 1 | -0/+259 |
