Actions

Difference between revisions of "Developer Area/Import//Export/LEAP Import"

From Mahara Wiki

< Developer Area‎ | Import//Export
 
(3 intermediate revisions by 3 users not shown)
Line 1: Line 1:
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/LEAP_Import
 
http://wiki.cetis.ac.uk/LEAP2A_specification
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/LEAP_Export
 
http://wiki.cetis.ac.uk/LEAP2A_specification
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/Import%3a_Implementation_Plan
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/LEAP_Import/Blog_Artefact_Plugin
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/LEAP_Import/File_Artefact_Plugin
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/LEAP_Import/Resume_Artefact_Plugin
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/LEAP_Import/Internal_Artefact_Plugin
 
http://wiki.mahara.org/Developer_Area/Import%2f%2fExport/Interoperability
 
https://bugs.launchpad.net/mahara/+filebug
 
 
Mahara's Leap Import is implemented as a plugin for Mahara's [[Developer Area/Import%2f%2fExport/LEAP Import|"Import" plugin type]]. It allows Mahara to import [http://wiki.cetis.ac.uk/LEAP2A_specification Leap2A] files, which Mahara can also [[Developer Area/Import%2f%2fExport/LEAP Export|export]].
 
Mahara's Leap Import is implemented as a plugin for Mahara's [[Developer Area/Import%2f%2fExport/LEAP Import|"Import" plugin type]]. It allows Mahara to import [http://wiki.cetis.ac.uk/LEAP2A_specification Leap2A] files, which Mahara can also [[Developer Area/Import%2f%2fExport/LEAP Export|export]].
  
Line 48: Line 37:
 
We have documented the results of importing from other systems, as well as exporting, in the [[Developer Area/Import%2f%2fExport/Interoperability|Interoperability]] section.
 
We have documented the results of importing from other systems, as well as exporting, in the [[Developer Area/Import%2f%2fExport/Interoperability|Interoperability]] section.
  
You should probably validate incoming Leap2A exports before [https://bugs.launchpad.net/mahara/+filebug filing a bug] against the Mahara Leap importer.
+
You should probably [http://www.leapspecs.org/validator/2A/ validate incoming Leap2A exports] before [https://bugs.launchpad.net/mahara/+filebug filing a bug] against the Mahara Leap importer.
  
 
</div>
 
</div>
Line 62: Line 51:
 
* [[Developer_Area/Import//Export/LEAP_Import/Internal_Artefact_Plugin|Internal Artefact Plugin]]
 
* [[Developer_Area/Import//Export/LEAP_Import/Internal_Artefact_Plugin|Internal Artefact Plugin]]
 
* [[Developer_Area/Import//Export/LEAP_Import/Resume_Artefact_Plugin|Resume Artefact Plugin]]
 
* [[Developer_Area/Import//Export/LEAP_Import/Resume_Artefact_Plugin|Resume Artefact Plugin]]
 +
 +
[[Category:Developer Area]][[Category:LEAP]]

Latest revision as of 16:39, 16 May 2011

Mahara's Leap Import is implemented as a plugin for Mahara's "Import" plugin type. It allows Mahara to import Leap2A files, which Mahara can also export.

Note: A working understanding of the Leap2A spec will help you understand the documentation written here. We suggest you at least partially familiarise yourself with the spec before diving into the code or this documentation.

Architecture

The Leap import plugin lives in htdocs/import/leap/. The core import algorithm is implemented here, as well as other parts necessary to implement the Mahara import API. Most of the work is done by the PluginImportLeap class, which represents a Leap export and the process of importing it.

In addition to this, each artefact plugin can provide the import/leap/lib.php file which the core searches for in order to do most of the heavy lifting. The core Mahara artefact plugins provide this so that, for example, files and blogs in Leap files are imported as files and blogs in Mahara. If you are writing an artefact plugin and your plugin does not supply any artefact type that can be meaningly imported from a Leap file, you don't have to provide the import/leap/ directory at all.

The code uses the PHP extension simplexml to parse the Leap files. This extension is bundled with PHP5 by default, so you're very likely to have it available.

Importing Algorithm

This algorithm is still under development. Please see the implementation plan for an exhaustive description of the algorithm as it was planned. The algorithm has not changed much from how that document describes it.

Artefact Plugins and Leap Import

From a Leap export:

Importing from Other Systems

We have documented the results of importing from other systems, as well as exporting, in the Interoperability section.

You should probably validate incoming Leap2A exports before filing a bug against the Mahara Leap importer.

Files

Subpages