File tree 9 files changed +1461
-968
lines changed
9 files changed +1461
-968
lines changed Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
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.
Original file line number Diff line number Diff line change
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 >
You can’t perform that action at this time.
0 commit comments