solid-panes 3.5.34-59236eda → 3.5.34-c6247c25
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 +23 -35
- package/lib/versionInfo.js +2 -2
- package/lib/versionInfo.js.map +1 -1
- package/package.json +1 -1
- package/src/versionInfo.ts +2 -2
|
@@ -20,7 +20,6 @@ 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#>.
|
|
24
23
|
@prefix sioc: <http://rdfs.org/sioc/ns#> .
|
|
25
24
|
@prefix solid: <http://www.w3.org/ns/solid/terms#> .
|
|
26
25
|
@prefix stat: <http://www.w3.org/ns/posix/stat#> .
|
|
@@ -59,8 +58,8 @@ Now say your name is "John Doe", then add these triples to your profile document
|
|
|
59
58
|
Say your pod is at `/pod`, with the LDN inbox at `/pod/inbox/`, to link from your identity to your pod:
|
|
60
59
|
|
|
61
60
|
```turtle
|
|
62
|
-
</profile/card#me> solid:
|
|
63
|
-
</profile/card#me> pim:storage </pod> .
|
|
61
|
+
</profile/card#me> solid:account </pod> .
|
|
62
|
+
</profile/card#me> pim:storage </pod> .
|
|
64
63
|
</profile/card#me> ldp:inbox </pod/inbox/> .
|
|
65
64
|
```
|
|
66
65
|
|
|
@@ -74,15 +73,6 @@ To publish some of your generic preferences to apps, use:
|
|
|
74
73
|
</profile/card#me> solid:privateTypeIndex </settings/privateTypeIndex.ttl> .
|
|
75
74
|
```
|
|
76
75
|
|
|
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
|
-
|
|
86
76
|
## Address Book
|
|
87
77
|
(see also [pdsinterop.org's description](https://pdsinterop.org/conventions/addressbook/))
|
|
88
78
|
|
|
@@ -226,10 +216,8 @@ Note that for historical reasons, for the chat conversation as a whole, we use `
|
|
|
226
216
|
|
|
227
217
|
### Long Chat
|
|
228
218
|
|
|
229
|
-
LongChat is similar to Chat, except that it uses LDP containers to discover the triples that describe the chat conversation,
|
|
230
|
-
`chat.ttl`
|
|
231
|
-
|
|
232
|
-
LongChat generate an ECDSA `signature` to secure each message content.
|
|
219
|
+
LongChat is similar to Chat, except that it uses LDP containers to discover the triples that describe the chat conversation,
|
|
220
|
+
instead of having all the triples in one `chat.ttl` doc.
|
|
233
221
|
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:
|
|
234
222
|
|
|
235
223
|
```turtle
|
|
@@ -250,24 +238,7 @@ To add a message in the LongChat conversation, for instance where you say "hi",
|
|
|
250
238
|
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> dct:created "2019-04-17T07:50:18Z"^^XML:dateTime .
|
|
251
239
|
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> sioc:content "hi" .
|
|
252
240
|
</long-chat/2019/04/17/chat.ttl#Msg1555487418787> foaf:maker </profile/card#me> .
|
|
253
|
-
</long-chat/index.ttl#this>
|
|
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
|
-
|
|
241
|
+
</long-chat/index.ttl#this> flow:message </long-chat/2019/04/17/chat.ttl#Msg1555487418787> .
|
|
271
242
|
```
|
|
272
243
|
|
|
273
244
|
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/`.
|
|
@@ -323,7 +294,24 @@ To add material to the meeting (let's say `https://example.com/agenda-meeting.ht
|
|
|
323
294
|
|
|
324
295
|
## Dokieli Document
|
|
325
296
|
|
|
326
|
-
|
|
297
|
+
[dokieli](https://dokie.li/) is a clientside editor for decentralised article publishing, annotations, and social interactions. Source code is available from <https://github.com/linkeddata/dokieli>.
|
|
298
|
+
|
|
299
|
+
dokieli allows content creators to generate human- and machine-readable documents in HTML+RDFa, optionally embedding "data blocks" using the `<script type="">` mechanism to include content in Turtle, JSON-LD, and TriG. dokieli also employs mechanisms to use media types that are acceptable by a server (e.g., JSON-LD, Turtle, HTML+RDFa) when, for example, generating data for servers conforming to the [Solid Protocol](https://solidproject.org/ED/protocol), [Linked Data Platform](https://www.w3.org/TR/ldp/), [Linked Data Notifications](https://www.w3.org/TR/ldn/), [Web Annotation Protocol](https://www.w3.org/TR/annotation-protocol), or [ActivityPub](https://www.w3.org/TR/activitypub/).
|
|
300
|
+
|
|
301
|
+
The documents that are generated by dokieli are entirely *Linked Data* documents, in that all significant units of information are available in triple statements (as per data models it conforms to), in addition to being accessible by text-based web browsers or screen readers, especially in the case of HTML.
|
|
302
|
+
|
|
303
|
+
dokieli can parse, use, or generate RDF sources including (but not limited to):
|
|
304
|
+
* [WebID](https://www.w3.org/2005/Incubator/webid/spec/identity/) for personal/agent identities.
|
|
305
|
+
* [Web Access Control (WAC)](https://solidproject.org/TR/wac)/[Access Control Lists (ACL)](https://dbpedia.org/resource/Access_Control_List) to set permissions on Web resources.
|
|
306
|
+
* W3C [Web Annotation Model](https://www.w3.org/TR/annotation-model/), W3C [Web Annotation Vocabulary](https://www.w3.org/TR/annotation-vocab/), W3C [Embedding Web Annotations in HTML](https://www.w3.org/TR/annotation-html), and W3C [Selectors and States](https://www.w3.org/TR/selectors-states/) to model and identify annotations (e.g., replies, peer-reviews, liking, resharing, bookmarking)
|
|
307
|
+
* W3C [Activity Streams 2.0 vocabulary](https://www.w3.org/TR/activitystreams-vocabulary) for social activities.
|
|
308
|
+
* W3C [ODRL Information Model](https://www.w3.org/TR/odrl-model/) and W3C [ODRL Vocabulary & Expression](https://www.w3.org/TR/odrl-vocab/) to represent statements about the usage of content and services.
|
|
309
|
+
* [Memento](https://tools.ietf.org/html/rfc7089) for resource management, e.g., TimeMap.
|
|
310
|
+
* [Creative Commons](https://creativecommons.org/) to assign license to individual contributions and annotations.
|
|
311
|
+
* [Robust Links](http://robustlinks.mementoweb.org/) for hyperlinks (e.g., citations) and to show Link Decoration.
|
|
312
|
+
* [schema.org](http://schema.org/), [SPAR Ontologies](http://www.sparontologies.net/), [PROV-O](https://www.w3.org/TR/prov-o/), and various other vocabularies.
|
|
313
|
+
|
|
314
|
+
Dokieli can also be used from any spawned instance, e.g., https://dokie.li/ , https://csarven.ca/, or as a Web browser extension. See https://dokie.li/docs and https://github.com/linkeddata/dokieli/blob/main/README.md#specifications for further documentation on data conventions and lists of specifications (protocols and data models) that dokieli conforms to.
|
|
327
315
|
|
|
328
316
|
## Folder
|
|
329
317
|
|
package/lib/versionInfo.js
CHANGED
|
@@ -5,8 +5,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
5
5
|
});
|
|
6
6
|
exports["default"] = void 0;
|
|
7
7
|
var _default = exports["default"] = {
|
|
8
|
-
buildTime: "
|
|
9
|
-
commit: "
|
|
8
|
+
buildTime: "2024-03-25T15:49:48Z",
|
|
9
|
+
commit: "c6247c2540bcb6ba56714a0a58f81d6342f76c5a",
|
|
10
10
|
npmInfo: {
|
|
11
11
|
'solid-panes': '3.5.34',
|
|
12
12
|
npm: '8.19.4',
|
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: \"
|
|
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: \"2024-03-25T15:49:48Z\",\ncommit: \"c6247c2540bcb6ba56714a0a58f81d6342f76c5a\",\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
package/src/versionInfo.ts
CHANGED