-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathimsmanifest.xml
38 lines (38 loc) · 1.54 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
<?xml version="1.0" encoding="UTF-8"?>
<manifest identifier="com.example.scormminimal" version="1.2"
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.adlnet.org/xsd/adlcp_rootv1p2 adlcp_rootv1p2.xsd">
<metadata>
<schema>ADL SCORM</schema>
<schemaversion>1.2</schemaversion>
<adlcp:location>metadata.xml</adlcp:location>
</metadata>
<organizations default="org">
<organization identifier="org">
<title>Your Course Title</title>
<item identifier="item1" identifierref="resource1">
<title>Chapter 1</title>
</item>
<item identifier="item2" identifierref="resource2">
<title>Chapter 2</title>
</item>
<!-- Add more items for additional chapters -->
</organization>
</organizations>
<resources>
<resource identifier="resource1" type="webcontent" adlcp:scormtype="sco" href="chapter1.html">
<file href="chapter1.html"/>
<file href="../_static/SCORMFunctions.js"/>
<file href="../_static/APIWrapper.js"/>
</resource>
<resource identifier="resource2" type="webcontent" adlcp:scormtype="sco" href="chapter2.html">
<file href="chapter2.html"/>
<file href="../_static/SCORMFunctions.js"/>
<file href="../_static/APIWrapper.js"/>
</resource>
<!-- Add more resources for additional chapters -->
</resources>
</manifest>