My favorites | Sign in
Google
                
Changes to /trunk/src/gdata/oauth/CHANGES.txt
r0 vs. r569   Edit
  Compare: vs.   Format:
Revision r569
Go to: 
Project members, sign in to write a code review
/trunk/src/gdata/oauth/CHANGES.txt /trunk/src/gdata/oauth/CHANGES.txt   r569
Properties
 svn:executable
   1 *
  
Contents
  1 1. Moved oauth.py to __init__.py
  2
  3 2. Refactored __init__.py for compatibility with python 2.2 (Issue 59)
  4
  5 3. Refactored rsa.py for compatibility with python 2.2 (Issue 59)
  6
  7 4. Refactored OAuthRequest.from_token_and_callback since the callback url was
  8 getting double url-encoding the callback url in place of single. (Issue 43)
  9
  10 5. Added build_signature_base_string method to rsa.py since it used the
  11 implementation of this method from oauth.OAuthSignatureMethod_HMAC_SHA1 which
  12 was incorrect since it enforced the presence of a consumer secret and a token
  13 secret. Also, changed its super class from oauth.OAuthSignatureMethod_HMAC_SHA1
  14 to oauth.OAuthSignatureMethod (Issue 64)
  15
  16 6. Refactored <OAuthRequest>.to_header method since it returned non-oauth params
  17 as well which was incorrect. (Issue 31)