From d7797de4bd7075ef30cbb0920985b221d9f87dcd Mon Sep 17 00:00:00 2001 From: Mattias Kindborg Date: Thu, 16 Jan 2025 15:37:12 +0100 Subject: [PATCH] wip --- build_redirects.py | 70 +++++++++++++++++++ docs/acap-sdk-version-3/api/index.md | 1 + .../application-project-structure.md | 1 + .../build-install-and-run-the-application.md | 1 + .../develop-using-visual-studio-code.md | 1 + .../develop-applications/index.md | 1 + .../reproducible-builds.md | 1 + .../supported-languages.md | 1 + .../vapix-access-for-acap-applications.md | 1 + .../acap-development-requirements.md | 1 + .../get-started/compatibility.md | 1 + .../get-started/find-out-which-sdk-to-use.md | 1 + docs/acap-sdk-version-3/get-started/index.md | 1 + .../get-started/set-up-and-verify-the-sdk.md | 1 + .../get-started/set-up-the-device.md | 1 + docs/acap-sdk-version-3/index.md | 1 + docs/acap-sdk-version-3/introduction/index.md | 1 + .../more-resources/index.md | 1 + .../acap-service-portal-for-administrators.md | 1 + ...cept-or-deny-unsigned-acap-applications.md | 1 + .../services-for-partners/index.md | 1 + .../services-for-partners/package-signing.md | 1 + .../what-is-new-in-acap-sdk/index.md | 1 + docs/api/beta-api.md | 1 + docs/api/computer-vision-sdk-apis.md | 1 + docs/api/index.md | 1 + docs/api/native-sdk-api.md | 1 + docs/axis-devices-and-compatibility/index.md | 1 + docs/cloud-integrations/index.md | 1 + docs/computer-vision-on-device/index.md | 1 + .../build-install-run.md | 1 + .../camera-calibration.md | 1 + .../include-third-party-libraries.md | 1 + docs/develop-container-applications/index.md | 1 + .../supported-languages.md | 1 + .../web-server-via-reverse-proxy.md | 1 + .../VAPIX-access-for-ACAP-applications.md | 1 + docs/develop/application-project-structure.md | 1 + docs/develop/build-install-run.md | 1 + docs/develop/camera-calibration.md | 1 + docs/develop/include-third-party-libraries.md | 1 + docs/develop/index.md | 1 + docs/develop/manifest-schemas/index.md | 1 + .../schema-field-descriptions-v1.0.md | 1 + .../schema-field-descriptions-v1.1.md | 1 + .../schema-field-descriptions-v1.2.md | 1 + .../schema-field-descriptions-v1.3.1.md | 1 + .../schema-field-descriptions-v1.3.md | 1 + .../schema-field-descriptions-v1.4.0.md | 1 + .../schema-field-descriptions-v1.5.0.md | 1 + .../schema-field-descriptions-v1.6.0.md | 1 + .../schema-field-descriptions-v1.7.0.md | 1 + .../schema-field-descriptions-v1.7.1.md | 1 + .../schema-field-descriptions-v1.7.2.md | 1 + docs/develop/proxy.md | 1 + docs/develop/setting-up-visual-studio-code.md | 1 + docs/develop/supported-languages.md | 1 + docs/develop/user-selection.md | 1 + docs/develop/web-server-via-reverse-proxy.md | 1 + docs/faq/deployment.md | 1 + docs/faq/index.md | 1 + docs/faq/machine-learning.md | 1 + docs/faq/security.md | 1 + docs/get-help-and-give-feedback/index.md | 1 + docs/get-started/hello-world-example.md | 1 + docs/get-started/index.md | 1 + .../set-up-developer-environment/index.md | 1 + .../pre-requisites.md | 1 + .../set-up-device-advanced.md | 1 + .../set-up-device.md | 1 + docs/introduction/acap-examples.md | 1 + docs/introduction/acap-sdk-overview.md | 1 + docs/introduction/acap-version-comparison.md | 1 + docs/introduction/index.md | 1 + docs/introduction/version-history.md | 1 + docs/introduction/what-is-acap.md | 1 + docs/licenses/index.md | 1 + docs/release-notes/12.0.md | 1 + docs/release-notes/12.1.md | 1 + docs/release-notes/4.0.md | 1 + docs/release-notes/4.0_beta1.md | 1 + docs/release-notes/4.1.md | 1 + docs/release-notes/4.10.md | 1 + docs/release-notes/4.11.md | 1 + docs/release-notes/4.12.md | 1 + docs/release-notes/4.13.md | 1 + docs/release-notes/4.14.md | 1 + docs/release-notes/4.15.md | 1 + docs/release-notes/4.2.md | 1 + docs/release-notes/4.3.md | 1 + docs/release-notes/4.4.md | 1 + docs/release-notes/4.5.md | 1 + docs/release-notes/4.6.md | 1 + docs/release-notes/4.7.md | 1 + docs/release-notes/4.8.md | 1 + docs/release-notes/4.9.md | 1 + docs/release-notes/index.md | 1 + docs/service/acap-application-signing.md | 1 + docs/service/acap-service-portal.md | 1 + docs/service/index.md | 1 + index.md | 1 + 101 files changed, 170 insertions(+) create mode 100644 build_redirects.py diff --git a/build_redirects.py b/build_redirects.py new file mode 100644 index 0000000..78f2a68 --- /dev/null +++ b/build_redirects.py @@ -0,0 +1,70 @@ +import os +import glob + +def find_files(directory): + pattern = os.path.join(directory, "**", "*.md") + return glob.glob(pattern, recursive=True) + +def add_frontmatter_config(file_path, config_key, config_value): + with open(file_path, "r") as file: + content = file.read() + + parts = content.split("---") + if len(parts) < 3: + raise ValueError("The file does not contain valid FrontMatter") + + frontmatter = parts[1].strip() + rest_of_content = "---".join(parts[2:]) + + frontmatter_lines = frontmatter.split("\n") + + key_exists = False + for i, line in enumerate(frontmatter_lines): + if line.startswith(f"{config_key}:"): + frontmatter_lines[i] = f"{config_key}: {config_value}" + key_exists = True + break + + if not key_exists: + frontmatter_lines.append(f"{config_key}: {config_value}") + + frontmatter = "\n".join(frontmatter_lines) + + updated_content = f"---\n{frontmatter}\n---{rest_of_content}" + + with open(file_path, "w") as file: + file.write(updated_content) + +files = find_files("./docs") +files.append("./index.md") + +for file in files: + relativePath = file.replace("./docs/", "").replace("./", "").replace("index.md", "").replace(".md", "") + + if (relativePath == "introduction/"): + relativePath = "introduction/what-is-acap" + + if (relativePath == "get-started/" or relativePath == "get-started/set-up-developer-environment/"): + relativePath = "get-started/set-up-developer-environment/pre-requisites" + + if (relativePath == "api/"): + relativePath = "api/native-sdk-api" + + if (relativePath == "service/"): + relativePath = "service/acap-service-portal" + + if (relativePath == "acap-sdk-version-3/"): + relativePath = "acap-sdk-version-3/introduction" + + if (relativePath == "acap-sdk-version-3/develop-applications/"): + relativePath = "acap-sdk-version-3/develop-applications/application-project-structure" + + if (relativePath == "acap-sdk-version-3/services-for-partners/"): + relativePath = "acap-sdk-version-3/services-for-partners/package-signing" + + if (relativePath == "licenses/"): + relativePath = "" + + url = f"http://localhost:3000/acap/{relativePath}" + + add_frontmatter_config(file, "redirect_to", url) \ No newline at end of file diff --git a/docs/acap-sdk-version-3/api/index.md b/docs/acap-sdk-version-3/api/index.md index 59cc3a4..5939a1a 100644 --- a/docs/acap-sdk-version-3/api/index.md +++ b/docs/acap-sdk-version-3/api/index.md @@ -3,6 +3,7 @@ layout: acap_sdk_version_3 parent: ACAP SDK version 3 title: API nav_order: 6 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/api/ --- # API diff --git a/docs/acap-sdk-version-3/develop-applications/application-project-structure.md b/docs/acap-sdk-version-3/develop-applications/application-project-structure.md index d93a0af..ebdf76e 100644 --- a/docs/acap-sdk-version-3/develop-applications/application-project-structure.md +++ b/docs/acap-sdk-version-3/develop-applications/application-project-structure.md @@ -4,6 +4,7 @@ parent: Develop applications grand_parent: ACAP SDK version 3 title: Application project structure nav_order: 1 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/application-project-structure --- # Application project structure diff --git a/docs/acap-sdk-version-3/develop-applications/build-install-and-run-the-application.md b/docs/acap-sdk-version-3/develop-applications/build-install-and-run-the-application.md index fbc8cb9..cd359d3 100644 --- a/docs/acap-sdk-version-3/develop-applications/build-install-and-run-the-application.md +++ b/docs/acap-sdk-version-3/develop-applications/build-install-and-run-the-application.md @@ -4,6 +4,7 @@ parent: Develop applications grand_parent: ACAP SDK version 3 title: Build, install and run the application nav_order: 2 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/build-install-and-run-the-application --- # Build, install and run the application diff --git a/docs/acap-sdk-version-3/develop-applications/develop-using-visual-studio-code.md b/docs/acap-sdk-version-3/develop-applications/develop-using-visual-studio-code.md index 94c0ac8..8b53e1b 100644 --- a/docs/acap-sdk-version-3/develop-applications/develop-using-visual-studio-code.md +++ b/docs/acap-sdk-version-3/develop-applications/develop-using-visual-studio-code.md @@ -4,6 +4,7 @@ parent: Develop applications grand_parent: ACAP SDK version 3 title: Develop using Visual Studio Code nav_order: 5 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/develop-using-visual-studio-code --- # Develop using Visual Studio Code diff --git a/docs/acap-sdk-version-3/develop-applications/index.md b/docs/acap-sdk-version-3/develop-applications/index.md index 754890a..afc9d0f 100644 --- a/docs/acap-sdk-version-3/develop-applications/index.md +++ b/docs/acap-sdk-version-3/develop-applications/index.md @@ -4,5 +4,6 @@ parent: ACAP SDK version 3 title: Develop applications nav_order: 3 has_children: true +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/application-project-structure --- # Develop applications diff --git a/docs/acap-sdk-version-3/develop-applications/reproducible-builds.md b/docs/acap-sdk-version-3/develop-applications/reproducible-builds.md index 585ca80..ec0fcc9 100644 --- a/docs/acap-sdk-version-3/develop-applications/reproducible-builds.md +++ b/docs/acap-sdk-version-3/develop-applications/reproducible-builds.md @@ -4,6 +4,7 @@ parent: Develop applications grand_parent: ACAP SDK version 3 title: Reproducible builds nav_order: 3 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/reproducible-builds --- # Reproducible builds diff --git a/docs/acap-sdk-version-3/develop-applications/supported-languages.md b/docs/acap-sdk-version-3/develop-applications/supported-languages.md index d649675..2f43899 100644 --- a/docs/acap-sdk-version-3/develop-applications/supported-languages.md +++ b/docs/acap-sdk-version-3/develop-applications/supported-languages.md @@ -4,6 +4,7 @@ parent: Develop applications grand_parent: ACAP SDK version 3 title: Supported languages nav_order: 6 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/supported-languages --- # Supported languages diff --git a/docs/acap-sdk-version-3/develop-applications/vapix-access-for-acap-applications.md b/docs/acap-sdk-version-3/develop-applications/vapix-access-for-acap-applications.md index e248e21..58d4add 100644 --- a/docs/acap-sdk-version-3/develop-applications/vapix-access-for-acap-applications.md +++ b/docs/acap-sdk-version-3/develop-applications/vapix-access-for-acap-applications.md @@ -4,6 +4,7 @@ parent: Develop applications grand_parent: ACAP SDK version 3 title: VAPIX access for ACAP applications nav_order: 4 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/develop-applications/vapix-access-for-acap-applications --- # VAPIX access for ACAP applications diff --git a/docs/acap-sdk-version-3/get-started/acap-development-requirements.md b/docs/acap-sdk-version-3/get-started/acap-development-requirements.md index 9e86cfb..08ad878 100644 --- a/docs/acap-sdk-version-3/get-started/acap-development-requirements.md +++ b/docs/acap-sdk-version-3/get-started/acap-development-requirements.md @@ -4,6 +4,7 @@ parent: Get started grand_parent: ACAP SDK version 3 title: ACAP development requirements nav_order: 1 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/get-started/acap-development-requirements --- # ACAP development requirements diff --git a/docs/acap-sdk-version-3/get-started/compatibility.md b/docs/acap-sdk-version-3/get-started/compatibility.md index fa66d4c..40cf487 100644 --- a/docs/acap-sdk-version-3/get-started/compatibility.md +++ b/docs/acap-sdk-version-3/get-started/compatibility.md @@ -4,6 +4,7 @@ parent: Get started grand_parent: ACAP SDK version 3 title: Compatibility nav_order: 2 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/get-started/compatibility --- # Compatibility diff --git a/docs/acap-sdk-version-3/get-started/find-out-which-sdk-to-use.md b/docs/acap-sdk-version-3/get-started/find-out-which-sdk-to-use.md index 85d7600..7dd377e 100644 --- a/docs/acap-sdk-version-3/get-started/find-out-which-sdk-to-use.md +++ b/docs/acap-sdk-version-3/get-started/find-out-which-sdk-to-use.md @@ -4,6 +4,7 @@ parent: Get started grand_parent: ACAP SDK version 3 title: Find out which SDK to use nav_order: 3 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/get-started/find-out-which-sdk-to-use --- # Find out which SDK to use diff --git a/docs/acap-sdk-version-3/get-started/index.md b/docs/acap-sdk-version-3/get-started/index.md index aa29060..b46c7ec 100644 --- a/docs/acap-sdk-version-3/get-started/index.md +++ b/docs/acap-sdk-version-3/get-started/index.md @@ -4,6 +4,7 @@ parent: ACAP SDK version 3 title: Get started nav_order: 2 has_children: true +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/get-started/ --- # Get started diff --git a/docs/acap-sdk-version-3/get-started/set-up-and-verify-the-sdk.md b/docs/acap-sdk-version-3/get-started/set-up-and-verify-the-sdk.md index 0795c7d..a6af2d5 100644 --- a/docs/acap-sdk-version-3/get-started/set-up-and-verify-the-sdk.md +++ b/docs/acap-sdk-version-3/get-started/set-up-and-verify-the-sdk.md @@ -4,6 +4,7 @@ parent: Get started grand_parent: ACAP SDK version 3 title: Set up and verify the SDK nav_order: 5 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/get-started/set-up-and-verify-the-sdk --- # Set up and verify the SDK diff --git a/docs/acap-sdk-version-3/get-started/set-up-the-device.md b/docs/acap-sdk-version-3/get-started/set-up-the-device.md index e614973..37048ce 100644 --- a/docs/acap-sdk-version-3/get-started/set-up-the-device.md +++ b/docs/acap-sdk-version-3/get-started/set-up-the-device.md @@ -4,6 +4,7 @@ parent: Get started grand_parent: ACAP SDK version 3 title: Set up the device nav_order: 4 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/get-started/set-up-the-device --- # Set up the device diff --git a/docs/acap-sdk-version-3/index.md b/docs/acap-sdk-version-3/index.md index 5f471a2..55a0afa 100644 --- a/docs/acap-sdk-version-3/index.md +++ b/docs/acap-sdk-version-3/index.md @@ -3,5 +3,6 @@ layout: acap_sdk_version_3 title: ACAP SDK version 3 nav_order: 15 has_children: true +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/introduction --- # ACAP version 3.1.0 - 3.5 SDK Documentation diff --git a/docs/acap-sdk-version-3/introduction/index.md b/docs/acap-sdk-version-3/introduction/index.md index 179f923..1168e39 100644 --- a/docs/acap-sdk-version-3/introduction/index.md +++ b/docs/acap-sdk-version-3/introduction/index.md @@ -3,6 +3,7 @@ layout: acap_sdk_version_3 parent: ACAP SDK version 3 title: Introduction nav_order: 1 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/introduction/ --- # Introduction diff --git a/docs/acap-sdk-version-3/more-resources/index.md b/docs/acap-sdk-version-3/more-resources/index.md index afd6755..f3999f2 100644 --- a/docs/acap-sdk-version-3/more-resources/index.md +++ b/docs/acap-sdk-version-3/more-resources/index.md @@ -3,6 +3,7 @@ layout: acap_sdk_version_3 parent: ACAP SDK version 3 title: More resources nav_order: 4 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/more-resources/ --- # More resources diff --git a/docs/acap-sdk-version-3/services-for-partners/acap-service-portal-for-administrators.md b/docs/acap-sdk-version-3/services-for-partners/acap-service-portal-for-administrators.md index a51df62..9077f6f 100644 --- a/docs/acap-sdk-version-3/services-for-partners/acap-service-portal-for-administrators.md +++ b/docs/acap-sdk-version-3/services-for-partners/acap-service-portal-for-administrators.md @@ -4,6 +4,7 @@ parent: Services for partners grand_parent: ACAP SDK version 3 title: ACAP Service Portal for administrators nav_order: 2 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/services-for-partners/acap-service-portal-for-administrators --- # ACAP Service Portal for administrators diff --git a/docs/acap-sdk-version-3/services-for-partners/accept-or-deny-unsigned-acap-applications.md b/docs/acap-sdk-version-3/services-for-partners/accept-or-deny-unsigned-acap-applications.md index 8260f5c..a21a687 100644 --- a/docs/acap-sdk-version-3/services-for-partners/accept-or-deny-unsigned-acap-applications.md +++ b/docs/acap-sdk-version-3/services-for-partners/accept-or-deny-unsigned-acap-applications.md @@ -4,6 +4,7 @@ parent: Services for partners grand_parent: ACAP SDK version 3 title: Accept or deny unsigned ACAP applications nav_order: 3 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/services-for-partners/accept-or-deny-unsigned-acap-applications --- # Accept or deny unsigned ACAP applications diff --git a/docs/acap-sdk-version-3/services-for-partners/index.md b/docs/acap-sdk-version-3/services-for-partners/index.md index 4049f68..9d8608e 100644 --- a/docs/acap-sdk-version-3/services-for-partners/index.md +++ b/docs/acap-sdk-version-3/services-for-partners/index.md @@ -4,5 +4,6 @@ parent: ACAP SDK version 3 title: Services for partners nav_order: 5 has_children: true +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/services-for-partners/package-signing --- # Services for partners diff --git a/docs/acap-sdk-version-3/services-for-partners/package-signing.md b/docs/acap-sdk-version-3/services-for-partners/package-signing.md index 60c0ad5..55bd990 100644 --- a/docs/acap-sdk-version-3/services-for-partners/package-signing.md +++ b/docs/acap-sdk-version-3/services-for-partners/package-signing.md @@ -4,6 +4,7 @@ parent: Services for partners grand_parent: ACAP SDK version 3 title: Package signing nav_order: 1 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/services-for-partners/package-signing --- # Package signing diff --git a/docs/acap-sdk-version-3/what-is-new-in-acap-sdk/index.md b/docs/acap-sdk-version-3/what-is-new-in-acap-sdk/index.md index 0b59b67..554268b 100644 --- a/docs/acap-sdk-version-3/what-is-new-in-acap-sdk/index.md +++ b/docs/acap-sdk-version-3/what-is-new-in-acap-sdk/index.md @@ -3,6 +3,7 @@ layout: acap_sdk_version_3 parent: ACAP SDK version 3 title: What's new in ACAP SDK nav_order: 7 +redirect_to: http://localhost:3000/acap/acap-sdk-version-3/what-is-new-in-acap-sdk/ --- # What's new in ACAP SDK diff --git a/docs/api/beta-api.md b/docs/api/beta-api.md index a4bca04..1e4d315 100644 --- a/docs/api/beta-api.md +++ b/docs/api/beta-api.md @@ -3,6 +3,7 @@ layout: default title: Beta API parent: API nav_order: 3 +redirect_to: http://localhost:3000/acap/api/beta-api --- # Beta API diff --git a/docs/api/computer-vision-sdk-apis.md b/docs/api/computer-vision-sdk-apis.md index 594da8f..71bbd3f 100644 --- a/docs/api/computer-vision-sdk-apis.md +++ b/docs/api/computer-vision-sdk-apis.md @@ -3,6 +3,7 @@ layout: default title: Computer Vision APIs parent: API nav_order: 2 +redirect_to: http://localhost:3000/acap/api/computer-vision-sdk-apis --- # Computer Vision APIs diff --git a/docs/api/index.md b/docs/api/index.md index 4cdee34..4efec01 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -4,4 +4,5 @@ title: API nav_order: 7 has_children: true permalink: docs/api +redirect_to: http://localhost:3000/acap/api/native-sdk-api --- diff --git a/docs/api/native-sdk-api.md b/docs/api/native-sdk-api.md index e477f0f..d370485 100644 --- a/docs/api/native-sdk-api.md +++ b/docs/api/native-sdk-api.md @@ -3,6 +3,7 @@ layout: page title: Native SDK API parent: API nav_order: 1 +redirect_to: http://localhost:3000/acap/api/native-sdk-api --- # Native SDK API diff --git a/docs/axis-devices-and-compatibility/index.md b/docs/axis-devices-and-compatibility/index.md index 375925a..89c7842 100644 --- a/docs/axis-devices-and-compatibility/index.md +++ b/docs/axis-devices-and-compatibility/index.md @@ -2,6 +2,7 @@ layout: page title: Axis devices & compatibility nav_order: 8 +redirect_to: http://localhost:3000/acap/axis-devices-and-compatibility/ --- # Axis devices & compatibility diff --git a/docs/cloud-integrations/index.md b/docs/cloud-integrations/index.md index 5bec546..96c0323 100644 --- a/docs/cloud-integrations/index.md +++ b/docs/cloud-integrations/index.md @@ -2,6 +2,7 @@ layout: page title: Cloud integrations nav_order: 9 +redirect_to: http://localhost:3000/acap/cloud-integrations/ --- # Cloud integrations diff --git a/docs/computer-vision-on-device/index.md b/docs/computer-vision-on-device/index.md index 6ec6a98..af2762e 100644 --- a/docs/computer-vision-on-device/index.md +++ b/docs/computer-vision-on-device/index.md @@ -3,6 +3,7 @@ layout: default title: Computer vision on device nav_order: 6 permalink: docs/computer-vision-on-device +redirect_to: http://localhost:3000/acap/computer-vision-on-device/ --- # Computer vision on device diff --git a/docs/develop-container-applications/build-install-run.md b/docs/develop-container-applications/build-install-run.md index e27bacd..2dbc37e 100644 --- a/docs/develop-container-applications/build-install-run.md +++ b/docs/develop-container-applications/build-install-run.md @@ -3,6 +3,7 @@ layout: acap_container_applications_deprecation_page parent: Develop container applications title: Build, install, run nav_order: 1 +redirect_to: http://localhost:3000/acap/develop-container-applications/build-install-run --- # Build, install, run diff --git a/docs/develop-container-applications/camera-calibration.md b/docs/develop-container-applications/camera-calibration.md index 0056b21..277240e 100644 --- a/docs/develop-container-applications/camera-calibration.md +++ b/docs/develop-container-applications/camera-calibration.md @@ -3,6 +3,7 @@ layout: acap_container_applications_deprecation_page parent: Develop container applications title: Camera calibration nav_order: 4 +redirect_to: http://localhost:3000/acap/develop-container-applications/camera-calibration --- # Camera calibration diff --git a/docs/develop-container-applications/include-third-party-libraries.md b/docs/develop-container-applications/include-third-party-libraries.md index 6aeea73..012a1b4 100644 --- a/docs/develop-container-applications/include-third-party-libraries.md +++ b/docs/develop-container-applications/include-third-party-libraries.md @@ -3,6 +3,7 @@ layout: acap_container_applications_deprecation_page parent: Develop container applications title: Include third party libraries nav_order: 2 +redirect_to: http://localhost:3000/acap/develop-container-applications/include-third-party-libraries --- # Include third party libraries diff --git a/docs/develop-container-applications/index.md b/docs/develop-container-applications/index.md index 860e379..a03a4fa 100644 --- a/docs/develop-container-applications/index.md +++ b/docs/develop-container-applications/index.md @@ -3,6 +3,7 @@ layout: acap_container_applications_deprecation_page title: Develop container applications has_children: true nav_order: 5 +redirect_to: http://localhost:3000/acap/develop-container-applications/ --- # Develop container applications diff --git a/docs/develop-container-applications/supported-languages.md b/docs/develop-container-applications/supported-languages.md index b5b900e..94d7f0a 100644 --- a/docs/develop-container-applications/supported-languages.md +++ b/docs/develop-container-applications/supported-languages.md @@ -3,6 +3,7 @@ layout: acap_container_applications_deprecation_page parent: Develop container applications title: Supported languages nav_order: 3 +redirect_to: http://localhost:3000/acap/develop-container-applications/supported-languages --- # Supported languages diff --git a/docs/develop-container-applications/web-server-via-reverse-proxy.md b/docs/develop-container-applications/web-server-via-reverse-proxy.md index e784c62..47f6f3b 100644 --- a/docs/develop-container-applications/web-server-via-reverse-proxy.md +++ b/docs/develop-container-applications/web-server-via-reverse-proxy.md @@ -3,6 +3,7 @@ layout: acap_container_applications_deprecation_page parent: Develop container applications title: Web server via Reverse Proxy nav_order: 5 +redirect_to: http://localhost:3000/acap/develop-container-applications/web-server-via-reverse-proxy --- # Web server via Reverse Proxy diff --git a/docs/develop/VAPIX-access-for-ACAP-applications.md b/docs/develop/VAPIX-access-for-ACAP-applications.md index bee1cec..e454cda 100644 --- a/docs/develop/VAPIX-access-for-ACAP-applications.md +++ b/docs/develop/VAPIX-access-for-ACAP-applications.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: VAPIX access for ACAP applications nav_order: 7 +redirect_to: http://localhost:3000/acap/develop/VAPIX-access-for-ACAP-applications --- # VAPIX access for ACAP applications diff --git a/docs/develop/application-project-structure.md b/docs/develop/application-project-structure.md index 4dab57f..e3a94cb 100644 --- a/docs/develop/application-project-structure.md +++ b/docs/develop/application-project-structure.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Application project structure nav_order: 1 +redirect_to: http://localhost:3000/acap/develop/application-project-structure --- diff --git a/docs/develop/build-install-run.md b/docs/develop/build-install-run.md index 6c0e75b..03acb11 100644 --- a/docs/develop/build-install-run.md +++ b/docs/develop/build-install-run.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Build, install, run nav_order: 3 +redirect_to: http://localhost:3000/acap/develop/build-install-run --- # Build, install, run diff --git a/docs/develop/camera-calibration.md b/docs/develop/camera-calibration.md index 41d5e0c..e76a7a1 100644 --- a/docs/develop/camera-calibration.md +++ b/docs/develop/camera-calibration.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Camera calibration nav_order: 6 +redirect_to: http://localhost:3000/acap/develop/camera-calibration --- # Camera calibration diff --git a/docs/develop/include-third-party-libraries.md b/docs/develop/include-third-party-libraries.md index 64870bb..607e67b 100644 --- a/docs/develop/include-third-party-libraries.md +++ b/docs/develop/include-third-party-libraries.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Include third party libraries nav_order: 4 +redirect_to: http://localhost:3000/acap/develop/include-third-party-libraries --- # Include third party libraries diff --git a/docs/develop/index.md b/docs/develop/index.md index 8522d81..e12933b 100644 --- a/docs/develop/index.md +++ b/docs/develop/index.md @@ -3,6 +3,7 @@ layout: default title: Develop ACAP applications has_children: true nav_order: 4 +redirect_to: http://localhost:3000/acap/develop/ --- # Develop ACAP applications diff --git a/docs/develop/manifest-schemas/index.md b/docs/develop/manifest-schemas/index.md index b508671..9c99c01 100644 --- a/docs/develop/manifest-schemas/index.md +++ b/docs/develop/manifest-schemas/index.md @@ -4,6 +4,7 @@ parent: Develop ACAP applications title: Manifest schemas has_children: true nav_order: 2 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/ --- # Manifest schemas diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.0.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.0.md index d031f02..9a41367 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.0.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.0.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.0 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.0 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.1.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.1.md index 14339ff..bf74006 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.1.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.1.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.1 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.1 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.2.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.2.md index ec17719..6ea6b54 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.2.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.2.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.2 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.2 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.1.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.1.md index 5999f38..57f7e31 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.1.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.1.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.3.1 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.3.1 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.md index d4873b0..cd2e7e4 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.3.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.3 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.3 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.4.0.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.4.0.md index dc37401..5e88249 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.4.0.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.4.0.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.4.0 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.4.0 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.5.0.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.5.0.md index e1fdfac..1c5d2d4 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.5.0.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.5.0.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.5.0 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.5.0 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.6.0.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.6.0.md index e765791..0c0d013 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.6.0.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.6.0.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.6.0 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.6.0 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.0.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.0.md index 8780a5d..3ee87e2 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.0.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.0.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.7.0 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.7.0 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.1.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.1.md index c7d0277..f35f573 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.1.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.1.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.7.1 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.7.1 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.2.md b/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.2.md index ba0fb0f..97a2baf 100644 --- a/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.2.md +++ b/docs/develop/manifest-schemas/schema-field-descriptions-v1.7.2.md @@ -3,6 +3,7 @@ layout: page grand_parent: Develop ACAP applications parent: Manifest schemas title: Manifest schema v1.7.2 +redirect_to: http://localhost:3000/acap/develop/manifest-schemas/schema-field-descriptions-v1.7.2 ---

