virtualenv/web/res/README
author grandjoncl
Thu, 11 Oct 2012 16:39:05 +0200
changeset 842 ca38abd140b3
parent 22 03d02cf0bea7
permissions -rw-r--r--
Corrections of the code for the embed popup. Functions are now in the embed_popup.js With chrome the player used to play the video even when it wasn't supposed to be displayed and kept playing when we hid the player. When we changed between div and iframe the player started even when it was suppose to be hidden. It's now solved.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
22
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     1
README - Platform virtualenv lib modifications
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     2
-------------------------------------------------
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     3
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     4
1. DJANGO-PISTON 
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     5
https://bitbucket.org/jespern/django-piston/overview
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     6
------------------------------------------------------
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     7
Model name collision with python-oauth.
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     8
Described here: https://bitbucket.org/david/django-oauth/issue/3/collision-with-django-piston-on-syncdb
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
     9
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    10
Piston and Django-oauth use the same model for Tokens, and same related name to their ForeignKey User.
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    11
One of the related_name has to be modified.
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    12
See platform/virtualenv/web/res/patch/piston.diff
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    13
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    14
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    15
2. PYTHON-OAUTH2
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    16
https://github.com/simplegeo/python-oauth2
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    17
---------------------------------------------
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    18
Request paramters are not handled correctly, and sometimes appear twice in the request query_string.
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    19
Described here: https://github.com/simplegeo/python-oauth2/issues#issue/21
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    20
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    21
Modification made in get_normalized_parameters in order to avoid doubling the parameters, and making the request non-valid.
03d02cf0bea7 Added text API, test Clients and Testcases
wakimd
parents:
diff changeset
    22
See platform/virtualenv/web/res/patch/oauth2.diff