Skip to content

Commit

Permalink
fix: broken links after engine wiki to docsify migration (#227)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
jdrueckert authored Nov 14, 2023
1 parent a765855 commit 88cd702
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Our custom source plugin fetches information from GitHub, and therefore needs a

> 🧰 Access Tokens in CI
>
> 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:
> 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:
> * the token required for the custom source plugin does not require additional scopes, which means you can skip step 2
> * 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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Let's end this post with a teaser for a TeraSpotlight post about our recent comm
[aseprite]: https://www.aseprite.org/
[terasology/flyingislands]: https://github.com/Terasology/FlyingIslands
[terasology/fallingblocks]: https://github.com/Terasology/FallingBlocks
[terasology wiki]: https://github.com/MovingBlocks/Terasology/wiki
[terasology wiki]: https://terasology.org/Terasology/#/
[movingblocks/terasology]: https://github.com/MovingBlocks/Terasology
[movingblocks/gestalt]: https://github.com/MovingBlocks/gestalt
[movingblocks/teranui]: https://github.com/MovingBlocks/TeraNUI
Expand Down
2 changes: 1 addition & 1 deletion blog/2023-04-22-waking-up-from-hibernation/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ It's not a hard task and I've done it uncountable times before, but not everybod
To bring my Iota workspace up to speed I used the `groovyw` utility tool that is shipped with the engine repository.
You can run it easily via the provided wrapper scripts, that is `./groovyw` on Linux or `./groovyw.bat` on Windows.
It comes in handy to initialize a workspace with a specific set of modules, fetch additional modules, or update everything via git.
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.
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.

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

Expand Down
20 changes: 10 additions & 10 deletions src/pages/contribute.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,15 @@ function GettingStarted({ data }) {
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Contributor-Quick-Start"
href="https://terasology.org/Terasology/#/Contributor-Quick-Start"
>
Contributor Quick Start
</a>
</li>
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Terasology's-Multi-Repo-Workspace"
href="https://terasology.org/Terasology/#/Multi-Repo-Workspace"
>
Multi-Repo Workspace
</a>
Expand Down Expand Up @@ -175,7 +175,7 @@ function GettingStarted({ data }) {
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Code-Conventions"
href="https://terasology.org/Terasology/#/Code-Conventions"
>
Code Style Conventions
</a>
Expand All @@ -191,7 +191,7 @@ function GettingStarted({ data }) {
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/blob/develop/docs/CODE_OF_CONDUCT.md"
href="https://github.com/MovingBlocks/Terasology/blob/develop/.github/CODE_OF_CONDUCT.md"
>
Code of Conduct
</a>
Expand All @@ -214,7 +214,7 @@ function GettingStarted({ data }) {
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Entity-System-Architecture"
href="https://terasology.org/Terasology/#/Entity-System-Architecture"
>
Entity Component System (ECS)
</a>
Expand Down Expand Up @@ -253,31 +253,31 @@ function GettingStarted({ data }) {
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Developing-Modules"
href="https://terasology.org/Terasology/#/Developing-Modules"
>
Developing Modules
</a>
</li>
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Testing-Modules"
href="https://terasology.org/Terasology/#/Testing-Modules"
>
Testing Modules
</a>
</li>
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Module-Dependencies"
href="https://terasology.org/Terasology/#/Module-Dependencies"
>
Module Dependencies
</a>
</li>
<li>
<a
className="text-success"
href="https://github.com/Terasology/TutorialWorldGeneration/wiki"
href="https://terasology.github.io/TutorialWorldGeneration/#/tutorial/"
>
World Generation Tutorial
</a>
Expand Down Expand Up @@ -310,7 +310,7 @@ function GettingStarted({ data }) {
<li>
<a
className="text-success"
href="https://github.com/MovingBlocks/Terasology/wiki/Serialization-Overview"
href="https://terasology.org/Terasology/#/Serialization-Overview"
>
Serialization
</a>
Expand Down

0 comments on commit 88cd702

Please sign in to comment.