Aaron Coburn
Aaron Coburn
@rimmartin I would suggest you look into [direct containers](https://www.w3.org/TR/ldp/#ldpdc). They provide a weaker sort of membership than basic containers do. NSS does not support direct containment, but it is also...
@dependabot merge
Just a point of clarification: the webac:Acl type (i.e. on the parent of the acl:Authorization nodes) isn't strictly necessary. At least, the Fedora WebAC module doesn't require it. That is,...
Aligning representations of document and container resources with REST via single and compound state
I realize that Solid doesn't require LDP, but for LDP servers that implement Solid, the initial `PUT` to `/beep` creates an `ldp:RDFSource`. The second `PUT` to `/beep` appears to attempt...
I wrote the initial WAC implementation for [Fedora](https://github.com/fcrepo/fcrepo) circa 2015 -- there are many differences between this and the Solid implementation though it is based on the ACL ontology. I...
Furthermore, when creating a Direct Container whose membership resource is a self-referential hash URI (e.g. the DC is `http://localhost:8000/ldp/dc` and the membership resource is `http://localhost:8000/ldp/dc#it`), POSTing a child resource returns...
Just noting that the wrapped PoP token is something that is changing with the new webid-oidc specification. The new mechanism will make use of [DPoP](https://tools.ietf.org/html/draft-fett-oauth-dpop-03). Effectively, this means that a...
The new mechanism is in the process of being formalized within the [Authentication panel](https://github.com/solid/authentication-panel), but you can see the current state of the [proposal](https://github.com/solid/authentication-panel/blob/master/oidc-authentication.md). The pull requests on that repo...
Worth noting that it is not sufficient to match _only_ against the `kid` value. The `kty` value also needs to match. I have encountered OPs in the wild with multiple...
The [former solid-spec](https://github.com/solid/solid-spec/blob/master/api-websockets.md#solid-websockets-api-spec) repository describes using the following subprotocol when connecting to a WebSocket server: `solid/0.1.0-alpha`. For example: ``` const socket = new WebSocket('wss://example.org', ['solid/0.1.0-alpha']); ``` However, Chrome browsers do...