diff --git a/.github/ISSUE_TEMPLATE/feature-request.md b/.github/ISSUE_TEMPLATE/feature-request.md
index fca4c3fec..ad470ed57 100644
--- a/.github/ISSUE_TEMPLATE/feature-request.md
+++ b/.github/ISSUE_TEMPLATE/feature-request.md
@@ -9,5 +9,5 @@ assignees: ''
#### Feature description:
-
+
diff --git a/.github/ISSUE_TEMPLATE/question.md b/.github/ISSUE_TEMPLATE/question.md
index 7add40a8a..642c2b892 100644
--- a/.github/ISSUE_TEMPLATE/question.md
+++ b/.github/ISSUE_TEMPLATE/question.md
@@ -9,5 +9,5 @@ assignees: ''
#### Question
-
+
diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md
index 666bccc70..90d45b008 100644
--- a/.github/PULL_REQUEST_TEMPLATE.md
+++ b/.github/PULL_REQUEST_TEMPLATE.md
@@ -1,7 +1,7 @@
#### 📁 Related issues
#### ✍️ Description
diff --git a/README.md b/README.md
index 63bca8c73..275677ee6 100644
--- a/README.md
+++ b/README.md
@@ -1,14 +1,14 @@
# Community Solid Server
-
+
-[](https://github.com/solid/community-server/blob/main/LICENSE.md)
+[](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/main/LICENSE.md)
[](https://www.npmjs.com/package/@solid/community-server)
[](https://www.npmjs.com/package/@solid/community-server)
-[](https://github.com/solid/community-server/actions)
-[](https://coveralls.io/github/solid/community-server)
-[](https://github.com/solid/community-server/discussions)
-[](https://gitter.im/solid/community-server)
+[](https://github.com/CommunitySolidServer/CommunitySolidServer/actions)
+[](https://coveralls.io/github/CommunitySolidServer/CommunitySolidServer)
+[](https://github.com/CommunitySolidServer/CommunitySolidServer/discussions)
+[](https://gitter.im/CommunitySolidServer/community)
**The Community Solid Server is open software
that provides you with a [Solid](https://solidproject.org/) Pod and identity.
@@ -62,7 +62,7 @@ If you rather prefer to run the latest source code version,
or if you want to try a specific [branch](https://www.npmjs.com/) of the code,
you can use:
```shell
-git clone https://github.com/solid/community-server.git
+git clone https://github.com/CommunitySolidServer/CommunitySolidServer.git
cd community-server
npm ci
npm start -- # add parameters if needed
@@ -73,7 +73,7 @@ Docker allows you to run the server without having Node.js installed. Images are
```shell
# Clone the repo to get access to the configs
-git clone https://github.com/solid/community-server.git
+git clone https://github.com/CommunitySolidServer/CommunitySolidServer.git
cd community-server
# Run the image, serving your `~/Solid` directory on `http://localhost:3000`
docker run --rm -v ~/Solid:/data -p 3000:3000 -it solidproject/community-server:latest
@@ -125,29 +125,29 @@ The Community Solid Server uses [Components.js](https://componentsjs.readthedocs
to specify how modules and components need to be wired together at runtime.
Examples and guidance on configurations
-are available in the [`config` folder](https://github.com/solid/community-server/tree/main/config).
+are available in the [`config` folder](https://github.com/CommunitySolidServer/CommunitySolidServer/tree/main/config).
-Recipes for configuring the server can be found at [solid/community-server-recipes](https://github.com/solid/community-server-recipes).
+Recipes for configuring the server can be found at [CommunitySolidServer/recipes](https://github.com/CommunitySolidServer/recipes).
## 👩🏽💻 Developing server code
The server allows writing and plugging in custom modules
without altering its base source code.
-The [📗 API documentation](https://solid.github.io/community-server/docs/) and
+The [📗 API documentation](https://communitysolidserver.github.io/CommunitySolidServer/docs/) and
the [📐 architectural diagram](https://rubenverborgh.github.io/solid-server-architecture/solid-architecture-v1-3-0.pdf)
can help you find your way.
If you want to help out with server development,
-have a look at the [📓 developer notes](https://github.com/solid/community-server/blob/main/guides/developer-notes.md) and
-[🛠️ good first issues](https://github.com/solid/community-server/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
+have a look at the [📓 developer notes](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/main/guides/developer-notes.md) and
+[🛠️ good first issues](https://github.com/CommunitySolidServer/CommunitySolidServer/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22).
## 📜 License
The Solid Community Server code
is copyrighted by [Inrupt Inc.](https://inrupt.com/)
and [imec](https://www.imec-int.com/)
-and available under the [MIT License](https://github.com/solid/community-server/blob/main/LICENSE.md).
+and available under the [MIT License](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/main/LICENSE.md).
Core contributors are
[Joachim Van Herwegen](https://github.com/joachimvh),
@@ -158,7 +158,7 @@ and
## 🎤 Feedback and questions
-Don't hesitate to [start a discussion](https://github.com/solid/community-server/discussions)
-or [report a bug](https://github.com/solid/community-server/issues).
+Don't hesitate to [start a discussion](https://github.com/CommunitySolidServer/CommunitySolidServer/discussions)
+or [report a bug](https://github.com/CommunitySolidServer/CommunitySolidServer/issues).
Learn more about Solid at [solidproject.org](https://solidproject.org/).
diff --git a/guides/custom-configurations.md b/guides/custom-configurations.md
index 9c9298ede..dc5f9966b 100644
--- a/guides/custom-configurations.md
+++ b/guides/custom-configurations.md
@@ -1,6 +1,6 @@
By default, the server will start with a set of preconfigured components.
-These components are configured in [`config/default.json`](https://github.com/solid/community-server/tree/master/config/default.json).
-Learn more about the structure of this config file in the [notes for developers](https://github.com/solid/community-server/wiki/Notes-for-developers#add-components-to-configuration).
+These components are configured in [`config/default.json`](https://github.com/CommunitySolidServer/CommunitySolidServer/tree/master/config/default.json).
+Learn more about the structure of this config file in the [notes for developers](https://github.com/CommunitySolidServer/CommunitySolidServer/wiki/Notes-for-developers#add-components-to-configuration).
## Local development environment
@@ -25,4 +25,4 @@ TODO: after making a first release, write a guide on how to create a custom conf
## Including the server as dependency in another package.
-TODO: after making a first release, write a guide on how to create a custom config for it when it is included as a dependency in another package.
\ No newline at end of file
+TODO: after making a first release, write a guide on how to create a custom config for it when it is included as a dependency in another package.
diff --git a/guides/developer-notes.md b/guides/developer-notes.md
index 763e39d41..494086aec 100644
--- a/guides/developer-notes.md
+++ b/guides/developer-notes.md
@@ -27,8 +27,8 @@ The advantage of this is that changing the configuration of components does not
### Config file structure
In order to add a component to the default configuration,
-you will have to update [`config/default.json`](https://github.com/solid/community-server/tree/master/config/default.json),
-or any of its _imported_ files, which exist in the [`config subfolders`](https://github.com/solid/community-server/tree/master/config/).
+you will have to update [`config/default.json`](https://github.com/CommunitySolidServer/CommunitySolidServer/tree/master/config/default.json),
+or any of its _imported_ files, which exist in the [`config subfolders`](https://github.com/CommunitySolidServer/CommunitySolidServer/tree/master/config/).
A component in a configuration file has the following structure:
```json
diff --git a/package.json b/package.json
index e9a724868..862cb1a17 100644
--- a/package.json
+++ b/package.json
@@ -33,11 +33,11 @@
"bin": {
"community-solid-server": "bin/server.js"
},
- "repository": "git@github.com:solid/community-server.git",
+ "repository": "git@github.com:CommunitySolidServer/CommunitySolidServer.git",
"bugs": {
- "url": "https://github.com/solid/community-server/issues"
+ "url": "https://github.com/CommunitySolidServer/CommunitySolidServer/issues"
},
- "homepage": "https://github.com/solid/community-server#readme",
+ "homepage": "https://github.com/CommunitySolidServer/CommunitySolidServer#readme",
"scripts": {
"build": "npm run build:ts && npm run build:components",
"build:components": "componentsjs-generator -s src -c dist/components -r scs -i .componentsignore --typeScopedContexts",
diff --git a/src/http/ldp/PatchOperationHandler.ts b/src/http/ldp/PatchOperationHandler.ts
index e17a3da6d..31950d3c3 100644
--- a/src/http/ldp/PatchOperationHandler.ts
+++ b/src/http/ldp/PatchOperationHandler.ts
@@ -38,7 +38,7 @@ export class PatchOperationHandler extends OperationHandler {
throw new BadRequestHttpError('PATCH requests require the Content-Type header to be set');
}
// A more efficient approach would be to have the server return metadata indicating if a resource was new
- // See https://github.com/solid/community-server/issues/632
+ // See https://github.com/CommunitySolidServer/CommunitySolidServer/issues/632
// RFC7231, §4.3.4: If the target resource does not have a current representation and the
// PUT successfully creates one, then the origin server MUST inform the
// user agent by sending a 201 (Created) response.
diff --git a/src/http/ldp/PutOperationHandler.ts b/src/http/ldp/PutOperationHandler.ts
index deb25c221..6327d24bf 100644
--- a/src/http/ldp/PutOperationHandler.ts
+++ b/src/http/ldp/PutOperationHandler.ts
@@ -37,7 +37,7 @@ export class PutOperationHandler extends OperationHandler {
throw new BadRequestHttpError('PUT requests require the Content-Type header to be set');
}
// A more efficient approach would be to have the server return metadata indicating if a resource was new
- // See https://github.com/solid/community-server/issues/632
+ // See https://github.com/CommunitySolidServer/CommunitySolidServer/issues/632
const exists = await this.store.resourceExists(operation.target, operation.conditions);
await this.store.setRepresentation(operation.target, operation.body, operation.conditions);
if (exists) {
diff --git a/src/identity/configuration/IdentityProviderFactory.ts b/src/identity/configuration/IdentityProviderFactory.ts
index 93b5545ac..1c206812c 100644
--- a/src/identity/configuration/IdentityProviderFactory.ts
+++ b/src/identity/configuration/IdentityProviderFactory.ts
@@ -209,7 +209,7 @@ export class IdentityProviderFactory implements ProviderFactory {
private configureClaims(config: Configuration): void {
// Returns the id_token
// See https://solid.github.io/authentication-panel/solid-oidc/#tokens-id
- // Some fields are still missing, see https://github.com/solid/community-server/issues/1154#issuecomment-1040233385
+ // Some fields are still missing, see https://github.com/CommunitySolidServer/CommunitySolidServer/issues/1154#issuecomment-1040233385
config.findAccount = async(ctx: KoaContextWithOIDC, sub: string): Promise
You are warmly invited - to share your experiences - and to report any bugs you encounter. + to share your experiences + and to report any bugs you encounter.