This is an automated email from the ASF dual-hosted git repository.

sunyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git


The following commit(s) were added to refs/heads/master by this push:
     new d5babce  fix(doc): fix some document url (#1566)
d5babce is described below

commit d5babce089da475240abfc21abe7c815cc31bc27
Author: AnJia <[email protected]>
AuthorDate: Wed Mar 10 19:58:19 2021 +0800

    fix(doc): fix some document url (#1566)
---
 docs/en/latest/FAQ.md                              | 4 ++--
 docs/en/latest/IMPORT_OPENAPI_USER_GUIDE.md        | 2 +-
 docs/en/latest/back-end-e2e.md                     | 2 +-
 web/src/components/RawDataEditor/RawDataEditor.tsx | 2 +-
 web/src/pages/Route/List.tsx                       | 2 +-
 web/src/pages/ServerInfo/List.tsx                  | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/docs/en/latest/FAQ.md b/docs/en/latest/FAQ.md
index 448d0f5..a83f005 100644
--- a/docs/en/latest/FAQ.md
+++ b/docs/en/latest/FAQ.md
@@ -39,7 +39,7 @@ Since the Dashboard caches the jsonschema data of the plugins 
in Apache APISIX,
 
 1. Confirm that your APISIX is running and has enabled control API (enabled by 
default and only runs local access)
    Refer to the beginning in:
-   https://github.com/apache/apisix/blob/master/docs/en/latest/control-api.md
+   
[https://apisix.apache.org/docs/apisix/control-api](https://apisix.apache.org/docs/apisix/control-api)
 
 2. Execute the following commands to export jsonchema on your APISIX server 
(if it is configured for non-local access, it does not need to be executed on 
your APISIX server, and the access IP and port should be modified accordingly)
 
@@ -47,7 +47,7 @@ Since the Dashboard caches the jsonschema data of the plugins 
in Apache APISIX,
 curl 127.0.0.1:9090/v1/schema > schema.json
 ```
 
-Refer to 
https://github.com/apache/apisix/blob/master/docs/en/latest/control-api.md#get-v1schema
+Refer to 
[https://apisix.apache.org/docs/apisix/control-api#get-v1schema](https://apisix.apache.org/docs/apisix/control-api#get-v1schema)
 
 3. Copy the exported `schema.json` to the `conf` directory in the Dashboard 
working directory (About working directory, please refer to 
https://github.com/apache/apisix-dashboard/blob/master/docs/en/latest/deploy.md#working-directory)
 
diff --git a/docs/en/latest/IMPORT_OPENAPI_USER_GUIDE.md 
b/docs/en/latest/IMPORT_OPENAPI_USER_GUIDE.md
index 67281bb..45c5d15 100644
--- a/docs/en/latest/IMPORT_OPENAPI_USER_GUIDE.md
+++ b/docs/en/latest/IMPORT_OPENAPI_USER_GUIDE.md
@@ -41,7 +41,7 @@ when we import routes from OAS3.0, some fields in OAS will be 
missed because the
 
 ## Extended fields
 
-There are some fields required in APISIX Route but are not included in the 
properties of OAS3.0, we added some extended fields such as upstream, plugins, 
hosts and so on. All extensions start with x-apisix. See 
[reference](https://github.com/apache/apisix/blob/master/doc/admin-api.md#route)
 For more details of the APISIX Route Properties
+There are some fields required in APISIX Route but are not included in the 
properties of OAS3.0, we added some extended fields such as upstream, plugins, 
hosts and so on. All extensions start with x-apisix. See 
[reference](https://apisix.apache.org/docs/apisix/admin-api/#route) For more 
details of the APISIX Route Properties
 
 | Extended fields           | APISIX Route Properties |
 | ------------------------- | ----------------------- |
diff --git a/docs/en/latest/back-end-e2e.md b/docs/en/latest/back-end-e2e.md
index d6aabf3..7b81dd5 100644
--- a/docs/en/latest/back-end-e2e.md
+++ b/docs/en/latest/back-end-e2e.md
@@ -29,7 +29,7 @@ This document describes how to use E2E test locally.
 
 2. To start the `manager-api` project locally, please refer to 
[develop](./develop.md) web section.
 
-3. To start the etcd locally, please refer to [etcd 
start](https://github.com/apache/apisix/blob/master/docs/en/latest/install-dependencies.md)
 web section.
+3. To start the etcd locally, please refer to [etcd 
start](https://apisix.apache.org/docs/apisix/install-dependencies/) web section.
 
 4. To start the `apisix` project locally, please refer to [apisix 
start](https://github.com/apache/apisix#get-started) web section.
 
diff --git a/web/src/components/RawDataEditor/RawDataEditor.tsx 
b/web/src/components/RawDataEditor/RawDataEditor.tsx
index 9274148..ad8e209 100644
--- a/web/src/components/RawDataEditor/RawDataEditor.tsx
+++ b/web/src/components/RawDataEditor/RawDataEditor.tsx
@@ -50,7 +50,7 @@ const RawDataEditor: React.FC<Props> = ({ visible, readonly = 
true, type, data =
               icon={<LinkOutlined />}
               onClick={() => {
                 window.open(
-                  
`https://github.com/apache/apisix/blob/master/doc/admin-api.md#${type}`,
+                  `https://apisix.apache.org/docs/apisix/admin-api#${type}`,
                 );
               }}
               key={1}
diff --git a/web/src/pages/Route/List.tsx b/web/src/pages/Route/List.tsx
index e82dfbe..dcc8e3d 100644
--- a/web/src/pages/Route/List.tsx
+++ b/web/src/pages/Route/List.tsx
@@ -494,7 +494,7 @@ const Page: React.FC = () => {
           <p>{formatMessage({ id: 'page.route.instructions' })}:</p>
           <p>
             <a
-              
href="https://github.com/apache/apisix-dashboard/blob/master/docs/IMPORT_OPENAPI_USER_GUIDE.md";
+              
href="https://apisix.apache.org/docs/dashboard/IMPORT_OPENAPI_USER_GUIDE";
               target="_blank"
             >
               1.{' '}
diff --git a/web/src/pages/ServerInfo/List.tsx 
b/web/src/pages/ServerInfo/List.tsx
index 9823381..8d297fc 100644
--- a/web/src/pages/ServerInfo/List.tsx
+++ b/web/src/pages/ServerInfo/List.tsx
@@ -111,7 +111,7 @@ const ServerInfo: React.FC = () => {
             <Form.Item style={{ marginBottom: 0, fontSize: '12px', color: 
'#00000073' }}>
               {formatMessage({ id: 'page.systemStatus.desc' })}&nbsp;
               <a
-                
href="https://github.com/apache/apisix/blob/master/doc/plugins/server-info.md";
+                
href="https://apisix.apache.org/docs/apisix/plugins/server-info";
                 target="_blank"
                 rel="noreferrer"
               >

Reply via email to