Extension:Oppia

From WikiEducator
Jump to: navigation, search
Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
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

  1. Install the extension from git.
    1. cd extensions
    2. git clone https://git.gitorious.org/wikieducator/oppia.git Oppia
    3. cd Oppia<code>
    4. <code>git checkout master
  2. Copy the git-player-?.?.?.js file from the Oppia project to the js subdirectory of the extension.
  3. Add to your LocalSettings.php:
require_once( "$IP/extensions/Oppia/Oppia.php" );
$wgOppiaPlayer = "/extensions/Oppia/js/oppia-player-0.0.0.js";