summaryrefslogtreecommitdiff
path: root/oauthlib
Commit message (Expand)AuthorAgeFilesLines
* Continuing to refactor oauth1 to use Request objects internally.use_request_objectsDavid Gouldin2012-05-124-45/+68
* Merge remote-tracking branch 'origin/master' into use_request_objectsDavid Gouldin2012-05-122-13/+10
|\
| * Use python-rsa instead of pycryptoIdan Gazit2012-05-061-9/+5
| * Capture OAuth1 generated signature for debug loggingIdan Gazit2012-05-031-5/+6
* | More porting of internal metods to use Request objects. Some tests are still ...David Gouldin2012-05-013-56/+43
* | Half implemented solution which passes around Request instances to parameters...David Gouldin2012-05-014-27/+65
|/
* Merge branch 'master' of github.com:idangazit/oauthlibIdan Gazit2012-05-021-41/+10
|\
| * Adding back 'safe' chars for escaping.David Gouldin2012-05-011-1/+1
| * Modifying oauth1 rfc5849's utils to wrap stdlib functions in encode/decode ra...David Gouldin2012-05-011-42/+11
* | Decode query to unicode in urldecodeIdan Gazit2012-05-011-0/+1
* | Remove dead codeIdan Gazit2012-05-011-5/+0
|/
* Fix unicode leaksIdan Gazit2012-05-013-49/+38
* Add unicode_params methodIdan Gazit2012-05-011-1/+15
* Refactor utility methods, improve robustness of OAuth1 Client.signIdan Gazit2012-05-013-117/+135
* More string format fixes for python 2.6Idan Gazit2012-04-292-5/+5
* Fix string formatting for py2.6, unbreak testsIdan Gazit2012-04-291-1/+1
* Moved import to topIb Lundgren2012-04-261-1/+1
* Revert "urldecode"Ib Lundgren2012-04-261-1/+1
* urldecodeIb Lundgren2012-04-261-1/+1
* refactor regexIb Lundgren2012-04-261-4/+1
* Regex fixIb Lundgren2012-04-261-1/+1
* paraphraseIb Lundgren2012-04-261-1/+1
* Decode urlencoded properlyIb Lundgren2012-04-261-0/+32
* Fix the failing tests.Caleb Brown2012-04-251-2/+4
* Removing an errant comma (oops). NOTE: 2 tests are currently broken: tests.oa...David Gouldin2012-04-241-2/+1
* Changing signatures.construct_base_string to more closely follow the spec doc...David Gouldin2012-04-241-16/+29
* Merge remote-tracking branch 'origin/master'David Gouldin2012-04-245-121/+225
|\
| * Prevent degenerate extraction of non-formencoded stringsIdan Gazit2012-04-241-0/+6
| * Signed requests with bodies are returned already formencodedIdan Gazit2012-04-241-1/+1
| * Correct 'url-formencoded' to 'form-urlencoded'Idan Gazit2012-04-241-4/+4
| * Add debug loggingIdan Gazit2012-04-241-0/+8
| * Render request before collecting parametersIdan Gazit2012-04-241-3/+7
| * Allow rendering of body signatures without supplied body paramsIdan Gazit2012-04-241-3/+3
| * Disable strict parsing when extracting parameters.Idan Gazit2012-04-231-1/+4
| * Document that collect_parameters expects headers as a dictIdan Gazit2012-04-231-0/+2
| * PEP8, whitespace cleanup. Unused code/imports removal.Idan Gazit2012-04-234-12/+8
| * Merge branch 'master' into features/request_objectIdan Gazit2012-04-233-46/+133
| |\
| * | Updated Client internals using RequestIdan Gazit2012-04-231-49/+78
| * | Make method signatures in parameters.py consistentIdan Gazit2012-04-231-54/+32
| * | Use extract_params to normalize behavior in signature.pyIdan Gazit2012-04-232-11/+9
| * | Add Request representationIdan Gazit2012-04-231-0/+81
* | | Improving in-line documentation of oauth1 rfc5849 signatures (section 3.4) fo...David Gouldin2012-04-241-37/+339
| |/ |/|
* | Removing now-unneeded utf8_str.David Gouldin2012-04-201-8/+0
* | Normalizing as much as possible to unicode, pulling in non-unicode functions ...David Gouldin2012-04-204-33/+129
* | Add comment indicating why we need "safe='~'" in the call to urllib.quote.Caleb Brown2012-04-191-0/+2
* | Revert "Make prepare_headers return non-unicode strings."Caleb Brown2012-04-191-4/+4
* | Revert "Add support to OAuth1 for including body in the base string based on"Caleb Brown2012-04-191-13/+9
* | Allow empty secrets when generating the OAuth1 HMAC SHA1 Signature.Caleb Brown2012-04-191-2/+3
* | Add support to OAuth1 for including body in the base string based onCaleb Brown2012-04-181-9/+13
* | Make sure the OAuth1 client doens't drop headers when signing requests.Caleb Brown2012-04-181-1/+1