From d9029c8f1b658d3d83273ff46e9180baf103beeb Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Thu, 22 Jan 2026 14:42:39 +0100 Subject: [PATCH 1/4] 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 abbd7e86a8076a46655469a136d6d06f1abf45db Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Fri, 23 Jan 2026 11:20:43 +0100 Subject: [PATCH 2/4] 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 7c338a267e2a454d3d4fd83a9fb4fc3770de27ab Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Fri, 23 Jan 2026 11:45:30 +0100 Subject: [PATCH 3/4] 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 af85e92a6f1e681d832d65c22dba848910bdd5ef Mon Sep 17 00:00:00 2001 From: patrikbraborec Date: Fri, 23 Jan 2026 11:52:55 +0100 Subject: [PATCH 4/4] 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', },