Skip to content

Commit 8ea7aca

Browse files
committed
update to mashlib 1.7.0 and rdflib 2.2.3
1 parent b84789a commit 8ea7aca

File tree

9 files changed

+1461
-968
lines changed

9 files changed

+1461
-968
lines changed

Diff for: .acl

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Root ACL resource for the root
2+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
3+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
4+
5+
<#public>
6+
a acl:Authorization;
7+
acl:agentClass foaf:Agent; # everyone
8+
acl:accessTo </>;
9+
acl:default </common/>;
10+
acl:mode acl:Read.

Diff for: .well-known/.acl

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ACL for the default .well-known/ resource
2+
# Server operators will be able to override it as they wish
3+
# Public-readable
4+
5+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+
<#public>
9+
a acl:Authorization;
10+
11+
acl:agentClass foaf:Agent; # everyone
12+
13+
acl:accessTo </.well-known/>;
14+
15+
acl:mode acl:Read.

Diff for: favicon.ico

4.19 KB
Binary file not shown.

Diff for: favicon.ico.acl

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# ACL for the default favicon.ico resource
2+
# Server operators will be able to override it as they wish
3+
# Public-readable
4+
5+
@prefix acl: <http://www.w3.org/ns/auth/acl#>.
6+
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
7+
8+
<#public>
9+
a acl:Authorization;
10+
11+
acl:agentClass foaf:Agent; # everyone
12+
13+
acl:accessTo </favicon.ico>;
14+
15+
acl:mode acl:Read.

Diff for: index.html

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Welcome to Solid</title>
7+
<link rel="stylesheet" href="/common/css/bootstrap.min.css">
8+
<link rel="stylesheet" href="/common/css/solid.css">
9+
</head>
10+
<body>
11+
<div class="container">
12+
<div class="page-header">
13+
<div class="pull-right">
14+
<button id="register" type="button" class="btn btn-primary">Register</button>
15+
<button id="login" type="button" class="hidden btn btn-default btn-success">Log in</button>
16+
<button id="logout" type="button" class="hidden btn btn-danger">Log out</button>
17+
</div>
18+
19+
<h1>Welcome to the Solid Prototype</h1>
20+
</div>
21+
22+
<p class="lead">
23+
This is a prototype implementation of a Solid server.
24+
25+
It is a fully functional server, but there are no security or stability guarantees.
26+
27+
If you have not already done so, please create an account.
28+
</p>
29+
30+
<p class="lead hidden" id="loggedIn">
31+
You are logged in as
32+
<a href="#" id="profileLink"></a>.
33+
</p>
34+
35+
<section>
36+
<h2>Server info</h2>
37+
<dl>
38+
<dt>Name</dt>
39+
<dd>localhost</dd>
40+
<dt>Details</dt>
41+
<dd>Running on <a href="https://github.com/solid/node-solid-server/releases/tag/v5.6.6">Solid 5.6.6</a></dd>
42+
</dl>
43+
</section>
44+
</div>
45+
<script src="/common/js/solid-auth-client.bundle.js"></script>
46+
<script src="/common/js/auth-buttons.js"></script>
47+
</body>
48+
</html>

0 commit comments

Comments
 (0)