From 4bd9e297248ea2c1c8790aa7c234fcca1305e10a Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Thu, 22 Jan 2026 14:42:39 +0100 Subject: [PATCH 1/6] Update CLI menu links to point to docs page MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update navigation menu to redirect CLI link from /cli/ to /cli/docs. This change applies to both the main navbar and footer navigation. Changes: - Updated navbar CLI link: /cli/ → /cli/docs - Updated footer CLI link: /cli/ → /cli/docs Co-Authored-By: Claude Sonnet 4.5 (1M context) --- apify-docs-theme/src/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index a4d336939d..a616894012 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -90,7 +90,7 @@ const themeConfig = { }, { label: 'CLI', - href: `${absoluteUrl}/cli/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/cli/docs`, position: 'left', activeBasePath: 'cli', target: '_self', @@ -222,7 +222,7 @@ const themeConfig = { items: [ { label: 'CLI', - href: `${absoluteUrl}/cli/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/cli/docs`, position: 'left', target: '_self', rel: 'dofollow', From e7b7a05f2bd9c0888a6a8afccb952c7ca95e3cbb Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Fri, 23 Jan 2026 11:20:43 +0100 Subject: [PATCH 2/6] Update client menu links to point to docs pages MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Updated navbar JS client link: /api/client/js/ → /api/client/js/docs - Updated footer JS client link: /api/client/js/ → /api/client/js/docs - Updated navbar Python client link: /api/client/python/ → /api/client/python/docs/introduction/overview - Updated footer Python client link: /api/client/python/ → /api/client/python/docs/introduction/overview Related to removing landing pages in apify-client-js and apify-client-python repositories. Co-Authored-By: Claude Sonnet 4.5 (1M context) --- apify-docs-theme/src/config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index a616894012..232b43fdac 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -53,13 +53,13 @@ const themeConfig = { }, { label: 'Client for JavaScript', - href: `${absoluteUrl}/api/client/js/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/api/client/js/docs`, target: '_self', rel: 'dofollow', }, { label: 'Client for Python', - href: `${absoluteUrl}/api/client/python/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/api/client/python/docs/introduction/overview`, target: '_self', rel: 'dofollow', }, @@ -188,13 +188,13 @@ const themeConfig = { }, { label: 'Client for JavaScript', - href: `${absoluteUrl}/api/client/js/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/api/client/js/docs`, target: '_self', rel: 'dofollow', }, { label: 'Client for Python', - href: `${absoluteUrl}/api/client/python/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/api/client/python/docs/introduction/overview`, target: '_self', rel: 'dofollow', }, From a33b169c55a257559bb66841ae70cbbac4b8c399 Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Fri, 23 Jan 2026 11:45:30 +0100 Subject: [PATCH 3/6] Update SDK menu links to point directly to docs Updates SDK menu links in navbar and footer to point to /docs/overview instead of landing pages, consistent with the removal of SDK landing pages. Changes: - Update JavaScript SDK link from /sdk/js/ to /sdk/js/docs/overview - Update Python SDK link from /sdk/python/ to /sdk/python/docs/overview - Remove outdated comments about trailing slashes Co-Authored-By: Claude Sonnet 4.5 (1M context) --- apify-docs-theme/src/config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index 232b43fdac..ec3b8e4d17 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -76,13 +76,13 @@ const themeConfig = { items: [ { label: 'SDK for JavaScript', - href: `${absoluteUrl}/sdk/js/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/sdk/js/docs/overview`, target: '_self', rel: 'dofollow', }, { html: 'SDK for Python', - href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/sdk/python/docs/overview`, target: '_self', rel: 'dofollow', }, @@ -205,13 +205,13 @@ const themeConfig = { items: [ { label: 'SDK for JavaScript', - href: `${absoluteUrl}/sdk/js/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/sdk/js/docs/overview`, target: '_self', rel: 'dofollow', }, { label: 'SDK for Python', - href: `${absoluteUrl}/sdk/python/`, // we need a trailing slash here, we'd get redirected there anyway + href: `${absoluteUrl}/sdk/python/docs/overview`, target: '_self', rel: 'dofollow', }, From fa7432ca7d94c9838002a27454cd31a905c57081 Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Fri, 23 Jan 2026 11:52:55 +0100 Subject: [PATCH 4/6] Fix Python client URL path --- apify-docs-theme/src/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index ec3b8e4d17..ccd4577658 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -59,7 +59,7 @@ const themeConfig = { }, { label: 'Client for Python', - href: `${absoluteUrl}/api/client/python/docs/introduction/overview`, + href: `${absoluteUrl}/api/client/python/docs/overview`, target: '_self', rel: 'dofollow', }, @@ -194,7 +194,7 @@ const themeConfig = { }, { label: 'Client for Python', - href: `${absoluteUrl}/api/client/python/docs/introduction/overview`, + href: `${absoluteUrl}/api/client/python/docs/overview`, target: '_self', rel: 'dofollow', }, From 6d5e90788b5da8649a7bd3ff636f9ddf83c3abc9 Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Thu, 5 Feb 2026 09:23:26 +0100 Subject: [PATCH 5/6] Fix Python SDK URL path Update SDK for Python menu links to point to the correct introduction page path. Co-Authored-By: Claude Sonnet 4.5 (1M context) --- apify-docs-theme/src/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index ccd4577658..8108337a9e 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -82,7 +82,7 @@ const themeConfig = { }, { html: 'SDK for Python', - href: `${absoluteUrl}/sdk/python/docs/overview`, + href: `${absoluteUrl}/sdk/python/docs/introduction`, target: '_self', rel: 'dofollow', }, @@ -211,7 +211,7 @@ const themeConfig = { }, { label: 'SDK for Python', - href: `${absoluteUrl}/sdk/python/docs/overview`, + href: `${absoluteUrl}/sdk/python/docs/introduction`, target: '_self', rel: 'dofollow', }, From 740bddb7f36cddb853b630f9a3da4d8a7e626217 Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Thu, 5 Feb 2026 10:53:01 +0100 Subject: [PATCH 6/6] Revert Python SDK URL path to overview Revert SDK for Python menu links back to /overview page instead of /introduction. Co-Authored-By: Claude Sonnet 4.5 (1M context) --- apify-docs-theme/src/config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apify-docs-theme/src/config.js b/apify-docs-theme/src/config.js index 8108337a9e..ccd4577658 100644 --- a/apify-docs-theme/src/config.js +++ b/apify-docs-theme/src/config.js @@ -82,7 +82,7 @@ const themeConfig = { }, { html: 'SDK for Python', - href: `${absoluteUrl}/sdk/python/docs/introduction`, + href: `${absoluteUrl}/sdk/python/docs/overview`, target: '_self', rel: 'dofollow', }, @@ -211,7 +211,7 @@ const themeConfig = { }, { label: 'SDK for Python', - href: `${absoluteUrl}/sdk/python/docs/introduction`, + href: `${absoluteUrl}/sdk/python/docs/overview`, target: '_self', rel: 'dofollow', },