Joseph Guillaume
Joseph Guillaume
The intended behaviour with restorePreviousSession is to receive an access_token (default ttl 60min) and a refresh_token (ttl 24h) with prompt=none rather than prompt=consent. As discussed at https://github.com/solid/community-server/issues/909, deviating from prompt=consent...
The problem I ran into was that fetch was always sending `Accept=*/*`, which meant I was receiving html instead of ttl. I traced this to the statement https://github.com/linkeddata/rdflib.js/blob/14c93f5cd18fd4658561f243c2f4b3f33a9216df/src/fetcher.ts#L1045 Apparently for...
`serialize` currently outputs quads that use long literals, but the spec apparently does not permit this: `Literals may not contain the characters ", LF, or CR.` https://www.w3.org/TR/n-quads/#h3_sec-literals This breaks compatibility...
On error, `callback` is called (https://github.com/linkeddata/rdflib.js/blob/master/src/jsonldparser.js#L97) but this is actually `executeCallback` (https://github.com/linkeddata/rdflib.js/blob/master/src/parse.ts#L55), which does not do any error handling (https://github.com/linkeddata/rdflib.js/blob/master/src/parse.ts#L81) It appears the fix is to simple delete `.catch(callback)` to...
It is possible for a single class to be assigned multiple forms with ui:creationForm or ui:annotationForm A permanent solution probably requires either a mechanism to give the user a choice,...
When using `ui:Multiple`, currently a new object is created and linked to the subject with the specified `ui:property`. https://github.com/solid/solid-ui/blob/c4ad302f361cc4a1de24941a475cb66333c43805/src/widgets/forms.js#L273 The form to use for the new object is then specified...
In the issue-pane, it is currently possible for a category to have an undefined value, which then means it doesn't show up in the table view. This occurs because the...
As noted on solid-auth-client https://github.com/solid/solid-auth-client/issues/151, Chrome is requiring third party cookies to be set with `SameSite=None` and `Secure`. While this setting is not yet active on desktop, it is active...
This relates to form registration, so maybe there's a different solution. At the moment the form needs to be loaded in the store to render correctly, e.g. with the form...
I tried to use `solid-auth-client.bundle.js` to add solid to an existing website that uses Content Security Policy and ran into the error: `EvalError: Refused to evaluate a string as JavaScript...