-
Notifications
You must be signed in to change notification settings - Fork 6
/
tinbook.htm
133 lines (116 loc) · 4.29 KB
/
tinbook.htm
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!--
=============COPYRIGHT============
Tin Book - An I-Read-This prototype for Tin Can API
Copyright (C) 2012 Andrew Downes
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, version 3.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
<http://www.gnu.org/licenses/>.
=============CREDITS============
Thanks to Rustici Software for provision of TCDriver.js which powers
the calls to the Tin Can API and for developing the Tin Can API
TCDriver.js is reproduced here by permission under the understanding that
it is still a prototype. It comes from the prototype package found at:
http://scorm.com/project-tin-can-phase-3-prototyping-tin-can-content-outside-of-the-lms/
=============DEVELOPMENT STATUS============
This software is currently in development and is NOT intended to be used
in a live situation.
-->
<!DOCTYPE html>
<html>
<head>
<title>I Read This</title>
<style>
body {
background: #d5d4d1;
text-align: center;
font-family: Georgia, Serif;
}
.bookElement
{
text-align: left;
background: #fff;
margin:1em auto;
width:700px;
padding:1em;
}
.bookElement span
{
width:600px;
}
.title
{
font-size:larger;
font-weight:bold;
display:block;
}
.authors, .publisher, .publishedDate
{
display:block;
}
.IReadThisButton
{
float: right;
width: 75px !important;
font-size: 16pt;
font-weight: bold;
color: #FF4545;
text-align: center;
cursor:pointer;
}
.instructions
{
display:block;
}
.YouRead
{
color: #FF4545;
font-size:larger;
font-weight:bold;
display:block;
margin:0px 10px;
}
</style>
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<!-- Rustici's Tin Can functions - call these to access the Tin Can API-->
<script type="text/javascript" src="tincanjs/TinCan.js"></script>
<script type="text/javascript" src="tincanjs/Utils.js"></script>
<script type="text/javascript" src="tincanjs/LRS.js"></script>
<script type="text/javascript" src="tincanjs/AgentAccount.js"></script>
<script type="text/javascript" src="tincanjs/Agent.js"></script>
<script type="text/javascript" src="tincanjs/Group.js"></script>
<script type="text/javascript" src="tincanjs/Verb.js"></script>
<script type="text/javascript" src="tincanjs/Result.js"></script>
<script type="text/javascript" src="tincanjs/Score.js"></script>
<script type="text/javascript" src="tincanjs/Context.js"></script>
<script type="text/javascript" src="tincanjs/ContextActivities.js"></script>
<script type="text/javascript" src="tincanjs/Activity.js"></script>
<script type="text/javascript" src="tincanjs/InteractionComponent.js"></script>
<script type="text/javascript" src="tincanjs/ActivityDefinition.js"></script>
<script type="text/javascript" src="tincanjs/ActivityProfile.js"></script>
<script type="text/javascript" src="tincanjs/StatementRef.js"></script>
<script type="text/javascript" src="tincanjs/SubStatement.js"></script>
<script type="text/javascript" src="tincanjs/Statement.js"></script>
<script type="text/javascript" src="tincanjs/StatementsResult.js"></script>
<script type="text/javascript" src="tincanjs/State.js"></script>
<!-- Base64 -->
<script src="http://tin-can-can.googlecode.com/files/base64.js"></script>
<!-- TinCanCan - main js file for this wrapper -->
<script src="TinBook.js"></script>
</head>
<body >
<h1>I Read This</h1>
<p>Search for a book, then click the correct entry to report to the LRS</p>
<div id="content">
<input type="text" name="searchBox" id="searchBox"- /><input name="searchButton" id="searchButton" type="button" value="Search" />
</div>
<noscript>
This course requires JavaScript to be enabled in your browser. Please enable JavaScript, then relaunch the course.
</noscript>
</body>
</html>