forked from SolidOS/mashlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (36 loc) · 1.09 KB
/
index.html
File metadata and controls
39 lines (36 loc) · 1.09 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<!--<link type="text/css" rel="stylesheet" href="/timbl/Automation/Library/Mashup/tabbedtab.css" />-->
<link type="text/css" rel="stylesheet" href="./mash.css" />
<script>
var $SOLID_GLOBAL_config = {
popupUri: './popup.html'
}
</script>
<script type="text/javascript" src="./mashlib.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
var Mashlib = window.Mashlib
Mashlib.config = {
// idpSelectUri: './idp-select-ui.html',
callbackUri: './idp-callback.html'
}
Mashlib.rdf.Fetcher.crossSiteProxyTemplate = 'https://databox.me/,proxy?uri={uri}'
Mashlib.authn.checkUser()
.then(function () {
var uri = window.location.href
var data_uri = window.document.title = uri.slice(0, uri.lastIndexOf('/')+1) + ''
var subject = Mashlib.rdf.sym(data_uri)
Mashlib.outline.GotoSubject(subject, true, undefined, true, undefined)
})
})
</script>
</head>
<body>
<div class="TabulatorOutline" id="DummyUUID">
<table id="outline"></table>
</div>
</body>
</html>