Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Added generate_client_id function to common | Wiliam Souza | 2013-02-27 | 1 | -0/+13 | |
| | | ||||||
* | | On the difference between 2 & 3 parse_qsl | Ib Lundgren | 2013-03-26 | 1 | -0/+14 | |
| | | ||||||
* | | Unicode experimentation, #127 | Ib Lundgren | 2013-03-25 | 1 | -1/+1 | |
| | | ||||||
* | | Duplicate parameter checks & tests. | Ib Lundgren | 2013-03-25 | 1 | -0/+11 | |
| | | ||||||
* | | Fix decode,encode mixup. | Ib Lundgren | 2013-03-02 | 1 | -2/+3 | |
|/ | ||||||
* | Request now use a CaseInsensitiveDict. Fix #121. | Ib Lundgren | 2013-02-21 | 1 | -1/+31 | |
| | ||||||
* | Revert default urlencoding | Ib Lundgren | 2013-02-05 | 1 | -1/+1 | |
| | ||||||
* | Automatic urlencoding of input (#96). | Ib Lundgren | 2013-01-29 | 1 | -2/+2 | |
| | ||||||
* | Large OAuth 2 provider update. | Ib Lundgren | 2013-01-22 | 1 | -4/+3 | |
| | ||||||
* | Experimental default unicode conversion (#53, #68, #86) | Ib Lundgren | 2013-01-07 | 1 | -20/+35 | |
| | ||||||
* | A batch of small fixes and cleanups. | Ib Lundgren | 2012-11-23 | 1 | -0/+8 | |
| | ||||||
* | Unicode decoding crash'n'burn style, default off, #53, #68. | Ib Lundgren | 2012-11-19 | 1 | -1/+17 | |
| | ||||||
* | Add params to fragment | Ib Lundgren | 2012-11-17 | 1 | -2/+6 | |
| | ||||||
* | fix some byte/unicode arguments for Python 2.6's benefit | Michael Terry | 2012-09-03 | 1 | -3/+5 | |
| | ||||||
* | Support Python 3 | Michael Terry | 2012-08-31 | 1 | -34/+64 | |
| | | | | | | These are mostly unicode string related changes and a few syntax ones. https://github.com/idan/oauthlib/issues/55 | |||||
* | add_params_to_qs now support dict queries | Ib Lundgren | 2012-06-29 | 1 | -3/+6 | |
| | ||||||
* | Safe string equals | Ib Lundgren | 2012-06-25 | 1 | -0/+16 | |
| | ||||||
* | Move shared functionality (#30) | Ib Lundgren | 2012-06-13 | 1 | -0/+58 | |
| | ||||||
* | Decode query to unicode in urldecode | Idan Gazit | 2012-05-01 | 1 | -0/+1 | |
| | | | | For completeness' sake. | |||||
* | Remove dead code | Idan Gazit | 2012-05-01 | 1 | -5/+0 | |
| | ||||||
* | Fix unicode leaks | Idan Gazit | 2012-05-01 | 1 | -45/+36 | |
| | | | | | | Wrap stdlib quote, unquote, urlencode in versions that protect the internal usage of unicode. All data going out is encoded as UTF-8, and the results are read back in and decoded from UTF-8. | |||||
* | Add unicode_params method | Idan Gazit | 2012-05-01 | 1 | -1/+15 | |
| | ||||||
* | Refactor utility methods, improve robustness of OAuth1 Client.sign | Idan Gazit | 2012-05-01 | 1 | -27/+91 | |
| | | | | | | | | | * 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 | |||||
* | Prevent degenerate extraction of non-formencoded strings | Idan Gazit | 2012-04-24 | 1 | -0/+6 | |
| | ||||||
* | Disable strict parsing when extracting parameters. | Idan Gazit | 2012-04-23 | 1 | -1/+4 | |
| | | | | | | | Strict parsing chokes on strings where keys don't always have values. The problem is that disabling strict parsing means "foo bar baz" doesn't raise valueerror, it simply ends up as a sole parameter with no value, defeating checks for non-formencoded bodies. | |||||
* | Add Request representation | Idan Gazit | 2012-04-23 | 1 | -0/+81 | |