| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Continuing to refactor oauth1 to use Request objects internally.use_request_objects | David Gouldin | 2012-05-12 | 1 | -2/+5 |
| | | |||||
| * | More porting of internal metods to use Request objects. Some tests are still ↵ | David Gouldin | 2012-05-01 | 1 | -1/+7 |
| | | | | | broken. | ||||
| * | Half implemented solution which passes around Request instances to ↵ | David Gouldin | 2012-05-01 | 1 | -0/+7 |
| | | | | | parameters instead of raw headers/body/params | ||||
| * | 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 |
