Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ARCHITECTURE.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ general concepts in solid-client; documentation about those can be found at the
following Resources:

- General documentation:
https://docs.inrupt.com/developer-tools/javascript/client-libraries/using-libraries/
https://docs.inrupt.com/sdk/javascript-sdkusing-libraries/
- Glossary:
https://docs.inrupt.com/developer-tools/javascript/client-libraries/reference/glossary/
https://docs.inrupt.com/sdk/javascript-sdkreference/glossary/

It can also be insightful to use `git blame` liberally. We've generally kept
fairly good Git hygiene, so reading the commit that introduced some code can be
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ the browser](https://www.npmjs.com/package/@inrupt/solid-client-authn-browser).
The security policy for these libraries is available in the associated [GitHub repository](https://github.com/inrupt/solid-client-authn-js/blob/main/SECURITY.md).

This library also exposes functions to modify data access permissions. We
strive to make the API and [documentation](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/manage-access/)
strive to make the API and [documentation](https://docs.inrupt.com/sdk/javascript-sdktutorial/manage-access/)
as clear and intuitive as possible, because misuse of these functions may result
in exposing data beyond what is intended. Please do open an
[issue](https://github.com/inrupt/solid-client-js/issues) if you face difficulties
Expand Down
2 changes: 1 addition & 1 deletion src/acp/ess2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* them will be included in your bundle.
*
* For more information see: [Tutorial: Managing
* Access](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/manage-access/)
* Access](https://docs.inrupt.com/sdk/javascript-sdktutorial/manage-access/)
* :::
*
* This module supports Inrupt's ESS 2.0 ACP implementation.
Expand Down
8 changes: 4 additions & 4 deletions src/resource/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function containsReserved(header: Record<string, string>): boolean {
* ```
*
* For additional examples, see
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#retrieve-a-file).
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#retrieve-a-file).
*
* @param fileUrl The URL of the file to return
* @param options Fetching options: a custom fetcher and/or headers.
Expand Down Expand Up @@ -119,7 +119,7 @@ export async function getFile(
* ```
*
* For additional examples, see
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#delete-a-file).
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#delete-a-file).
*
* @param file The URL of the file to delete or the file itself (if it has ResourceInfo).
*/
Expand Down Expand Up @@ -176,7 +176,7 @@ type SaveFileOptions = WriteFileOptions & {
* ```
*
* For additional example, see
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#save-a-file-into-an-existing-container).
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#save-a-file-into-an-existing-container).
*
* In the `options` parameter,
*
Expand Down Expand Up @@ -285,7 +285,7 @@ export type WriteFileOptions = GetFileOptions & {
* ```
*
* For additional example, see
* [Read/Write Files](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/read-write-files/#write-a-file-to-a-specific-url).
* [Read/Write Files](https://docs.inrupt.com/sdk/javascript-sdktutorial/read-write-files/#write-a-file-to-a-specific-url).
*
* *Recommended:* In the `options` parameter, you can specify the
* [media type](https://developer.mozilla.org/en-US/docs/Glossary/MIME_type)
Expand Down
2 changes: 1 addition & 1 deletion src/resource/solidDataset.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ async function prepareSolidDatasetCreation(
* the changelog tracks both the old value and new values of the property being modified. This
* function applies the changes to the current SolidDataset. If the old value specified in the
* changelog does not correspond to the value currently in the Pod, this function will throw an
* error (common issues are listed in [the documentation](https://docs.inrupt.com/developer-tools/javascript/client-libraries/reference/error-codes/)).
* error (common issues are listed in [the documentation](https://docs.inrupt.com/sdk/javascript-sdkreference/error-codes/)).
*
* The SolidDataset returned by this function will contain the data sent to the Pod, and a ChangeLog
* up-to-date with the saved data. Note that if the data on the server was modified in between the
Expand Down
2 changes: 1 addition & 1 deletion src/universal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* applications.
*
* For more information see: [Tutorial: Managing
* Access](https://docs.inrupt.com/developer-tools/javascript/client-libraries/tutorial/manage-access/)
* Access](https://docs.inrupt.com/sdk/javascript-sdktutorial/manage-access/)
* :::
*
* This module can be imported as an object from the main package, which results
Expand Down
Loading