This is an automated email from the ASF dual-hosted git repository.
young pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-website.git
The following commit(s) were added to refs/heads/master by this push:
new 99d10e35e0a chore: adjust `apisix-dashboard` docs and the download
link (#1912)
99d10e35e0a is described below
commit 99d10e35e0a37ca392e7b016ffeab52a847e5c7f
Author: YYYoung <[email protected]>
AuthorDate: Wed Sep 17 14:58:17 2025 +0800
chore: adjust `apisix-dashboard` docs and the download link (#1912)
---
blog/i18n/zh/docusaurus-theme-classic/navbar.json | 10 +---------
config/docs.js | 12 ------------
config/downloads.js | 15 ---------------
config/navbar.js | 2 +-
doc/docusaurus.config.js | 18 ------------------
doc/i18n/zh/docusaurus-theme-classic/navbar.json | 4 ----
scripts/common.js | 5 -----
website/i18n/zh/docusaurus-theme-classic/navbar.json | 4 ----
8 files changed, 2 insertions(+), 68 deletions(-)
diff --git a/blog/i18n/zh/docusaurus-theme-classic/navbar.json
b/blog/i18n/zh/docusaurus-theme-classic/navbar.json
index d596978984e..c83e21ef423 100644
--- a/blog/i18n/zh/docusaurus-theme-classic/navbar.json
+++ b/blog/i18n/zh/docusaurus-theme-classic/navbar.json
@@ -51,18 +51,10 @@
"message": "APISIX",
"description": "Navbar item with label APISIX"
},
- "item.label.APISIX Dashboard": {
- "message": "APISIX Dashboard",
- "description": "Navbar item with label APISIX Dashboard"
- },
"item.label.Apache APISIX®️": {
"message": "Apache APISIX®️",
"description": "Navbar item with label Apache APISIX®️"
},
- "item.label.Apache APISIX®️ Dashboard": {
- "message": "Apache APISIX®️ Dashboard",
- "description": "Navbar item with label Apache APISIX®️ Dashboard"
- },
"item.label.Apache APISIX®️ Ingress Controller": {
"message": "Apache APISIX®️ Ingress Controller",
"description": "Navbar item with label Apache APISIX®️ Ingress Controller"
@@ -91,4 +83,4 @@
"message": "General",
"description": "Navbar item with label General"
}
-}
\ No newline at end of file
+}
diff --git a/config/docs.js b/config/docs.js
index 345a6184def..3bf37381dfe 100644
--- a/config/docs.js
+++ b/config/docs.js
@@ -10,18 +10,6 @@ module.exports = [
releaseDate: '2025-06-27',
firstDocPath: '/getting-started',
},
- {
- name: 'APISIX® Dashboard',
- nameInParamCase: 'dashboard',
- description:
- 'Designed to make it as easy as possible for users to operate Apache
APISIX through a frontend interface.',
- shape: 'square',
- color: '#10B981',
- githubRepo: 'apache/apisix-dashboard',
- version: '3.0.0',
- releaseDate: '2023-02-01',
- firstDocPath: '/USER_GUIDE',
- },
{
name: 'APISIX® Ingress Controller',
nameInParamCase: 'ingress-controller',
diff --git a/config/downloads.js b/config/downloads.js
index 6fba2e56ac2..957a6f6b2af 100644
--- a/config/downloads.js
+++ b/config/downloads.js
@@ -15,21 +15,6 @@ module.exports = [
releaseDate: '2025-06-27',
firstDocPath: '/getting-started',
},
- {
- name: 'APISIX® Dashboard',
- nameInParamCase: 'dashboard',
- description:
- 'Designed to make it as easy as possible for users to operate Apache
APISIX through a frontend interface.',
- shape: 'square',
- color: '#10B981',
- githubRepo: 'apache/apisix-dashboard',
- githubBranch: 'master',
- downloadPath: 'apisix/dashboard/3.0.0/apache-apisix-dashboard-3.0.0-src',
- dockerhubPath: 'apisix-dashboard',
- version: '3.0.0',
- releaseDate: '2023-02-01',
- firstDocPath: '/USER_GUIDE',
- },
{
name: 'APISIX® Ingress Controller',
nameInParamCase: 'ingress-controller',
diff --git a/config/navbar.js b/config/navbar.js
index 6040350d852..2d1e31c9b9f 100644
--- a/config/navbar.js
+++ b/config/navbar.js
@@ -12,7 +12,7 @@ module.exports = [
},
{
label: 'Apache APISIX®️ Dashboard',
- to: '/docs/dashboard/USER_GUIDE',
+ to: '/docs/apisix/next/dashboard',
target: '_parent',
},
{
diff --git a/doc/docusaurus.config.js b/doc/docusaurus.config.js
index 14aebb49bae..a8675f90565 100644
--- a/doc/docusaurus.config.js
+++ b/doc/docusaurus.config.js
@@ -92,24 +92,6 @@ module.exports = {
},
},
],
- [
- '@docusaurus/plugin-content-docs',
- {
- id: 'docs-apisix-dashboard',
- path: 'docs/apisix-dashboard',
- showLastUpdateAuthor: true,
- showLastUpdateTime: true,
- includeCurrentVersion: false,
- routeBasePath: '/docs/dashboard',
- sidebarPath: require.resolve('./docs/apisix-dashboard/sidebars.json'),
- editUrl(props) {
- return getEditUrl({
- ...props,
- projectName: 'apisix-dashboard',
- });
- },
- },
- ],
[
'@docusaurus/plugin-content-docs',
{
diff --git a/doc/i18n/zh/docusaurus-theme-classic/navbar.json
b/doc/i18n/zh/docusaurus-theme-classic/navbar.json
index 1df3fb8c1a7..1462162be93 100644
--- a/doc/i18n/zh/docusaurus-theme-classic/navbar.json
+++ b/doc/i18n/zh/docusaurus-theme-classic/navbar.json
@@ -50,9 +50,5 @@
"item.label.APISIX": {
"message": "APISIX",
"description": "Navbar item with label APISIX"
- },
- "item.label.APISIX Dashboard": {
- "message": "APISIX Dashboard",
- "description": "Navbar item with label APISIX Dashboard"
}
}
diff --git a/scripts/common.js b/scripts/common.js
index 0e334205633..0dc59e8b976 100644
--- a/scripts/common.js
+++ b/scripts/common.js
@@ -9,11 +9,6 @@ const projects = [
branch: 'master',
hasChangelog: true,
},
- {
- name: 'apisix-dashboard',
- branch: 'master',
- hasChangelog: true,
- },
{
name: 'apisix-docker',
branch: 'master',
diff --git a/website/i18n/zh/docusaurus-theme-classic/navbar.json
b/website/i18n/zh/docusaurus-theme-classic/navbar.json
index 1df3fb8c1a7..1462162be93 100644
--- a/website/i18n/zh/docusaurus-theme-classic/navbar.json
+++ b/website/i18n/zh/docusaurus-theme-classic/navbar.json
@@ -50,9 +50,5 @@
"item.label.APISIX": {
"message": "APISIX",
"description": "Navbar item with label APISIX"
- },
- "item.label.APISIX Dashboard": {
- "message": "APISIX Dashboard",
- "description": "Navbar item with label APISIX Dashboard"
}
}