solid-panes 3.5.33 → 3.5.34-59236eda
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Documentation/conventions.md +34 -5
- package/lib/versionInfo.js +3 -3
- package/lib/versionInfo.js.map +1 -1
- package/package.json +2 -2
- package/src/versionInfo.ts +3 -3
|
@@ -20,6 +20,7 @@ For short-hand, we will use the following namespace prefixes here:
|
|
|
20
20
|
@prefix pim: <http://www.w3.org/ns/pim/space#> .
|
|
21
21
|
@prefix rdf: <http://www.w3.org/2000/01/rdf-schema#> .
|
|
22
22
|
@prefix schema: <http://schema.org/> .
|
|
23
|
+
@prefix sec: <https://w3id.org/security#>.
|
|
23
24
|
@prefix sioc: <http://rdfs.org/sioc/ns#> .
|
|
24
25
|
@prefix solid: <http://www.w3.org/ns/solid/terms#> .
|
|
25
26
|
@prefix stat: <http://www.w3.org/ns/posix/stat#> .
|
|
@@ -58,8 +59,8 @@ Now say your name is "John Doe", then add these triples to your profile document
|
|
|
58
59
|
Say your pod is at `/pod`, with the LDN inbox at `/pod/inbox/`, to link from your identity to your pod:
|
|
59
60
|
|
|
60
61
|
```turtle
|
|
61
|
-
</profile/card#me> solid:
|
|
62
|
-
</profile/card#me> pim:storage </pod> .
|
|
62
|
+
</profile/card#me> solid:oidcIssuer </pod> . # WebID identity provider : this is a MUST
|
|
63
|
+
</profile/card#me> pim:storage </pod> . # you can have more than one
|
|
63
64
|
</profile/card#me> ldp:inbox </pod/inbox/> .
|
|
64
65
|
```
|
|
65
66
|
|
|
@@ -73,6 +74,15 @@ To publish some of your generic preferences to apps, use:
|
|
|
73
74
|
</profile/card#me> solid:privateTypeIndex </settings/privateTypeIndex.ttl> .
|
|
74
75
|
```
|
|
75
76
|
|
|
77
|
+
### Your stuff
|
|
78
|
+
|
|
79
|
+
Optional this will display Pods on which you want to link Chats, Contacts, Issues ....
|
|
80
|
+
These are then displayed in `Your Stuff` on your profile-pane and on your dashboard
|
|
81
|
+
|
|
82
|
+
```turtle
|
|
83
|
+
</profile/card#me> solid:community <linkPod1>, <linkPod2> .
|
|
84
|
+
```
|
|
85
|
+
|
|
76
86
|
## Address Book
|
|
77
87
|
(see also [pdsinterop.org's description](https://pdsinterop.org/conventions/addressbook/))
|
|
78
88
|
|
|
@@ -216,8 +226,10 @@ Note that for historical reasons, for the chat conversation as a whole, we use `
|
|
|
216
226
|
|
|
217
227
|
### Long Chat
|
|
218
228
|
|
|
219
|
-
LongChat is similar to Chat, except that it uses LDP containers to discover the triples that describe the chat conversation,
|
|
220
|
-
|
|
229
|
+
LongChat is similar to Chat, except that it uses LDP containers to discover the triples that describe the chat conversation, instead of having all the triples in one `chat.ttl` doc.
|
|
230
|
+
`chat.ttl` document is an Append only docu
|
|
231
|
+
|
|
232
|
+
LongChat generate an ECDSA `signature` to secure each message content.
|
|
221
233
|
To create a chat conversation, pick a timestamp, e.g., `1555491215455`, create an LDP container, for instance `/long-chat/`, and in there, create an index document, e.g., `/long-chat/index.ttl`. To the index document, add the following triples:
|
|
222
234
|
|
|
223
235
|
```turtle
|
|
@@ -238,7 +250,24 @@ To add a message in the LongChat conversation, for instance where you say "hi",
|
|
|
238
250
|
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> dct:created "2019-04-17T07:50:18Z"^^XML:dateTime .
|
|
239
251
|
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> sioc:content "hi" .
|
|
240
252
|
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> foaf:maker </profile/card#me> .
|
|
241
|
-
</long-chat/index.ttl#this>
|
|
253
|
+
</long-chat/index.ttl#this> flow:message </long-chat/2019/04/17/chat.ttl#Msg1555487418787> .
|
|
254
|
+
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> sec:proofValue
|
|
255
|
+
"9f34f15067d7500fd831dd9f408f93ff6ae806fb03d851b344ac5e6cb04ea33c45a6e1b97812705de0e58388dfd7a86429e8bac8fb98d1976a9e5ac401c60dcc".
|
|
256
|
+
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
To edit a message a link triple to the replacement message is added
|
|
260
|
+
|
|
261
|
+
```
|
|
262
|
+
:Msg1555487418787 dct:isReplacedBy :Msg1702901805314;
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
To delete a message, you link to a replacement message, that contains the following triples
|
|
266
|
+
|
|
267
|
+
```
|
|
268
|
+
:Msg1702901805314 sioc:content "(message deleted)";
|
|
269
|
+
:Msg1702901805314 schema:dateDeleted "2023-12-18T12:16:45Z"^^xsd:dateTime;
|
|
270
|
+
|
|
242
271
|
```
|
|
243
272
|
|
|
244
273
|
Note that there is no need to make `/long-chat/2019/04/17/chat.ttl` discoverable from `/long-chat/index.ttl`, since it can be discovered by following the LDP Container member listings for `/long-chat/`, `/long-chat/2019/`, `/long-chat/2019/04/`, and `/2019/04/17/`.
|
package/lib/versionInfo.js
CHANGED
|
@@ -5,10 +5,10 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _default = exports["default"] = {
|
|
8
|
-
buildTime: "2023-12-
|
|
9
|
-
commit: "
|
|
8
|
+
buildTime: "2023-12-18T16:33:49Z",
|
|
9
|
+
commit: "59236eda280f14cc4fdbd887cab253dbed45a7b0",
|
|
10
10
|
npmInfo: {
|
|
11
|
-
'solid-panes': '3.5.
|
|
11
|
+
'solid-panes': '3.5.34',
|
|
12
12
|
npm: '8.19.4',
|
|
13
13
|
node: '16.20.2',
|
|
14
14
|
v8: '9.4.146.26-node.26',
|
package/lib/versionInfo.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versionInfo.js","names":["buildTime","commit","npmInfo","npm","node","v8","uv","zlib","brotli","ares","modules","nghttp2","napi","llhttp","openssl","cldr","icu","tz","unicode","ngtcp2","nghttp3"],"sources":["../src/versionInfo.ts"],"sourcesContent":["export default {\nbuildTime: \"2023-12-
|
|
1
|
+
{"version":3,"file":"versionInfo.js","names":["buildTime","commit","npmInfo","npm","node","v8","uv","zlib","brotli","ares","modules","nghttp2","napi","llhttp","openssl","cldr","icu","tz","unicode","ngtcp2","nghttp3"],"sources":["../src/versionInfo.ts"],"sourcesContent":["export default {\nbuildTime: \"2023-12-18T16:33:49Z\",\ncommit: \"59236eda280f14cc4fdbd887cab253dbed45a7b0\",\nnpmInfo:\n{\n 'solid-panes': '3.5.34',\n npm: '8.19.4',\n node: '16.20.2',\n v8: '9.4.146.26-node.26',\n uv: '1.43.0',\n zlib: '1.2.11',\n brotli: '1.0.9',\n ares: '1.19.1',\n modules: '93',\n nghttp2: '1.47.0',\n napi: '8',\n llhttp: '6.0.11',\n openssl: '1.1.1v+quic',\n cldr: '41.0',\n icu: '71.1',\n tz: '2022f',\n unicode: '14.0',\n ngtcp2: '0.8.1',\n nghttp3: '0.7.0'\n}\n};\n"],"mappings":";;;;;;oCAAe;EACfA,SAAS,EAAE,sBAAsB;EACjCC,MAAM,EAAE,0CAA0C;EAClDC,OAAO,EACP;IACE,aAAa,EAAE,QAAQ;IACvBC,GAAG,EAAE,QAAQ;IACbC,IAAI,EAAE,SAAS;IACfC,EAAE,EAAE,oBAAoB;IACxBC,EAAE,EAAE,QAAQ;IACZC,IAAI,EAAE,QAAQ;IACdC,MAAM,EAAE,OAAO;IACfC,IAAI,EAAE,QAAQ;IACdC,OAAO,EAAE,IAAI;IACbC,OAAO,EAAE,QAAQ;IACjBC,IAAI,EAAE,GAAG;IACTC,MAAM,EAAE,QAAQ;IAChBC,OAAO,EAAE,aAAa;IACtBC,IAAI,EAAE,MAAM;IACZC,GAAG,EAAE,MAAM;IACXC,EAAE,EAAE,OAAO;IACXC,OAAO,EAAE,MAAM;IACfC,MAAM,EAAE,OAAO;IACfC,OAAO,EAAE;EACX;AACA,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solid-panes",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.34-59236eda",
|
|
4
4
|
"description": "Solid-compatible Panes: applets and views for the mashlib and databrowser",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"profile-pane": "^1.0.18",
|
|
59
59
|
"solid-namespace": "^0.5.3",
|
|
60
60
|
"solid-ui": "2.4.32",
|
|
61
|
-
"source-pane": "^2.2.
|
|
61
|
+
"source-pane": "^2.2.26"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@babel/cli": "^7.23.4",
|
package/src/versionInfo.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
export default {
|
|
2
|
-
buildTime: "2023-12-
|
|
3
|
-
commit: "
|
|
2
|
+
buildTime: "2023-12-18T16:33:49Z",
|
|
3
|
+
commit: "59236eda280f14cc4fdbd887cab253dbed45a7b0",
|
|
4
4
|
npmInfo:
|
|
5
5
|
{
|
|
6
|
-
'solid-panes': '3.5.
|
|
6
|
+
'solid-panes': '3.5.34',
|
|
7
7
|
npm: '8.19.4',
|
|
8
8
|
node: '16.20.2',
|
|
9
9
|
v8: '9.4.146.26-node.26',
|