Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Get the source

...

Note
titleSakai Version compatibility

The build instructions for the SCORM Tool differ slightly according to the version of Sakai you are building. The main distinction occurs between versions prior to Sakai Version 2.2 and those afterward. If you already have the SCORM Tool source, check the project.properties file in the root of the tool's source tree for the property 'scorm.runtime.version' ... this version will roughly correspond to the Sakai version that is required.

The last version of the SCORM Tool that works with Sakai v2.1.2 is, understandably, version 2.1.2. Make sure you have this version by checking for a tag '2-1-2' here: https://source.sakaiproject.org/contrib/scorm/runtime_tool/tags (if there is no such tag there, then its not there yet...just use trunk...move up one level: https://source.sakaiproject.org/contrib/scorm/runtime_tool/trunk)

...

Note

All examples are Linux command line examples

Sakai 2.1.2 and prior

\

Get the Sakai source

Check out the Sakai source from the subversion repository. Refer to the documentation for the Sakai release. The lastest release docs are here http://www.sakaiproject.org/release

Code Block
titleSakai subversion checkout

svn co https://source.sakaiproject.org/svn/tags/sakai_2-1-2/

\

Get the SCORM Tool source

Code Block
titleSCORM TOOL subversion checkout

svn co https://source.sakaiproject.org/contrib/scorm/runtime_tool/tags/2-1-2/ scormrte
Note

Up to the point in time when the above 2-1-2 tag for the SCORM Tool is created, you can use

Code Block
svn co https://source.sakaiproject.org/contrib/scorm/runtime_tool/trunk/ scormrte

\

Modify the svn property for the Sakai source root to include the SCORM Tool source

Note

You may need to set your SVNEDITOR or EDITOR shell variable to the text editor of your choosing

Code Block
titleedit svn property svn:eternals

setenv EDITOR vi
cd scormte
svn propedit svn:externals .
Note

The dot (".") in the last line must be included