This document is automatically generated from manifest schema

diff --git a/docs/develop/proxy.md b/docs/develop/proxy.md index 4e49899..bd9019b 100644 --- a/docs/develop/proxy.md +++ b/docs/develop/proxy.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Proxy nav_order: 11 +redirect_to: http://localhost:3000/acap/develop/proxy --- # Proxy diff --git a/docs/develop/setting-up-visual-studio-code.md b/docs/develop/setting-up-visual-studio-code.md index 0841ba4..b9681c2 100644 --- a/docs/develop/setting-up-visual-studio-code.md +++ b/docs/develop/setting-up-visual-studio-code.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Setting up Visual Studio Code nav_order: 8 +redirect_to: http://localhost:3000/acap/develop/setting-up-visual-studio-code --- # Setting up Visual Studio Code diff --git a/docs/develop/supported-languages.md b/docs/develop/supported-languages.md index 4384c24..9fbba70 100644 --- a/docs/develop/supported-languages.md +++ b/docs/develop/supported-languages.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Supported languages nav_order: 9 +redirect_to: http://localhost:3000/acap/develop/supported-languages --- # Supported languages diff --git a/docs/develop/user-selection.md b/docs/develop/user-selection.md index 611a9d1..0b7de13 100644 --- a/docs/develop/user-selection.md +++ b/docs/develop/user-selection.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Migrating an application from static to dynamic user nav_order: 10 +redirect_to: http://localhost:3000/acap/develop/user-selection --- # Migrating an application from static to dynamic user diff --git a/docs/develop/web-server-via-reverse-proxy.md b/docs/develop/web-server-via-reverse-proxy.md index 79a4bb7..ce1f238 100644 --- a/docs/develop/web-server-via-reverse-proxy.md +++ b/docs/develop/web-server-via-reverse-proxy.md @@ -3,6 +3,7 @@ layout: page parent: Develop ACAP applications title: Web server via Reverse Proxy nav_order: 5 +redirect_to: http://localhost:3000/acap/develop/web-server-via-reverse-proxy --- # Web server via Reverse Proxy diff --git a/docs/faq/deployment.md b/docs/faq/deployment.md index 6a27677..030c583 100644 --- a/docs/faq/deployment.md +++ b/docs/faq/deployment.md @@ -3,6 +3,7 @@ layout: page parent: FAQ title: Deployment nav_order: 3 +redirect_to: http://localhost:3000/acap/faq/deployment --- diff --git a/docs/faq/index.md b/docs/faq/index.md index f3772be..d0d1f0c 100644 --- a/docs/faq/index.md +++ b/docs/faq/index.md @@ -3,6 +3,7 @@ layout: default title: FAQ has_children: true nav_order: 11 +redirect_to: http://localhost:3000/acap/faq/ --- # Frequently Asked Questions (FAQ) diff --git a/docs/faq/machine-learning.md b/docs/faq/machine-learning.md index f150034..7f0b9c3 100644 --- a/docs/faq/machine-learning.md +++ b/docs/faq/machine-learning.md @@ -3,6 +3,7 @@ layout: page parent: FAQ title: Machine learning nav_order: 1 +redirect_to: http://localhost:3000/acap/faq/machine-learning --- diff --git a/docs/faq/security.md b/docs/faq/security.md index ae5d7d3..96ef383 100644 --- a/docs/faq/security.md +++ b/docs/faq/security.md @@ -3,6 +3,7 @@ layout: page parent: FAQ title: Security nav_order: 2 +redirect_to: http://localhost:3000/acap/faq/security --- diff --git a/docs/get-help-and-give-feedback/index.md b/docs/get-help-and-give-feedback/index.md index dd7d54a..b773a9c 100644 --- a/docs/get-help-and-give-feedback/index.md +++ b/docs/get-help-and-give-feedback/index.md @@ -2,6 +2,7 @@ layout: page title: Get help & give feedback nav_order: 12 +redirect_to: http://localhost:3000/acap/get-help-and-give-feedback/ --- # Get help & give feedback diff --git a/docs/get-started/hello-world-example.md b/docs/get-started/hello-world-example.md index 65347f6..4f5feec 100644 --- a/docs/get-started/hello-world-example.md +++ b/docs/get-started/hello-world-example.md @@ -3,6 +3,7 @@ layout: page parent: Get started title: Hello World example nav_order: 3 +redirect_to: http://localhost:3000/acap/get-started/hello-world-example --- # Hello world example diff --git a/docs/get-started/index.md b/docs/get-started/index.md index 6f3d6a4..cedd4c9 100644 --- a/docs/get-started/index.md +++ b/docs/get-started/index.md @@ -4,6 +4,7 @@ title: Get started has_children: true nav_order: 3 permalink: docs/get-started +redirect_to: http://localhost:3000/acap/get-started/set-up-developer-environment/pre-requisites --- # Get started with ACAP application development diff --git a/docs/get-started/set-up-developer-environment/index.md b/docs/get-started/set-up-developer-environment/index.md index 116ac77..d1a3e63 100644 --- a/docs/get-started/set-up-developer-environment/index.md +++ b/docs/get-started/set-up-developer-environment/index.md @@ -4,6 +4,7 @@ parent: Get started title: Set up developer environment has_children: true nav_order: 1 +redirect_to: http://localhost:3000/acap/get-started/set-up-developer-environment/pre-requisites --- # Set up developer environment diff --git a/docs/get-started/set-up-developer-environment/pre-requisites.md b/docs/get-started/set-up-developer-environment/pre-requisites.md index b568612..4107403 100644 --- a/docs/get-started/set-up-developer-environment/pre-requisites.md +++ b/docs/get-started/set-up-developer-environment/pre-requisites.md @@ -4,6 +4,7 @@ grand_parent: Get started parent: Set up developer environment title: Pre-requisites nav_order: 1 +redirect_to: http://localhost:3000/acap/get-started/set-up-developer-environment/pre-requisites --- # Pre-requisites diff --git a/docs/get-started/set-up-developer-environment/set-up-device-advanced.md b/docs/get-started/set-up-developer-environment/set-up-device-advanced.md index 34248b9..0412afa 100644 --- a/docs/get-started/set-up-developer-environment/set-up-device-advanced.md +++ b/docs/get-started/set-up-developer-environment/set-up-device-advanced.md @@ -4,6 +4,7 @@ grand_parent: Get started parent: Set up developer environment title: Set up device - advanced nav_order: 3 +redirect_to: http://localhost:3000/acap/get-started/set-up-developer-environment/set-up-device-advanced --- # Set up device - advanced topics diff --git a/docs/get-started/set-up-developer-environment/set-up-device.md b/docs/get-started/set-up-developer-environment/set-up-device.md index 1a471aa..9e94439 100644 --- a/docs/get-started/set-up-developer-environment/set-up-device.md +++ b/docs/get-started/set-up-developer-environment/set-up-device.md @@ -4,6 +4,7 @@ grand_parent: Get started parent: Set up developer environment title: Set up device nav_order: 2 +redirect_to: http://localhost:3000/acap/get-started/set-up-developer-environment/set-up-device --- # Set up device diff --git a/docs/introduction/acap-examples.md b/docs/introduction/acap-examples.md index 95f8920..67ad7a6 100644 --- a/docs/introduction/acap-examples.md +++ b/docs/introduction/acap-examples.md @@ -3,6 +3,7 @@ layout: page parent: Introduction title: ACAP examples nav_order: 5 +redirect_to: http://localhost:3000/acap/introduction/acap-examples --- # ACAP examples diff --git a/docs/introduction/acap-sdk-overview.md b/docs/introduction/acap-sdk-overview.md index 91c62f5..542bf77 100644 --- a/docs/introduction/acap-sdk-overview.md +++ b/docs/introduction/acap-sdk-overview.md @@ -3,6 +3,7 @@ layout: page parent: Introduction title: ACAP SDK overview nav_order: 4 +redirect_to: http://localhost:3000/acap/introduction/acap-sdk-overview --- # ACAP SDK overview diff --git a/docs/introduction/acap-version-comparison.md b/docs/introduction/acap-version-comparison.md index 96bca35..c56c141 100644 --- a/docs/introduction/acap-version-comparison.md +++ b/docs/introduction/acap-version-comparison.md @@ -3,6 +3,7 @@ layout: page parent: Introduction title: ACAP version comparison nav_order: 3 +redirect_to: http://localhost:3000/acap/introduction/acap-version-comparison --- # ACAP version comparisons diff --git a/docs/introduction/index.md b/docs/introduction/index.md index a72efdd..eb21b00 100644 --- a/docs/introduction/index.md +++ b/docs/introduction/index.md @@ -4,6 +4,7 @@ title: Introduction has_children: true nav_order: 2 permalink: docs/introduction +redirect_to: http://localhost:3000/acap/introduction/what-is-acap --- # Introduction diff --git a/docs/introduction/version-history.md b/docs/introduction/version-history.md index 46c0ac6..79d6c17 100644 --- a/docs/introduction/version-history.md +++ b/docs/introduction/version-history.md @@ -3,6 +3,7 @@ layout: page parent: Introduction title: Version history nav_order: 2 +redirect_to: http://localhost:3000/acap/introduction/version-history --- # Version history diff --git a/docs/introduction/what-is-acap.md b/docs/introduction/what-is-acap.md index f0f2123..2db11ea 100644 --- a/docs/introduction/what-is-acap.md +++ b/docs/introduction/what-is-acap.md @@ -3,6 +3,7 @@ layout: page parent: Introduction title: What is ACAP? nav_order: 1 +redirect_to: http://localhost:3000/acap/introduction/what-is-acap --- # What is ACAP? diff --git a/docs/licenses/index.md b/docs/licenses/index.md index 9a706ce..e40b23b 100644 --- a/docs/licenses/index.md +++ b/docs/licenses/index.md @@ -2,6 +2,7 @@ layout: page title: Licenses nav_order: 14 +redirect_to: http://localhost:3000/acap/ --- # Web page licenses diff --git a/docs/release-notes/12.0.md b/docs/release-notes/12.0.md index 81d265a..3f31719 100644 --- a/docs/release-notes/12.0.md +++ b/docs/release-notes/12.0.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "12.0" nav_order: 18 +redirect_to: http://localhost:3000/acap/release-notes/12.0 --- # ACAP version 12.0 – November 4, 2024 diff --git a/docs/release-notes/12.1.md b/docs/release-notes/12.1.md index 3037cab..dcdc2e2 100644 --- a/docs/release-notes/12.1.md +++ b/docs/release-notes/12.1.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "12.1" nav_order: 19 +redirect_to: http://localhost:3000/acap/release-notes/12.1 --- # ACAP version 12.1 – November 25, 2024 diff --git a/docs/release-notes/4.0.md b/docs/release-notes/4.0.md index 76352a6..bc59967 100644 --- a/docs/release-notes/4.0.md +++ b/docs/release-notes/4.0.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.0" nav_order: 2 +redirect_to: http://localhost:3000/acap/release-notes/4.0 --- # ACAP version 4.0 – September 27, 2021 diff --git a/docs/release-notes/4.0_beta1.md b/docs/release-notes/4.0_beta1.md index edc952e..af5c14b 100644 --- a/docs/release-notes/4.0_beta1.md +++ b/docs/release-notes/4.0_beta1.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.0_beta1" nav_order: 1 +redirect_to: http://localhost:3000/acap/release-notes/4.0_beta1 --- # ACAP version 4 Beta 1 – July 13 2021 diff --git a/docs/release-notes/4.1.md b/docs/release-notes/4.1.md index c3ded34..48b5e91 100644 --- a/docs/release-notes/4.1.md +++ b/docs/release-notes/4.1.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.1" nav_order: 3 +redirect_to: http://localhost:3000/acap/release-notes/4.1 --- # ACAP version 4.1 – January 13, 2022 diff --git a/docs/release-notes/4.10.md b/docs/release-notes/4.10.md index ebca75d..1ad5623 100644 --- a/docs/release-notes/4.10.md +++ b/docs/release-notes/4.10.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.10" nav_order: 12 +redirect_to: http://localhost:3000/acap/release-notes/4.10 --- # ACAP version 4.10 – September 26, 2023 diff --git a/docs/release-notes/4.11.md b/docs/release-notes/4.11.md index a119fb1..023e9d8 100644 --- a/docs/release-notes/4.11.md +++ b/docs/release-notes/4.11.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.11" nav_order: 13 +redirect_to: http://localhost:3000/acap/release-notes/4.11 --- # ACAP version 4.11 – November 20, 2023 diff --git a/docs/release-notes/4.12.md b/docs/release-notes/4.12.md index 0bd8dff..c081f3f 100644 --- a/docs/release-notes/4.12.md +++ b/docs/release-notes/4.12.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.12" nav_order: 14 +redirect_to: http://localhost:3000/acap/release-notes/4.12 --- # ACAP version 4.12 – January 19, 2024 diff --git a/docs/release-notes/4.13.md b/docs/release-notes/4.13.md index 4ca81db..6235bad 100644 --- a/docs/release-notes/4.13.md +++ b/docs/release-notes/4.13.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.13" nav_order: 15 +redirect_to: http://localhost:3000/acap/release-notes/4.13 --- # ACAP version 4.13 – March 4, 2024 diff --git a/docs/release-notes/4.14.md b/docs/release-notes/4.14.md index a5db29e..5a29405 100644 --- a/docs/release-notes/4.14.md +++ b/docs/release-notes/4.14.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.14" nav_order: 16 +redirect_to: http://localhost:3000/acap/release-notes/4.14 --- # ACAP version 4.14 – May 3, 2024 diff --git a/docs/release-notes/4.15.md b/docs/release-notes/4.15.md index 1a07830..e1a15d4 100644 --- a/docs/release-notes/4.15.md +++ b/docs/release-notes/4.15.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.15" nav_order: 17 +redirect_to: http://localhost:3000/acap/release-notes/4.15 --- # ACAP version 4.15 – July 3, 2024 diff --git a/docs/release-notes/4.2.md b/docs/release-notes/4.2.md index 74d0e8a..cf04b45 100644 --- a/docs/release-notes/4.2.md +++ b/docs/release-notes/4.2.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.2" nav_order: 4 +redirect_to: http://localhost:3000/acap/release-notes/4.2 --- # ACAP version 4.2 – May 4, 2022 diff --git a/docs/release-notes/4.3.md b/docs/release-notes/4.3.md index 28ffd4d..560cd9f 100644 --- a/docs/release-notes/4.3.md +++ b/docs/release-notes/4.3.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.3" nav_order: 5 +redirect_to: http://localhost:3000/acap/release-notes/4.3 --- # ACAP version 4.3 – August 31, 2022 diff --git a/docs/release-notes/4.4.md b/docs/release-notes/4.4.md index 4840eb8..01afc59 100644 --- a/docs/release-notes/4.4.md +++ b/docs/release-notes/4.4.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.4" nav_order: 6 +redirect_to: http://localhost:3000/acap/release-notes/4.4 --- # ACAP version 4.4 – October 12, 2022 diff --git a/docs/release-notes/4.5.md b/docs/release-notes/4.5.md index 84f358a..5b9ad3e 100644 --- a/docs/release-notes/4.5.md +++ b/docs/release-notes/4.5.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.5" nav_order: 7 +redirect_to: http://localhost:3000/acap/release-notes/4.5 --- # ACAP version 4.5 – November 14, 2022 diff --git a/docs/release-notes/4.6.md b/docs/release-notes/4.6.md index 3b0cd4b..5e31f5c 100644 --- a/docs/release-notes/4.6.md +++ b/docs/release-notes/4.6.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.6" nav_order: 8 +redirect_to: http://localhost:3000/acap/release-notes/4.6 --- # ACAP version 4.6 – January 13, 2023 diff --git a/docs/release-notes/4.7.md b/docs/release-notes/4.7.md index e4a885a..61010a3 100644 --- a/docs/release-notes/4.7.md +++ b/docs/release-notes/4.7.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.7" nav_order: 9 +redirect_to: http://localhost:3000/acap/release-notes/4.7 --- # ACAP version 4.7 – February 28, 2023 diff --git a/docs/release-notes/4.8.md b/docs/release-notes/4.8.md index 9b53cad..49868d8 100644 --- a/docs/release-notes/4.8.md +++ b/docs/release-notes/4.8.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.8" nav_order: 10 +redirect_to: http://localhost:3000/acap/release-notes/4.8 --- # ACAP version 4.8 – April 24, 2023 diff --git a/docs/release-notes/4.9.md b/docs/release-notes/4.9.md index 49aef52..b30e95a 100644 --- a/docs/release-notes/4.9.md +++ b/docs/release-notes/4.9.md @@ -3,6 +3,7 @@ layout: page parent: Release notes title: "4.9" nav_order: 11 +redirect_to: http://localhost:3000/acap/release-notes/4.9 --- # ACAP version 4.9 – June 26, 2023 diff --git a/docs/release-notes/index.md b/docs/release-notes/index.md index 6f2c08b..a0af60a 100644 --- a/docs/release-notes/index.md +++ b/docs/release-notes/index.md @@ -4,6 +4,7 @@ title: Release notes has_children: true nav_order: 13 child_nav_order: reversed +redirect_to: http://localhost:3000/acap/release-notes/ --- # Release notes diff --git a/docs/service/acap-application-signing.md b/docs/service/acap-application-signing.md index c8780f9..0e82d2e 100644 --- a/docs/service/acap-application-signing.md +++ b/docs/service/acap-application-signing.md @@ -3,6 +3,7 @@ layout: page parent: Service for partners title: ACAP application signing nav_order: 2 +redirect_to: http://localhost:3000/acap/service/acap-application-signing --- ## ACAP application signing diff --git a/docs/service/acap-service-portal.md b/docs/service/acap-service-portal.md index f1cec3d..2fc6d95 100644 --- a/docs/service/acap-service-portal.md +++ b/docs/service/acap-service-portal.md @@ -3,6 +3,7 @@ layout: page parent: Service for partners title: ACAP Service Portal nav_order: 1 +redirect_to: http://localhost:3000/acap/service/acap-service-portal --- # ACAP Service Portal diff --git a/docs/service/index.md b/docs/service/index.md index c547e80..789124f 100644 --- a/docs/service/index.md +++ b/docs/service/index.md @@ -3,6 +3,7 @@ layout: default title: Service for partners has_children: true nav_order: 10 +redirect_to: http://localhost:3000/acap/service/acap-service-portal --- # Service for partners diff --git a/index.md b/index.md index daef8db..28a2528 100644 --- a/index.md +++ b/index.md @@ -2,6 +2,7 @@ layout: default title: ACAP documentation nav_order: 1 +redirect_to: http://localhost:3000/acap/ --- # ACAP documentation