-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (41 loc) · 1.3 KB
/
index.html
File metadata and controls
56 lines (41 loc) · 1.3 KB
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
<!DOCTYPE html>
<!--
index.html ~~
~~ (c) SRW, 10 May 2014
~~ last updated 10 May 2014
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="author" content="Sean Wilkinson">
<title>MapReduce Test Page</title>
</head>
<body>
<noscript style="color: red; font-size: 200%;">
This page requires JavaScript.
</noscript>
<h1>MapReduce Test Page</h1>
<div>
This page is used for development and testing of a client-side MapReduce
framework that uses the <a href="https://www.qmachine.org">QMachine</a>
platform for World Wide Computing.
</div>
<!--
First, we include the latest QMachine client library, which uses
https://api.qmachine.org as its API server endpoint.
-->
<script src="https://www.qmachine.org/q.js"></script>
<!--
Second, we include the MapReduce library developed in this project.
-->
<script src="./mapreduce.js"></script>
<!--
Next, we load a page-specific script to power tests that may be specified.
-->
<script src="./main.js"></script>
<!--
Finally, we include user scripts for testing purposes.
-->
<!-- <script src="./tests.js"></script> -->
</body>
</html>