| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Continuing to refactor oauth1 to use Request objects internally.use_request_objects | David Gouldin | 2012-05-12 | 6 | -66/+93 |
| | | |||||
| * | Merge remote-tracking branch 'origin/master' into use_request_objects | David Gouldin | 2012-05-12 | 8 | -26/+47 |
| |\ | | | | | | | | | Conflicts: oauthlib/oauth1/rfc5849/__init__.py | ||||
| | * | v0.1.3 | Idan Gazit | 2012-05-06 | 3 | -2/+4 |
| | | | |||||
| | * | Merge pull request #36 from idangazit/features/python-rsa | Idan Gazit | 2012-05-05 | 2 | -11/+7 |
| | |\ | | | | | | | Use python-rsa instead of pycrypto | ||||
| | | * | Use python-rsa instead of pycrypto | Idan Gazit | 2012-05-06 | 2 | -11/+7 |
| | |/ | | | | | | | | | Switched because pycrypto has binary bits which require compilation, making usage of oauthlib on windows more painful than necessary. | ||||
| | * | 0.1.20.1.2 | Idan Gazit | 2012-05-03 | 1 | -1/+1 |
| | | | |||||
| | * | Add line to changelog for 0.1.1/0.1.2 | Idan Gazit | 2012-05-03 | 1 | -0/+2 |
| | | | |||||
| | * | I ARE RETARDED. Setup.py needs install_requires. | Idan Gazit | 2012-05-03 | 1 | -0/+1 |
| | | | |||||
| | * | v0.1.10.1.1 | Idan Gazit | 2012-05-03 | 1 | -1/+1 |
| | | | |||||
| | * | Add pycrypto requires to setup.py | Idan Gazit | 2012-05-03 | 1 | -0/+2 |
| | | | | | | | | | pycrypto is used for RSA signatures. | ||||
| | * | v0.1.00.1.0 | Idan Gazit | 2012-05-03 | 2 | -10/+15 |
| | | | |||||
| | * | Add tooling for pycco | Idan Gazit | 2012-05-03 | 2 | -1/+10 |
| | | | |||||
| | * | Capture OAuth1 generated signature for debug logging | Idan Gazit | 2012-05-03 | 1 | -5/+6 |
| | | | |||||
| | * | Whitelist master branch only for travis-ci | Idan Gazit | 2012-05-02 | 1 | -0/+3 |
| | | | |||||
| * | | More porting of internal metods to use Request objects. Some tests are still ↵ | David Gouldin | 2012-05-01 | 4 | -70/+58 |
| | | | | | | | | | broken. | ||||
| * | | Half implemented solution which passes around Request instances to ↵ | David Gouldin | 2012-05-01 | 4 | -27/+65 |
| |/ | | | | parameters instead of raw headers/body/params | ||||
| * | Merge branch 'master' of github.com:idangazit/oauthlib | Idan Gazit | 2012-05-02 | 1 | -41/+10 |
| |\ | |||||
| | * | Adding back 'safe' chars for escaping. | David Gouldin | 2012-05-01 | 1 | -1/+1 |
| | | | |||||
| | * | Modifying oauth1 rfc5849's utils to wrap stdlib functions in encode/decode ↵ | David Gouldin | 2012-05-01 | 1 | -42/+11 |
| | | | | | | | | | rather than reimplementing them. | ||||
| * | | 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 |
| |/ | |||||
| * | Add dstufft to AUTHORS | Idan Gazit | 2012-05-01 | 1 | -0/+1 |
| | | |||||
| * | Fix unicode leaks | Idan Gazit | 2012-05-01 | 4 | -50/+39 |
| | | | | | | | 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. | ||||
| * | Remove unused import | Idan Gazit | 2012-05-01 | 1 | -1/+0 |
| | | |||||
| * | PEP8 police raid | Idan Gazit | 2012-05-01 | 1 | -4/+1 |
| | | |||||
| * | Add unicode_params method | Idan Gazit | 2012-05-01 | 1 | -1/+15 |
| | | |||||
| * | Merge branch 'master' of github.com:idangazit/oauthlib | Idan Gazit | 2012-05-01 | 1 | -0/+7 |
| |\ | |||||
| | * | Merge pull request #27 from ib-lundgren/tox | Idan Gazit | 2012-04-30 | 1 | -0/+7 |
| | |\ | | | | | | | Use tox for testing with py26, py27 | ||||
| | | * | Toxification step 1 #25 | Ib Lundgren | 2012-04-30 | 1 | -0/+7 |
| | |/ | |||||
| * | | Refactor utility methods, improve robustness of OAuth1 Client.sign | Idan Gazit | 2012-05-01 | 6 | -167/+172 |
| |/ | | | | | | | | | * 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 travis notifications to #oauthlib on freenode IRC | Idan Gazit | 2012-04-29 | 1 | -1/+3 |
| | | |||||
| * | More string format fixes for python 2.6 | Idan Gazit | 2012-04-29 | 2 | -5/+5 |
| | | |||||
| * | Fix string formatting for py2.6, unbreak tests | Idan Gazit | 2012-04-29 | 1 | -1/+1 |
| | | |||||
| * | Merge pull request #24 from ib-lundgren/urldecode | Idan Gazit | 2012-04-29 | 2 | -0/+47 |
| |\ | | | | | Add spec-compliant urldecode | ||||
| | * | Moved import to top | Ib Lundgren | 2012-04-26 | 1 | -1/+1 |
| | | | |||||
| | * | Revert "urldecode" | Ib Lundgren | 2012-04-26 | 1 | -1/+1 |
| | | | | | | | | | This reverts commit 9c2a6dadcf54142c378677ae38d6833e397ae21b. | ||||
| | * | urldecode | Ib Lundgren | 2012-04-26 | 1 | -1/+1 |
| | | | |||||
| | * | refactor regex | Ib Lundgren | 2012-04-26 | 1 | -4/+1 |
| | | | |||||
| | * | Regex fix | Ib Lundgren | 2012-04-26 | 2 | -4/+5 |
| | | | |||||
| | * | paraphrase | Ib Lundgren | 2012-04-26 | 1 | -1/+1 |
| | | | |||||
| | * | Decode urlencoded properly | Ib Lundgren | 2012-04-26 | 2 | -0/+49 |
| |/ | |||||
| * | Merge pull request #23 from calebbrown/bugs/broken_server | Idan Gazit | 2012-04-24 | 2 | -4/+6 |
| |\ | | | | | Fix the failing server tests. | ||||
| | * | Fix the failing tests. | Caleb Brown | 2012-04-25 | 2 | -4/+6 |
| |/ | | | | | | * Order of values returned from client.sign() were changed * Call to Client.get_oauth_signature() in Server.check_request_signature() needs to take a Request() | ||||
| * | Removing an errant comma (oops). NOTE: 2 tests are currently broken: ↵ | David Gouldin | 2012-04-24 | 1 | -2/+1 |
| | | | | | tests.oauth1.rfc5849.test_server.ServerTests.test_server_callback_request & tests.oauth1.rfc5849.test_server.ServerTests.test_basic_server_request | ||||
| * | Changing signatures.construct_base_string to more closely follow the spec ↵ | David Gouldin | 2012-04-24 | 1 | -16/+29 |
| | | | | | documentation. | ||||
| * | Merge remote-tracking branch 'origin/master' | David Gouldin | 2012-04-24 | 8 | -137/+325 |
| |\ | | | | | | | | | Conflicts: oauthlib/oauth1/rfc5849/signature.py | ||||
| | * | Update testcases with valid outputs | Idan Gazit | 2012-04-24 | 1 | -2/+2 |
| | | | |||||
| | * | Prevent degenerate extraction of non-formencoded strings | Idan Gazit | 2012-04-24 | 1 | -0/+6 |
| | | | |||||
| | * | Signed requests with bodies are returned already formencoded | Idan Gazit | 2012-04-24 | 1 | -1/+1 |
| | | | |||||
| | * | Correct 'url-formencoded' to 'form-urlencoded' | Idan Gazit | 2012-04-24 | 1 | -4/+4 |
| | | | |||||
