-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
94 lines (69 loc) · 3.34 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>UserAgentParser comparison</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="../circle.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="section">
<h1 class="header center orange-text">UserAgentParser comparison</h1>
<div class="row center">
<p>
See the comparison of different user agent parsers
</p>
<a class="modal-trigger btn waves-effect waves-light"
href="/UserAgentParserComparison/v5/index.html">
Version 5 (latest)
</a><br /><br />
<a class="modal-trigger btn waves-effect waves-light"
href="/UserAgentParserComparison/v4/index.html">
Version 4
</a><br /><br />
<a class="modal-trigger btn waves-effect waves-light"
href="/UserAgentParserComparison/v3/index.html">
Version 3
</a><br /><br />
<a class="modal-trigger btn waves-effect waves-light"
href="/UserAgentParserComparison/v2/index.html">
Version 2
</a><br /><br />
<a class="modal-trigger btn waves-effect waves-light"
href="/UserAgentParserComparison/v1/index.html">
Version 1
</a><br /><br />
by Martin Keckeis (@ThaDafinser)
</div>
</div>
<div class="section">
<h1 class="header center orange-text">About this comparison</h1>
<div class="row center">
<h5 class="header light">
The primary goal of this project is simple<br />
I wanted to know which user agent parser is the most accurate in each part - device detection, bot detection and so on...<br />
<br />
The secondary goal is to provide a source for all user agent parsers to improve their detection based on this results.<br />
<br />
You can also improve this further, by suggesting ideas at <a href="https://github.com/ThaDafinser/UserAgentParserComparison">ThaDafinser/UserAgentParserComparison</a><br />
<br />
The comparison is based on the abstraction by <a href="https://github.com/ThaDafinser/UserAgentParser">ThaDafinser/UserAgentParser</a>
</h5>
</div>
</div>
<div class="card">
<div class="card-content">
Comparison created <i>2016-05-11 11:44:04</i> | by
<a href="https://github.com/ThaDafinser">ThaDafinser</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/list.js/1.2.0/list.min.js"></script>
<script>
</script>
</body>
</html>