Extension:Oppia
From WikiEducator
| LicenseByCategory Release status: experimental | |
|---|---|
| Implementation | Tag |
| Description | Allows embedding an Oppia exploration in a wiki page. |
| Author(s) | JimTittslerTalk |
| Last Version | 0.2.0 (2014-03-03) |
| MediaWiki | 1.15.5+ |
| License | MIT |
| Download | git [1] ReadMe |
What does this extension do?
The Oppia extension allows embedding an Oppia exploration in a wiki page.
Usage
<oppia id="gC4_ggkWar-L" version="44" src="https://www.oppia.org/" autoload="true"></oppia>
- id
- oppia-id of the exploration
- version
- specific version of the exploration (currently ignored)
- src
- host of the exploration
- autoload
- if set to true, the exploration is automatically loaded; if false, the user is prompted before loading
Installation
- Install the extension from git.
-
cd extensions -
git clone https://git.gitorious.org/wikieducator/oppia.git Oppia -
cd Oppia<code> - <code>git checkout master
-
- Copy the git-player-?.?.?.js file from the Oppia project to the js subdirectory of the extension.
- Add to your
LocalSettings.php:
require_once( "$IP/extensions/Oppia/Oppia.php" ); $wgOppiaPlayer = "/extensions/Oppia/js/oppia-player-0.0.0.js";