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
25 lines (24 loc) · 798 Bytes
/
databrowser.html
File metadata and controls
25 lines (24 loc) · 798 Bytes
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
<!DOCTYPE html>
<html id="docHTML">
<head>
<link type="text/css" rel="stylesheet" href="https://linkeddata.github.io/solid-app-set/style/tabbedtab.css" />
<script type="text/javascript" src="https://linkeddata.github.io/mashlib/dist/mashlib-prealpha.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var UI = require('mashlib')
var $rdf = UI.rdf
$rdf.Fetcher.crossSiteProxyTemplate = document.origin + '/xss?uri={uri}';
var uri = window.location.href;
window.document.title = uri;
var kb = UI.store;
var subject = kb.sym(uri);
UI.outline.GotoSubject(subject, true, undefined, true, undefined);
});
</script>
</head>
<body>
<div class="TabulatorOutline" id="DummyUUID">
<table id="outline"></table>
</div>
</body>
</html>