This repository has been archived by the owner on Feb 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
78 lines (70 loc) · 2.45 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
<!doctype html>
<!-- ©2014–2016 Ruben Verborgh, Ghent University – imec -->
<html lang="en">
<head>
<meta charset="utf-8">
<title>Linked Data Fragments client</title>
<link rel=stylesheet href="styles/ldf-client.css">
<link rel=stylesheet href="http://fonts.googleapis.com/css?family=Open+Sans:300,400italic,700italic,400,700">
<meta name="viewport" content="width=device-width,minimum-scale=1,maximum-scale=1">
</head>
<body>
<header>
<a class="logo" href="http://linkeddatafragments.org/"><img src="images/logo.svg" alt="" /></a>
<h1><a href="#">Query Linked Data on the Web</a></h1>
<p><a href="http://linkeddatafragments.org/concept/" target="_blank">Live in your browser, powered by Triple Pattern Fragments</a>.</p>
</header>
<!--[if lte IE 9]><b>Your browser is unsupported.</b><div style="display:none"><![endif]-->
<main>
<fieldset class="ldf-client">
<ul>
<li>
<label>Choose datasources</label>
<span class="details-toggle" title="Show date option"></span>
<select class="datasources" multiple></select>
</li>
<li class="details">
<label>Pick a date</label>
<input class="datetime" type="date">
</li>
<li>
<label>Type or pick a query</label>
<select class="query"></select>
<textarea class="queryText"></textarea>
</li>
<li>
<button class="start">Execute query</button>
<button class="stop" style="display:none">Stop execution</button>
<span class="timing"></span>
</li>
<li>
<label>Query results</label>
<div class="results"></div>
</li>
<li>
<label>Execution log</label>
<pre class="log"></pre>
</li>
</ul>
</fieldset>
<p>
Discover how <a href="http://linkeddatafragments.org" target="_blank">Linked Data Fragments</a>
enable Web-scale querying of Linked Data.
</p>
</main>
<footer>
<p>
©2013–2017
<a href="http://www.ugent.be/" target="_blank">Ghent University</a> –
<a href="http://www.imec.be/" target="_blank">imec</a>, Belgium.
<a href="https://github.com/LinkedDataFragments/jQuery-Widget.js">Source code</a>.
</p>
</footer>
<script src="scripts/ldf-client-ui.min.js"></script>
<script>
jQuery(function ($) {
$('.ldf-client').queryui({ settings: 'queries.json' });
});
</script>
</body>
</html>