-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.html
65 lines (55 loc) · 2.14 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Web Crawler on the Client Side</title>
<meta name="author" content="[email protected]">
<link rel="stylesheet" href="style/halfviz.css" type="text/css" charset="utf-8">
</head>
<body>
<div id="halfviz">
<canvas id="viewport" width="800" height="600"></canvas>
<div id="grabber"></div>
</div>
<div id="dashboard">
<div id="left">
<span id="loader" class="loading style-3 paused"></span>
</div>
<div id="right">
<form id="form">
<label for="website">Main Website</label>
<input type="url" name="website" id="website" placeholder="http://www.example.com" style="width:173px"/>
<input id="start" type="submit" value="Crawl" />
<input id="stop" type="button" value="Stop" style="display:none" />
</form>
<span id="status-text">Enter a website url to start.</span>
</div>
<div id="top-right">
<a href="mailto:[email protected]">email</a> -
<button onclick="goFullScreen();">full screen</button>
</div>
</div>
<script src="_/jquery-1.6.1.min.js"></script>
<script src="src/jquery-ui.js"></script>
<script src="src/jquery.pulse.min.js"></script>
<script src="lib/arbor.js"></script>
<script src="_/graphics.js"></script>
<script src="src/help.js"></script>
<script src="src/io.js"></script>
<script src="src/parseur.js"></script>
<script src="src/renderer.js"></script>
<script src="src/jQuery.ajaxQueue.js"></script>
<script src="src/jquery.xdomainajax.js"></script>
<script src="src/full_screen.js"></script>
<script src="src/halfviz.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-42231787-1', 'hartator.github.io');
ga('send', 'pageview');
</script>
</body>
</html>