MDL-44616 behat: Adding steps to test MDLQA-1709 and MDLQA-62
[moodle.git] / mod / lti / basiclti.js
blob9fb6cece11e2f072031c29e2191f806fa78b6532
1 // This file is part of Moodle - http://moodle.org/
2 //
3 // Moodle is free software: you can redistribute it and/or modify
4 // it under the terms of the GNU General Public License as published by
5 // the Free Software Foundation, either version 3 of the License, or
6 // (at your option) any later version.
7 //
8 // Moodle is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 // GNU General Public License for more details.
13 // You should have received a copy of the GNU General Public License
14 // along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16 // This file is part of BasicLTI4Moodle
18 // BasicLTI4Moodle is an IMS BasicLTI (Basic Learning Tools for Interoperability)
19 // consumer for Moodle 1.9 and Moodle 2.0. BasicLTI is a IMS Standard that allows web
20 // based learning tools to be easily integrated in LMS as native ones. The IMS BasicLTI
21 // specification is part of the IMS standard Common Cartridge 1.1 Sakai and other main LMS
22 // are already supporting or going to support BasicLTI. This project Implements the consumer
23 // for Moodle. Moodle is a Free Open source Learning Management System by Martin Dougiamas.
24 // BasicLTI4Moodle is a project iniciated and leaded by Ludo(Marc Alier) and Jordi Piguillem
25 // at the GESSI research group at UPC.
26 // SimpleLTI consumer for Moodle is an implementation of the early specification of LTI
27 // by Charles Severance (Dr Chuck) htp://dr-chuck.com , developed by Jordi Piguillem in a
28 // Google Summer of Code 2008 project co-mentored by Charles Severance and Marc Alier.
30 // BasicLTI4Moodle is copyright 2009 by Marc Alier Forment, Jordi Piguillem and Nikolas Galanis
31 // of the Universitat Politecnica de Catalunya http://www.upc.edu
32 // Contact info: Marc Alier Forment granludo @ gmail.com or marc.alier @ upc.edu
34 /**
35  * This file contains a library of javasxript functions for the lti module
36  *
37  * @package    mod
38  * @subpackage lti
39  * @copyright  2009 Marc Alier, Jordi Piguillem, Nikolas Galanis
40  *  marc.alier@upc.edu
41  * @copyright  2009 Universitat Politecnica de Catalunya http://www.upc.edu
42  * @author     Marc Alier
43  * @author     Jordi Piguillem
44  * @author     Nikolas Galanis
45  * @author     Charles Severance
46  * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
47  */
49 function basicltiDebugToggle() {
50     var ele = document.getElementById('basicltiDebug');
51     if (ele.style.display == 'block') {
52         ele.style.display = 'none';
53     } else {
54         ele.style.display = 'block';
55     }