Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: joestump/python-oauth2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: vkris/python-oauth2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 12 commits
  • 8 files changed
  • 7 contributors

Commits on Apr 27, 2011

  1. Encode parse_qs input in utf-8 so we make sure the output will be utf…

    …-8 too and we don't end up mixing utf-8 characters (from %xx translation) into a non utf-8 sequence.
    Guillaume Duhamel authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    71dc57b View commit details
    Browse the repository at this point in the history
  2. Modified _split_url_string to handle multiple instances of the same p…

    …arameter. This is useful for APIs such as the LinkedIn search API using multiple instances of the "facet" parameter. Also updated get_normalized_parameters to handle the new datatype returned by _split_url_string (list of tuples instead of dict). It doesn't break from_request but it doesn't make it possible to use multiple instance of the sameparameters in from_request. (as they are stored in a dict in that function)
    Guillaume Duhamel authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    a532ed9 View commit details
    Browse the repository at this point in the history
  3. Upgraded examples from oauth to oauth2.

    jace authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    a1e47ed View commit details
    Browse the repository at this point in the history
  4. Fixes #61 by moving the module import above where oauth2 is imported

    bassdread authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    c69428c View commit details
    Browse the repository at this point in the history
  5. Added a parameters keyword argument to the Client method request() so…

    … that the oauth_callback parameter can easily be added to the initial token request as required by OAuth 1.0a. This also let django-piston 0.3 work correctly with python-oauth2 sample clients.
    jskitz authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    82f8b8d View commit details
    Browse the repository at this point in the history
  6. Protected the parameters input in Client.request() to default to a de…

    …ctionary. Before, any object could be passed in and could bork the update() if is_form_encoded and body exists.
    jskitz authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    2f07d97 View commit details
    Browse the repository at this point in the history
  7. Fixed the unit tests so that all tests now pass.

    jskitz authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    3b8e267 View commit details
    Browse the repository at this point in the history
  8. Added an extra reconstruction of the Client to the end of the three-l…

    …egged auth example.
    
    This is required to actually use the client to do anything useful, so we may as well include it in the example.
    samkaufman authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    9e87d28 View commit details
    Browse the repository at this point in the history
  9. Adding zyegfryed's de-duplicating patch a8d89c5

    Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    01c5b43 View commit details
    Browse the repository at this point in the history
  10. bumping changelog

    Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    e396719 View commit details
    Browse the repository at this point in the history
  11. Updated test to generate real duplicates.

    zyegfryed authored and Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    3a9c346 View commit details
    Browse the repository at this point in the history
  12. had a problem with patch a532ed9 failing coverage tests, so I backed …

    …it out
    Anthony Awtrey committed Apr 27, 2011
    Configuration menu
    Copy the full SHA
    563435c View commit details
    Browse the repository at this point in the history
Loading