From 75d243fbadeadbccf18104207a1eeb598f0a42b5 Mon Sep 17 00:00:00 2001 From: Julien Richard-Foy Date: Tue, 6 Jun 2023 11:59:40 +0200 Subject: [PATCH] Fix redirections from old URLs --- docs/_docs/contributing/debugging/debugging.md | 2 +- docs/_docs/contributing/debugging/inspection.md | 2 +- docs/_docs/contributing/issues/areas.md | 1 + docs/_docs/contributing/issues/cause.md | 1 + docs/_docs/contributing/issues/reproduce.md | 1 + docs/_docs/contributing/sending-in-a-pr.md | 2 +- docs/_docs/contributing/testing.md | 2 +- 7 files changed, 7 insertions(+), 4 deletions(-) diff --git a/docs/_docs/contributing/debugging/debugging.md b/docs/_docs/contributing/debugging/debugging.md index 3ddbde2244e8..5035620a45aa 100644 --- a/docs/_docs/contributing/debugging/debugging.md +++ b/docs/_docs/contributing/debugging/debugging.md @@ -1,7 +1,7 @@ --- layout: doc-page title: Debugging the Compiler -redirectFrom: /docs/contributing/issues/debugging.html +redirectFrom: /docs/contributing/workflow/debugging.html --- This section goes over the various ways to debug either the compiler or the code diff --git a/docs/_docs/contributing/debugging/inspection.md b/docs/_docs/contributing/debugging/inspection.md index 5fae454b9720..a80c3d3462ae 100644 --- a/docs/_docs/contributing/debugging/inspection.md +++ b/docs/_docs/contributing/debugging/inspection.md @@ -1,7 +1,7 @@ --- layout: doc-page title: How to Inspect Values -redirectFrom: /docs/contributing/issues/inspection.html +redirectFrom: /docs/contributing/workflow/inspection.html --- In this section, you will find out how to debug the contents of certain objects diff --git a/docs/_docs/contributing/issues/areas.md b/docs/_docs/contributing/issues/areas.md index 4f9adf79ba77..ce27e9c0a5aa 100644 --- a/docs/_docs/contributing/issues/areas.md +++ b/docs/_docs/contributing/issues/areas.md @@ -1,6 +1,7 @@ --- layout: doc-page title: Common Issue Locations +redirectFrom: /docs/contributing/workflow/areas.html --- Many issues are localised to small domains of the compiler and are self-contained, diff --git a/docs/_docs/contributing/issues/cause.md b/docs/_docs/contributing/issues/cause.md index 10c29dc0c398..002dd69135f0 100644 --- a/docs/_docs/contributing/issues/cause.md +++ b/docs/_docs/contributing/issues/cause.md @@ -1,6 +1,7 @@ --- layout: doc-page title: Finding the Cause of an Issue +redirectFrom: /docs/contributing/workflow/cause.html --- In this section, you will be able to answer questions such as: diff --git a/docs/_docs/contributing/issues/reproduce.md b/docs/_docs/contributing/issues/reproduce.md index 3d15d4bfb6ec..7d04e6794ed2 100644 --- a/docs/_docs/contributing/issues/reproduce.md +++ b/docs/_docs/contributing/issues/reproduce.md @@ -1,6 +1,7 @@ --- layout: doc-page title: Reproducing an Issue +redirectFrom: /docs/contributing/workflow/reproduce.html --- The first step is to reproduce the issue you're trying to fix. Say you want to diff --git a/docs/_docs/contributing/sending-in-a-pr.md b/docs/_docs/contributing/sending-in-a-pr.md index 543073ab86eb..e6e15406606e 100644 --- a/docs/_docs/contributing/sending-in-a-pr.md +++ b/docs/_docs/contributing/sending-in-a-pr.md @@ -1,7 +1,7 @@ --- layout: doc-page title: Sending in a pull request -redirectFrom: /docs/contributing/issues/checklist.html +redirectFrom: /docs/contributing/workflow/checklist.html --- Once you solved the issue you were working on, you'll likely want to see your diff --git a/docs/_docs/contributing/testing.md b/docs/_docs/contributing/testing.md index 0e30f86608fe..1ed24423b704 100644 --- a/docs/_docs/contributing/testing.md +++ b/docs/_docs/contributing/testing.md @@ -1,7 +1,7 @@ --- layout: doc-page title: Testing Your Changes -redirectFrom: /docs/contributing/issues/testing.html +redirectFrom: /docs/contributing/workflow/testing.html --- It is important to add tests before a pull request, to verify that everything is working as expected,