You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by al...@apache.org on 2021/01/26 06:35:19 UTC

[dubbo-website] branch master updated: fixes document link url. (#715)

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

albumenj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/dubbo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new f53cfa7  fixes document link url. (#715)
f53cfa7 is described below

commit f53cfa7436302b8a2a4a098eb018e81f39ecc8fb
Author: Zonglei Dong <do...@apache.org>
AuthorDate: Tue Jan 26 14:35:09 2021 +0800

    fixes document link url. (#715)
---
 content/en/docs/v2.7/user/configuration/xml.md | 2 +-
 content/en/docs/v2.7/user/examples/context.md  | 2 +-
 content/zh/docs/v2.7/user/examples/context.md  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/content/en/docs/v2.7/user/configuration/xml.md b/content/en/docs/v2.7/user/configuration/xml.md
index b515e04..25657fa 100644
--- a/content/en/docs/v2.7/user/configuration/xml.md
+++ b/content/en/docs/v2.7/user/configuration/xml.md
@@ -7,7 +7,7 @@ description: "Configure Dubbo with XML"
 ---
 
 
-> About the XML configuration items, see:[XML References](../../references/xml/introduction). If you prefer use API directly instead of using Spring, see [API Configuration](../api). Want an example of how to use configuration, see [Quick Start](../../quick-start).
+> About the XML configuration items, see:[XML References](../references/xml). If you prefer use API directly instead of using Spring, see [API Configuration](../api). Want an example of how to use configuration, see [Quick Start](../../quick-start).
 
 
 ## provider.xml demo
diff --git a/content/en/docs/v2.7/user/examples/context.md b/content/en/docs/v2.7/user/examples/context.md
index 63fb2d1..74d0aab 100644
--- a/content/en/docs/v2.7/user/examples/context.md
+++ b/content/en/docs/v2.7/user/examples/context.md
@@ -6,7 +6,7 @@ weight: 19
 description: "Dubbo context"
 ---
 
-All environment information of during the current call will put into the context,and all configuration information will convert the parameters of `URL` instance,Ref to the column of **URL parameters** at the [schema configuration reference book](../../references/xml/introduction)
+All environment information of during the current call will put into the context,and all configuration information will convert the parameters of `URL` instance,Ref to the column of **URL parameters** at the [schema configuration reference book](../references/xml)
 
 
 `RpcContext` is a temporary status recorder of `ThreadLocal`,when accept `RPC` request or send `RPC` request,The `RpcContext` will be  changed.Such as: `A` call `B` and `B` call `C`. On `B` machine,before `B` call `C`,the `RpcContext` will record the information of `A` call `B`.After `B` call `C`,the `RpcContext` record the information of `B` call `C`.
diff --git a/content/zh/docs/v2.7/user/examples/context.md b/content/zh/docs/v2.7/user/examples/context.md
index 4fff89a..ad41238 100644
--- a/content/zh/docs/v2.7/user/examples/context.md
+++ b/content/zh/docs/v2.7/user/examples/context.md
@@ -6,7 +6,7 @@ weight: 19
 description: "通过上下文存放当前调用过程中所需的环境信息"
 ---
 
-上下文中存放的是当前调用过程中所需的环境信息。所有配置信息都将转换为 URL 的参数,参见 [schema 配置参考手册](../../references/xml/introduction) 中的**对应URL参数**一列。
+上下文中存放的是当前调用过程中所需的环境信息。所有配置信息都将转换为 URL 的参数,参见 [schema 配置参考手册](../references/xml) 中的**对应URL参数**一列。
 
 RpcContext 是一个 ThreadLocal 的临时状态记录器,当接收到 RPC 请求,或发起 RPC 请求时,RpcContext 的状态都会变化。比如:A 调 B,B 再调 C,则 B 机器上,在 B 调 C 之前,RpcContext 记录的是 A 调 B 的信息,在 B 调 C 之后,RpcContext 记录的是 B 调 C 的信息。