-
Notifications
You must be signed in to change notification settings - Fork 0
/
visuallibrary.html
75 lines (50 loc) · 2.29 KB
/
visuallibrary.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/visuallibrary/jquery/1.10.2/jquery-1.10.2.min.js"></script>
<script src="js/visuallibrary/jquery/1.10.3/jquery-ui.min.js"></script>
<script src="js/visuallibrary/jquery-sparql/jquery.sparql.js"></script>
<script src='js/visuallibrary/visuallibrary.js'></script>
<script src='js/visuallibrary/spin.js'></script>
<link href="css/visuallibrary.css" rel="stylesheet">
<title>Visual Library RDF Visualizer</title>
</head>
<body>
<div id ="main">
<div id ="header">
<span>SPARQL Endpoint:</span>
<select id="cmbEndpoint" onchange="listGraphs()">
<option value="http://linkeddata.uni-muenster.de:8081/parliament/sparql">http://linkeddata.uni-muenster.de:8081/parliament/sparql</option>
<option value="" selected="selected">[Select a SPARQL Endpoint]</option>
</select>
<span>Named Graph:</span>
<select id="cmbNamedGraph" onchange="execute(0)">
<option value="" selected="selected">[Select a SPARQL Endpoint]</option>
<!--<option value="<http://ulb.uni-muenster.de/context/karten/muenster/historical>">http://ulb.uni-muenster.de/context/karten/muenster/historical</option>-->
</select>
<br><br>
<form>
<fieldset>
<input type="radio" id="ngeo" name="Zahlmethode" value="ngeo"><label for="vi"> Not georeferenced</label>
<input type="radio" id="geo" name="Zahlmethode" value="geo"><label for="mc"> Georeferenced</label>
<input type="radio" id="all" name="Zahlmethode" value="all" checked="checked"><label for="ae"> All records</label>
</fieldset>
<div id ="status"></div>
</form>
<br>
<input type="text" size="50 "id="searchField" class="form-control" placeholder="Enter title or description ...">
<input type="text" size="4"id="startDate" class="form-control">
<input type="text" size="4"id="endDate" class="form-control">
<input type="button" value="Load Records" onclick="execute(0)">
<br><br>
</div>
<div id ="paging">
<div id="p1"></div>
<div id="p2"></div>
</div>
<div id ="list">
</div>
</div>
</body>
</html>