Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
template-scorm/imsmanifest.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
43 lines (39 sloc)
1.58 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" standalone="no" ?> | |
<!-- | |
Single SCO with basic runtime calls. SCORM 1.2. | |
Provided by Rustici Software - http://www.scorm.com | |
This example demonstrates the use of basic runtime calls in a multi-page SCO. It | |
includes a demonstration of bookmarking, status reporting (completion and success), | |
score and time. It also includes the addition of a basic "controller" for providing | |
intra-SCO navigation. | |
--> | |
<manifest identifier="com.template.12" version="1" | |
xmlns="http://www.imsproject.org/xsd/imscp_rootv1p1p2" | |
xmlns:adlcp="http://www.adlnet.org/xsd/adlcp_rootv1p2" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://www.imsproject.org/xsd/imscp_rootv1p1p2 imscp_rootv1p1p2.xsd | |
http://www.imsglobal.org/xsd/imsmd_rootv1p2p1 imsmd_rootv1p2p1.xsd | |
http://www.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd"> | |
<metadata> | |
<schema>ADL SCORM</schema> | |
<schemaversion>1.2</schemaversion> | |
</metadata> | |
<organizations default="template_org"> | |
<organization identifier="template_org"> | |
<title>Simple SCORM Template</title> | |
<item identifier="item_1" identifierref="resource_1"> | |
<title>Template</title> | |
<adlcp:masteryscore>40</adlcp:masteryscore> | |
</item> | |
</organization> | |
</organizations> | |
<resources> | |
<resource identifier="resource_1" type="webcontent" adlcp:scormtype="sco" href="index.html"> | |
<file href="index.html"/> | |
<file href="js/scormfunctions.js"/> | |
<file href="js/eventlisteners.js"/> | |
<file href="css/style.css"/> | |
<file href="scormData.json"/> | |
</resource> | |
</resources> | |
</manifest> |