Skip to content

Commit e90982d

Browse files
committed
Fix URLs still pointing to v6
1 parent 002768b commit e90982d

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

custom-configurations.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ that contains the feature you want to change.
130130
Chances are that configuration will contain the definition of the component you want to change.
131131
In case there is no clear answer in there because there are many components, and you are not sure which one to edit,
132132
or it is not clear what the parameters of a component do,
133-
the [architecture](https://communitysolidserver.github.io/CommunitySolidServer/6.x/architecture/overview/)
134-
or [API](https://communitysolidserver.github.io/CommunitySolidServer/6.x/docs/)
133+
the [architecture](https://communitysolidserver.github.io/CommunitySolidServer/7.x/architecture/overview/)
134+
or [API](https://communitysolidserver.github.io/CommunitySolidServer/7.x/docs/)
135135
documentation might provide further information.
136136

137137
Below are some examples showing how you could discover where you need to make changes.
@@ -145,7 +145,7 @@ Let's look at the use case of changing the timeout of the locking system.
145145
One of the clusters in the example above is `"css:config/util/resource-locker/file.json"`,
146146
which determines that the server will use a file-based locking system.
147147
If we have a look at this
148-
[file](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v6.0.0/config/util/resource-locker/file.json)
148+
[file](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v7.0.0/config/util/resource-locker/file.json)
149149
we see the following (some parts cut for brevity):
150150

151151
```json
@@ -179,7 +179,7 @@ to have a full understanding of what is going on in this file,
179179
but we'll provide a short summary here which should help you along.
180180
Every `@type` field corresponds to a TypeScript class in the CSS project.
181181
`WrappedExpiringReadWriteLocker` is a class for which you can find the
182-
[source code](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v6.0.0/src/util/locking/WrappedExpiringReadWriteLocker.ts)
182+
[source code](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v7.0.0/src/util/locking/WrappedExpiringReadWriteLocker.ts)
183183
in the CSS repository.
184184
A block with this field in it will tell Components.js that it should create an instance of this class if it finds it.
185185
The `@id` field is a unique identifier that we create, so we can reference this instance in different locations.
@@ -192,7 +192,7 @@ All the other values are parameters for the constructor of the class (except for
192192
Now to get back to how we find the component we want to edit.
193193
There are several components here, but one of them is of a locker type, has a description saying it is used for locks,
194194
and, most importantly, has an `expiration` parameter.
195-
The [API documentation](https://communitysolidserver.github.io/CommunitySolidServer/6.x/docs/classes/WrappedExpiringReadWriteLocker.html)
195+
The [API documentation](https://communitysolidserver.github.io/CommunitySolidServer/7.x/docs/classes/WrappedExpiringReadWriteLocker.html)
196196
of this class also states
197197

198198
> Wraps around an existing ReadWriteLocker and adds expiration logic to prevent locks from getting stuck.
@@ -205,7 +205,7 @@ How to exactly do this we will show in the override section further below.
205205
To change the templates that are used during pod creation we use a similar tactic as in the locking example above.
206206
The default config has an import `"css:config/identity/pod/static.json"`,
207207
which determines how pods creation works.
208-
That [file](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v6.0.0/config/identity/pod/static.json)
208+
That [file](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v7.0.0/config/identity/pod/static.json)
209209
has the following contents:
210210

211211
```json
@@ -229,7 +229,7 @@ has the following contents:
229229
This does not seem to have anything related to the templates used, unfortunately.
230230
It does have an import though: `"css:config/identity/pod/resource-generators/templated.json"`.
231231
This means that
232-
[file]((https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v6.0.0/config/identity/pod/resource-generators/templated.json))
232+
[file](https://github.com/CommunitySolidServer/CommunitySolidServer/blob/v7.0.0/config/identity/pod/resource-generators/templated.json)
233233
is also related to the pod management cluster.
234234
It contains the following data:
235235

0 commit comments

Comments
 (0)