Extension:Memorize

From MediaWiki.org

Jump to: navigation, search
Warning Warning: Extension is no longer maintained.

           

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear app error.png
Memorize

Release status: unstable

Implementation  Tag
Description Allows users to create memorization tables like those on memorizable.org.
Author(s)  Ryan Lane
Last Version  1.0a (2007-02-03)
MediaWiki  1.7+ (or 1.6+, see Installation notes)
License GPL
Download Download snapshot

Subversion [Help]
Browse source code

Example  http://www.ryandlane.com/sandbox/Memorizable

check usage (experimental)

This extension is a simple integration of memorization tables (called "memorizable tables") from memorizable.org. memorizable.js has likely been close-sourced, and as such, I'm unwilling to continue to support this extension. Please discontinue use.

[edit] Usage

Create a table with table headings for each column, and add the <memorize /> tag to each heading.

{|
|+ Capitals
! Country <memorize /> !! Capital <memorize />
|-
| United States || Washington DC
|-
| China || Beijing
|-
| Japan || Tokyo
|-
| Germany || Berlin
|}

[edit] Installation

It is possible to use this extension with MediaWiki 1.6, but you'll need to add a hook to includes/SkinTemplate.php called "BeforePageDisplay". Take a look at MediaWiki 1.7+ to see where you need to add it.

  1. Download the extension from the link above, and drop it in your extensions directory
  2. Download memorizable.js from memorizable.org and drop it in extensions/Memorize directory
  3. Add the following to your LocalSettings.php:
    require_once("$IP/extensions/Memorize/Memorize.php");
    

[edit] Changelog

1.0b
More standard installation instructions, memorizable.js dropped in /extensions/Memorize, no parameter (Use $wgScriptPath to determine location of extra resource files instead of an extra parameter). 18:58, 18 June 2009 (UTC)
1.0a
Initial released version