This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
measurementConfigCreator.html
87 lines (71 loc) · 3.65 KB
/
measurementConfigCreator.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>MeetYouThere TestTool</title>
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" type="text/css" href="lib/bootstrap/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="stylesheets/jquery-ui-1.10.1.custom.min.css"/>
<link rel="stylesheet" type="text/css" href="stylesheets/theme.css"/>
<link rel="stylesheet" type="text/css" href="stylesheets/jquery.jqplot.min.css"/>
<link rel="stylesheet" type="text/css" href="lib/font-awesome/css/font-awesome.css"/>
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="lib/html5.js"></script>
<![endif]-->
</head>
<!--[if lt IE 7 ]> <body class="ie ie6"> <![endif]-->
<!--[if IE 7 ]> <body class="ie ie7 "> <![endif]-->
<!--[if IE 8 ]> <body class="ie ie8 "> <![endif]-->
<!--[if IE 9 ]> <body class="ie ie9 "> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!-->
<body class="">
<!--<![endif]-->
<!-- FELSO KEK SAV (statikus) -->
<div class="navbar">
<div class="navbar-inner">
<a class="brand" href="#"><span class="second">MeetYouThere TestTool - Measurement Configuration Generator</span></a>
</div>
</div>
<!-- FELSO KEK SAV VEGE -->
<div class="dialog" style="float: left; max-height: 70%; margin-bottom: 0px; margin-top: 0px; width: auto">
<div class="block">
<p class="block-heading">Data file from GeoLife</p>
<div class="block-body">
<div class="alert alert-info" id="infoBox" style="display: none">
<button type="button" class="close">×</button>
<strong></strong>
</div>
<form id="configForm">
<table class="table">
<tr>
<th>Number of data files:</th>
<td><input type="number" min="1" max="10000" id="dataFilesNum" value="100"/></td>
</tr>
<tr>
<th>Min angles (comma separated)</th>
<td><input type="text" id="minAngles" value="10,15,20"/></td>
</tr>
<tr>
<th>Max DP tolerances: (comma separated)</th>
<td><input type="text" id="maxTolerances" value="30,40,50,60"/></td>
</tr>
<tr>
<td> </td>
<td>
<button class="btn btn-primary" id="submit">Generate!</button>
<input type="reset" class="btn" value="Reset"/>
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
<!-- Scripts section -->
<script src="lib/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="lib/jquery-ui-1.10.1.custom.min.js" type="text/javascript"></script>
<script src="js/measurementConfig.js" type="text/javascript"></script>
</body>
</html>