forked from nodeSolidServer/node-solid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabrowser.html
More file actions
22 lines (22 loc) · 745 Bytes
/
databrowser.html
File metadata and controls
22 lines (22 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html id="docHTML">
<head>
<link type="text/css" rel="stylesheet" href="https://w3.scripts.mit.edu/tabulator/tabbedtab.css" />
<script type="text/javascript" src="https://w3.scripts.mit.edu/tabulator/js/mashup/mashlib.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
$rdf.Fetcher.crossSiteProxyTemplate = document.origin + '/' + ProxyPath + '?uri={uri}'
var uri = window.location.href
window.document.title = uri
var kb = tabulator.kb
var subject = kb.sym(uri)
tabulator.outline.GotoSubject(subject, true, undefined, true, undefined)
})
</script>
</head>
<body>
<div class="TabulatorOutline" id="DummyUUID">
<table id="outline"></table>
</div>
</body>
</html>