Skip to content

Commit 88cd702

Browse files
authored
fix: broken links after engine wiki to docsify migration (#227)
* fix: links on contribute page after engine wiki migration to docsify * fix: link to maintenance docs * fix: engine wiki references in blog posts * chore: use https instead of http
1 parent a765855 commit 88cd702

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ Our custom source plugin fetches information from GitHub, and therefore needs a
127127

128128
> 🧰 Access Tokens in CI
129129
>
130-
> If the token expires, you can follow the ["How to fix an expired GitHub Action token"](https://github.com/MovingBlocks/Terasology/wiki/Maintenance#how-to-fix-an-expired-github-action-token) instructions with the following adjustments:
130+
> If the token expires, you can follow the ["How to fix an expired GitHub Action token"](https://terasology.org/Terasology/#/Maintenance?id=how-to-fix-an-expired-github-action-token) instructions with the following adjustments:
131131
> * the token required for the custom source plugin does not require additional scopes, which means you can skip step 2
132132
> * steps 4 and 5 should be performed in the [repository settings for actions] and in the [repository settings for dependabot] on the respective `MODULE_FETCH_GITHUB_TOKEN` secrets
133133

blog/2021-03-20-terasaturday-12-whatever-floats-your-island/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Let's end this post with a teaser for a TeraSpotlight post about our recent comm
131131
[aseprite]: https://www.aseprite.org/
132132
[terasology/flyingislands]: https://github.com/Terasology/FlyingIslands
133133
[terasology/fallingblocks]: https://github.com/Terasology/FallingBlocks
134-
[terasology wiki]: https://github.com/MovingBlocks/Terasology/wiki
134+
[terasology wiki]: https://terasology.org/Terasology/#/
135135
[movingblocks/terasology]: https://github.com/MovingBlocks/Terasology
136136
[movingblocks/gestalt]: https://github.com/MovingBlocks/gestalt
137137
[movingblocks/teranui]: https://github.com/MovingBlocks/TeraNUI

blog/2023-04-22-waking-up-from-hibernation/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ It's not a hard task and I've done it uncountable times before, but not everybod
2929
To bring my Iota workspace up to speed I used the `groovyw` utility tool that is shipped with the engine repository.
3030
You can run it easily via the provided wrapper scripts, that is `./groovyw` on Linux or `./groovyw.bat` on Windows.
3131
It comes in handy to initialize a workspace with a specific set of modules, fetch additional modules, or update everything via git.
32-
Our [Contributor Quick Start Guide](https://github.com/MovingBlocks/Terasology/wiki/Contributor-Quick-Start#set-up-your-terasology-development-workspace) also references it for the initial setup.
32+
Our [Contributor Quick Start Guide](https://terasology.org/Terasology/#/Contributor-Quick-Start?id=set-up-your-terasology-development-workspace) also references it for the initial setup.
3333

3434
But today I'm only interested in updating all my modules in the workspace.
3535

src/pages/contribute.jsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -135,15 +135,15 @@ function GettingStarted({ data }) {
135135
<li>
136136
<a
137137
className="text-success"
138-
href="https://github.com/MovingBlocks/Terasology/wiki/Contributor-Quick-Start"
138+
href="https://terasology.org/Terasology/#/Contributor-Quick-Start"
139139
>
140140
Contributor Quick Start
141141
</a>
142142
</li>
143143
<li>
144144
<a
145145
className="text-success"
146-
href="https://github.com/MovingBlocks/Terasology/wiki/Terasology's-Multi-Repo-Workspace"
146+
href="https://terasology.org/Terasology/#/Multi-Repo-Workspace"
147147
>
148148
Multi-Repo Workspace
149149
</a>
@@ -175,7 +175,7 @@ function GettingStarted({ data }) {
175175
<li>
176176
<a
177177
className="text-success"
178-
href="https://github.com/MovingBlocks/Terasology/wiki/Code-Conventions"
178+
href="https://terasology.org/Terasology/#/Code-Conventions"
179179
>
180180
Code Style Conventions
181181
</a>
@@ -191,7 +191,7 @@ function GettingStarted({ data }) {
191191
<li>
192192
<a
193193
className="text-success"
194-
href="https://github.com/MovingBlocks/Terasology/blob/develop/docs/CODE_OF_CONDUCT.md"
194+
href="https://github.com/MovingBlocks/Terasology/blob/develop/.github/CODE_OF_CONDUCT.md"
195195
>
196196
Code of Conduct
197197
</a>
@@ -214,7 +214,7 @@ function GettingStarted({ data }) {
214214
<li>
215215
<a
216216
className="text-success"
217-
href="https://github.com/MovingBlocks/Terasology/wiki/Entity-System-Architecture"
217+
href="https://terasology.org/Terasology/#/Entity-System-Architecture"
218218
>
219219
Entity Component System (ECS)
220220
</a>
@@ -253,31 +253,31 @@ function GettingStarted({ data }) {
253253
<li>
254254
<a
255255
className="text-success"
256-
href="https://github.com/MovingBlocks/Terasology/wiki/Developing-Modules"
256+
href="https://terasology.org/Terasology/#/Developing-Modules"
257257
>
258258
Developing Modules
259259
</a>
260260
</li>
261261
<li>
262262
<a
263263
className="text-success"
264-
href="https://github.com/MovingBlocks/Terasology/wiki/Testing-Modules"
264+
href="https://terasology.org/Terasology/#/Testing-Modules"
265265
>
266266
Testing Modules
267267
</a>
268268
</li>
269269
<li>
270270
<a
271271
className="text-success"
272-
href="https://github.com/MovingBlocks/Terasology/wiki/Module-Dependencies"
272+
href="https://terasology.org/Terasology/#/Module-Dependencies"
273273
>
274274
Module Dependencies
275275
</a>
276276
</li>
277277
<li>
278278
<a
279279
className="text-success"
280-
href="https://github.com/Terasology/TutorialWorldGeneration/wiki"
280+
href="https://terasology.github.io/TutorialWorldGeneration/#/tutorial/"
281281
>
282282
World Generation Tutorial
283283
</a>
@@ -310,7 +310,7 @@ function GettingStarted({ data }) {
310310
<li>
311311
<a
312312
className="text-success"
313-
href="https://github.com/MovingBlocks/Terasology/wiki/Serialization-Overview"
313+
href="https://terasology.org/Terasology/#/Serialization-Overview"
314314
>
315315
Serialization
316316
</a>

0 commit comments

Comments
 (0)