forked from tomayac/isearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvis.html
More file actions
112 lines (89 loc) · 3.86 KB
/
vis.html
File metadata and controls
112 lines (89 loc) · 3.86 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
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
<!doctype html>
<!--[if lt IE 7 ]> <html class="no-js ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="no-js ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="no-js ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>I-Search Visualisation Demo</title>
<meta name="description"
content="iSearch project is a multi-modal search engine." />
<meta name="author" content="iSearch project members" />
<meta name="HandheldFriendly" content="True" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- For iPhone 4 with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="img/h/apple-touch-icon.png" />
<!-- For first-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="img/m/apple-touch-icon.png" />
<!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed"
href="img/l/apple-touch-icon-precomposed.png" />
<!-- For nokia devices: -->
<link rel="shortcut icon" href="img/l/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-startup-image" href="img/l/splash.png" />
<!-- Mobile IE allows us to activate ClearType technology for smoothing fonts for easy reading -->
<meta http-equiv="cleartype" content="on" />
<link rel="stylesheet" href="css/style.css?v=2" />
<!-- <link rel="stylesheet" href="css/token-input.css"/> -->
<link rel="stylesheet" href="css/token-input.css" />
<link rel="stylesheet" href="css/vis.css" />
<link rel="stylesheet" href="css/jquery-ui-1.8.14.custom.css" />
<!-- Modernizr at the top. Rest at the bottom for better perf. -->
<script src="js/libs/modernizr-1.7.min.js"></script>
<!-- get query parameters from request and put them in global variable -->
<script>
var __queryParams = { out: "json",
index: "iaprtc12", q: "mountain", tr: "lle", cls: "5,3", total: 100
};
</script>
</head>
<body>
<div id="container">
<div id="main" role="main"></div>
<footer> © 2011 I-SEARCH Project - All rights reserved </footer>
</div>
<!-- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.js"></script> -->
<script>window.jQuery || document.write("<script src='js/libs/jquery-1.6.2.min.js'>\x3C/script>")</script>
<script type="text/javascript"
src="http://maps.googleapis.com/maps/api/js?sensor=true"></script>
<!--
<script>
// curenntly this hack is required to load the library correctly
var Timeline_urlPrefix = "js/libs/timeline_2.3.0/timeline_js/" ;
var Timeline_parameters='bundle=false';
var SimileAjax_urlPrefix = "js/libs/timeline_2.3.0/timeline_ajax/" ;
$(document).ready(function() {
$('<script/>', { src: 'js/libs/timeline_2.3.0/timeline_js/timeline-api.js'} ).appendTo('head') ;
}) ;
</script>
-->
<!-- All the script dependancies will be managed with requireJS
More info? Check http://requirejs.org -->
<script src="js/libs/require.js"></script>
<script>
require(
{baseUrl: "./js/"},
["vis"],
function(main) {
main.start();
}
);
</script>
<!-- <script src="https://getfirebug.com/firebug-lite.js"></script> -->
<!--No need for GA right now. But maybe later...who knows?!-->
<!-- <script> -->
<!-- var _gaq=[["_setAccount","UA-XXXXX-X"],["_trackPageview"]]; -->
<!-- (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];g.async=1; -->
<!-- g.src=("https:"==location.protocol?"//ssl":"//www")+".google-analytics.com/ga.js"; -->
<!-- s.parentNode.insertBefore(g,s)}(document,"script")); -->
<!-- </script> -->
</body>
</html>