From b1d40b0f27a027072efd6f58db15b96de1af41dd Mon Sep 17 00:00:00 2001 From: Alexander Kryklia Date: Mon, 2 Sep 2013 16:12:48 +0300 Subject: [PATCH] updated docs --- common/lib/xmodule/xmodule/lti_module.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/common/lib/xmodule/xmodule/lti_module.py b/common/lib/xmodule/xmodule/lti_module.py index 274f8e9519..101efe2553 100644 --- a/common/lib/xmodule/xmodule/lti_module.py +++ b/common/lib/xmodule/xmodule/lti_module.py @@ -1,7 +1,11 @@ """ Module that allows to insert LTI tools to page. + Module uses current 0.14.2 version of requests (oauth part). Please update code when upgrading requests. + +Protocol is oauth1, LTI version is 1.1.1: +http://www.imsglobal.org/LTI/v1p1p1/ltiIMGv1p1p1.html """ import logging @@ -42,7 +46,7 @@ class LTIModule(LTIFields, XModule): def get_html(self): """ Renders parameters to template. """ - + import ipdb; ipdb.set_trace() # these params do not participate in oauth signing params = { 'launch_url': self.launch_url,