3
|
1 |
README - Platform virtualenv lib modifications
|
|
2 |
-------------------------------------------------
|
|
3 |
|
|
4 |
1. DJANGO-PISTON
|
|
5 |
https://bitbucket.org/jespern/django-piston/overview
|
|
6 |
------------------------------------------------------
|
|
7 |
Model name collision with python-oauth.
|
|
8 |
Described here: https://bitbucket.org/david/django-oauth/issue/3/collision-with-django-piston-on-syncdb
|
|
9 |
|
|
10 |
Piston and Django-oauth use the same model for Tokens, and same related name to their ForeignKey User.
|
|
11 |
One of the related_name has to be modified.
|
|
12 |
See platform/virtualenv/web/res/patch/piston.diff
|
|
13 |
|
|
14 |
|
|
15 |
2. PYTHON-OAUTH2
|
|
16 |
https://github.com/simplegeo/python-oauth2
|
|
17 |
---------------------------------------------
|
|
18 |
Request paramters are not handled correctly, and sometimes appear twice in the request query_string.
|
|
19 |
Described here: https://github.com/simplegeo/python-oauth2/issues#issue/21
|
|
20 |
|
|
21 |
Modification made in get_normalized_parameters in order to avoid doubling the parameters, and making the request non-valid.
|
|
22 |
See platform/virtualenv/web/res/patch/oauth2.diff |