Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove unnecessary workaround for bytes type | Jon Dufresne | 2018-09-14 | 1 | -9/+4 |
| | | | | | | | The type 'bytes' is available on all supported Pythons. Likewise the byte literal b'...' is available on all supported Pythons. Use idiomatic Python and remove workaround for an issue that no longer exists. Makes the code more forward compatible with Python 3. | ||||
* | Remove headers from request attributes | Jonathan Huot | 2018-08-18 | 1 | -0/+5 |
| | |||||
* | $ and ' are allowed to be unencoded in query strings (#564) | Chris Utz | 2018-08-12 | 1 | -0/+2 |
| | |||||
* | Sorted imports. | Omer Katz | 2017-09-17 | 1 | -12/+6 |
| | |||||
* | Update proxy keys on CaseInsensitiveDict.update() | Kevin Vance | 2017-02-23 | 1 | -0/+5 |
| | |||||
* | Merge pull request #417 from bjmc/sanitize-logging | Omer Katz | 2016-04-28 | 1 | -0/+22 |
|\ | | | | | Improves sanitizing sensitive data from Request.__repr__ | ||||
| * | Tests for new sanitization | Brendan McCollam | 2016-04-25 | 1 | -0/+22 |
| | | |||||
* | | Tests for `/` and `?` characters in query. | eofs | 2016-03-11 | 1 | -1/+2 |
| | | |||||
* | | Add unit test for urldecode | Julien Meyer | 2015-08-18 | 1 | -0/+1 |
|/ | |||||
* | Add tests when Request body has password | Hsiaoming Yang | 2015-07-02 | 1 | -0/+9 |
| | |||||
* | #340 - raise AttributeError from common.Request.__getattr__+ add tests | Kyle | 2015-05-09 | 1 | -0/+14 |
| | |||||
* | Allow unescaped @ in urlencoded parameters | Ryan Hiebert | 2014-08-24 | 1 | -0/+1 |
| | | | | | | | | At least Internet Explorer does not url encode the @ symbol, such as when in an email address, in it's form uploading from HTML. Since the @ symbol doesn't have any special meaning in the querystring of a URL, not encoding it shouldn't present any problems. Thus, we should add @ to the list of allowed characters in form urlencoded data. | ||||
* | Refactor common tests into subject area tests. | Ib Lundgren | 2013-09-13 | 1 | -58/+93 |
| | |||||
* | Add star to the set of safe characters in urls | Mathieu Alorent | 2013-07-24 | 1 | -0/+1 |
| | |||||
* | add comma to the set of safe characters in urls | Massimiliano | 2013-07-09 | 1 | -0/+1 |
| | |||||
* | Added generate_client_id function to common | Wiliam Souza | 2013-02-27 | 1 | -0/+11 |
| | |||||
* | Request now use a CaseInsensitiveDict. Fix #121. | Ib Lundgren | 2013-02-21 | 1 | -0/+11 |
| | |||||
* | Revert default urlencoding | Ib Lundgren | 2013-02-05 | 1 | -4/+4 |
| | |||||
* | Automatic urlencoding of input (#96). | Ib Lundgren | 2013-01-29 | 1 | -5/+5 |
| | |||||
* | Experimental default unicode conversion (#53, #68, #86) | Ib Lundgren | 2013-01-07 | 1 | -2/+1 |
| | |||||
* | Unicode decoding crash'n'burn style, default off, #53, #68. | Ib Lundgren | 2012-11-19 | 1 | -0/+17 |
| | |||||
* | Fix issue #62 | Ib Lundgren | 2012-11-08 | 1 | -15/+15 |
| | |||||
* | Support Python 3 | Michael Terry | 2012-08-31 | 1 | -20/+20 |
| | | | | | | These are mostly unicode string related changes and a few syntax ones. https://github.com/idan/oauthlib/issues/55 | ||||
* | Move shared functionality (#30) | Ib Lundgren | 2012-06-13 | 1 | -0/+25 |
| | |||||
* | Refactor utility methods, improve robustness of OAuth1 Client.sign | Idan Gazit | 2012-05-01 | 1 | -17/+25 |
| | | | | | | | | | * Move quote, unquote, urldecode to oauthlib.common * Use urldecode for extract_params * Simplify request logic: store body and decoded_body instead of body_has_params * Document steps in Client.sign * Properly validate requests in Client.sign | ||||
* | Add Request representation | Idan Gazit | 2012-04-23 | 1 | -0/+74 |