-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimsmanifest.xml
57 lines (51 loc) · 2.35 KB
/
imsmanifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" standalone="no" ?>
<!--
Single SCO content packaging example. SCORM 1.2.
Provided by Rustici Software - http://www.scorm.com
This example demonstrates the simplest possible manifest, containing just one SCO and
no metdata or sequencing information.
-->
<!--
The manifest node contains a unique identifer for this course and the course's version number.
The schema declartions are important to ensure you are delivering valid XML. For the most part
these should remain static. Other schema prefixes are allowed, but can limit interoperabilty.
The XSD files for SCORM 1.2 are not strictly valid and may cause errors in some XML validators.
-->
<manifest identifier="com.scorm.golfsamples.contentpackaging.singlesco.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">
<!--
The metadata node simply declares which SCORM version this course operates under.
In SCORM 1.2 there isn't a controlled vocabulary for schemaversion, it can be any value
but a descriptive value is preferred.
-->
<metadata>
<schema>ADL SCORM</schema>
<schemaversion>1.2</schemaversion>
</metadata>
<!-- There is just one organization. The organization contains just one item.-->
<organizations default="hax">
<organization identifier="hax">
<title>haxcellence</title>
<item identifier="item_1" identifierref="resource_1">
<title>haxcellence</title>
</item>
</organization>
</organizations>
<!--
There is just one resource that represents the single SCO that comprises the entirety of this course.
The href attribute points to the launch URL for the course and all of the files required by the course
are listed.
One subtle difference between SCORM 1.2 and SCORM 2004 is the cast of the letter "t" in the
adlcp:scormtype attribute
-->
<resources>
<resource identifier="resource_1" type="webcontent" adlcp:scormtype="sco" href="index.html">
<file href="index.html"/>
</resource>
</resources>
</manifest>