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

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


The following commit(s) were added to refs/heads/asf-site by this push:
     new d1df99e  fix #123
d1df99e is described below

commit d1df99ec8338f93d3c0b5d661cec07ef4c7159b5
Author: zhuyong <[email protected]>
AuthorDate: Mon Sep 17 09:56:07 2018 +0800

    fix #123
---
 docs/zh-cn/user/demos/fault-tolerent-strategy.md   | 2 +-
 docs/zh-cn/user/references/telnet.md               | 4 ++--
 zh-cn/docs/user/demos/fault-tolerent-strategy.html | 4 ++--
 zh-cn/docs/user/demos/fault-tolerent-strategy.json | 2 +-
 zh-cn/docs/user/references/telnet.html             | 6 +++---
 zh-cn/docs/user/references/telnet.json             | 2 +-
 6 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/docs/zh-cn/user/demos/fault-tolerent-strategy.md 
b/docs/zh-cn/user/demos/fault-tolerent-strategy.md
index 4cd5054..fc74d17 100644
--- a/docs/zh-cn/user/demos/fault-tolerent-strategy.md
+++ b/docs/zh-cn/user/demos/fault-tolerent-strategy.md
@@ -14,7 +14,7 @@
 
 ## 集群容错模式
 
-可以自行扩展集群容错策略,参见:[集群扩展](../../dev/impls/load-balance.md)
+可以自行扩展集群容错策略,参见:[集群扩展](../../dev/impls/cluster.md)
 
 ### Failover Cluster
 
diff --git a/docs/zh-cn/user/references/telnet.md 
b/docs/zh-cn/user/references/telnet.md
index d9de717..eacfbbf 100644
--- a/docs/zh-cn/user/references/telnet.md
+++ b/docs/zh-cn/user/references/telnet.md
@@ -15,11 +15,11 @@ echo status | nc -i 1 localhost 20880
 ```
 
 
-status命令所检查的资源也可以扩展,参见:[扩展参考手册](/zh-cn/docs/dev/impls/status-checker.html)。
+status命令所检查的资源也可以扩展,参见:[扩展参考手册](../../dev/impls/status-checker.md)。
 
 ## 命令
 
-以下展示了 dubbo 内建的 telnet 命令的说明和用法,此外,telnet 命令还支持用户自行扩展,参见:[Telnet 
命令扩展](/zh-cn/docs/dev/impls/telnet-handler.html)。
+以下展示了 dubbo 内建的 telnet 命令的说明和用法,此外,telnet 命令还支持用户自行扩展,参见:[Telnet 
命令扩展](../../dev/impls/telnet-handler.md)。
 
 ### `ls`
 
diff --git a/zh-cn/docs/user/demos/fault-tolerent-strategy.html 
b/zh-cn/docs/user/demos/fault-tolerent-strategy.html
index 6bd704e..cb26602 100644
--- a/zh-cn/docs/user/demos/fault-tolerent-strategy.html
+++ b/zh-cn/docs/user/demos/fault-tolerent-strategy.html
@@ -12,7 +12,7 @@
        <link rel="stylesheet" href="/build/documentation.css" />
 </head>
 <body>
-       <div id="root"><div class="documentation-page" data-reactroot="" 
data-reactid="1" data-react-checksum="-1747167247"><header 
class="header-container header-container-normal" data-reactid="2"><div 
class="header-body" data-reactid="3"><a href="/zh-cn/index.html" 
data-reactid="4"><img class="logo" src="/img/dubbo_colorful.png" 
data-reactid="5"/></a><div class="search search-normal" data-reactid="6"><span 
class="icon-search" data-reactid="7"></span></div><span class="language-switch 
language [...]
+       <div id="root"><div class="documentation-page" data-reactroot="" 
data-reactid="1" data-react-checksum="55727712"><header class="header-container 
header-container-normal" data-reactid="2"><div class="header-body" 
data-reactid="3"><a href="/zh-cn/index.html" data-reactid="4"><img class="logo" 
src="/img/dubbo_colorful.png" data-reactid="5"/></a><div class="search 
search-normal" data-reactid="6"><span class="icon-search" 
data-reactid="7"></span></div><span class="language-switch language-sw [...]
 <p>在集群调用失败时,Dubbo 提供了多种容错方案,缺省为 failover 重试。</p>
 <p><img src="../sources/images/cluster.jpg" alt="cluster"></p>
 <p>各节点关系:</p>
@@ -24,7 +24,7 @@
 <li><code>LoadBalance</code> 负责从多个 <code>Invoker</code> 
中选出具体的一个用于本次调用,选的过程包含了负载均衡算法,调用失败后,需要重选</li>
 </ul>
 <h2>集群容错模式</h2>
-<p>可以自行扩展集群容错策略,参见:<a href="../../dev/impls/load-balance.md">集群扩展</a></p>
+<p>可以自行扩展集群容错策略,参见:<a href="../../dev/impls/cluster.md">集群扩展</a></p>
 <h3>Failover Cluster</h3>
 <p>失败自动切换,当出现失败,重试其它服务器 <sup class="footnote-ref"><a href="#fn1" 
id="fnref1">[1]</a></sup>。通常用于读操作,但重试会带来更长延迟。可通过 
<code>retries=&quot;2&quot;</code> 来设置重试次数(不含第一次)。</p>
 <p>重试次数配置如下:</p>
diff --git a/zh-cn/docs/user/demos/fault-tolerent-strategy.json 
b/zh-cn/docs/user/demos/fault-tolerent-strategy.json
index 6e13be4..312faaf 100644
--- a/zh-cn/docs/user/demos/fault-tolerent-strategy.json
+++ b/zh-cn/docs/user/demos/fault-tolerent-strategy.json
@@ -1,4 +1,4 @@
 {
   "filename": "fault-tolerent-strategy.md",
-  "__html": "<h1>集群容错</h1>\n<p>在集群调用失败时,Dubbo 提供了多种容错方案,缺省为 failover 
重试。</p>\n<p><img src=\"../sources/images/cluster.jpg\" 
alt=\"cluster\"></p>\n<p>各节点关系:</p>\n<ul>\n<li>这里的 <code>Invoker</code> 是 
<code>Provider</code> 的一个可调用 <code>Service</code> 的抽象,<code>Invoker</code> 封装了 
<code>Provider</code> 地址及 <code>Service</code> 
接口信息</li>\n<li><code>Directory</code> 代表多个 <code>Invoker</code>,可以把它看成 
<code>List&lt;Invoker&gt;</code> ,但与 <code>List</code> 
不同的是,它的值可能是动态变化的,比如注册中心推送变更</li>\n<li><cod [...]
+  "__html": "<h1>集群容错</h1>\n<p>在集群调用失败时,Dubbo 提供了多种容错方案,缺省为 failover 
重试。</p>\n<p><img src=\"../sources/images/cluster.jpg\" 
alt=\"cluster\"></p>\n<p>各节点关系:</p>\n<ul>\n<li>这里的 <code>Invoker</code> 是 
<code>Provider</code> 的一个可调用 <code>Service</code> 的抽象,<code>Invoker</code> 封装了 
<code>Provider</code> 地址及 <code>Service</code> 
接口信息</li>\n<li><code>Directory</code> 代表多个 <code>Invoker</code>,可以把它看成 
<code>List&lt;Invoker&gt;</code> ,但与 <code>List</code> 
不同的是,它的值可能是动态变化的,比如注册中心推送变更</li>\n<li><cod [...]
 }
\ No newline at end of file
diff --git a/zh-cn/docs/user/references/telnet.html 
b/zh-cn/docs/user/references/telnet.html
index 1ee149f..24b46f7 100644
--- a/zh-cn/docs/user/references/telnet.html
+++ b/zh-cn/docs/user/references/telnet.html
@@ -12,7 +12,7 @@
        <link rel="stylesheet" href="/build/documentation.css" />
 </head>
 <body>
-       <div id="root"><div class="documentation-page" data-reactroot="" 
data-reactid="1" data-react-checksum="1893426689"><header 
class="header-container header-container-normal" data-reactid="2"><div 
class="header-body" data-reactid="3"><a href="/zh-cn/index.html" 
data-reactid="4"><img class="logo" src="/img/dubbo_colorful.png" 
data-reactid="5"/></a><div class="search search-normal" data-reactid="6"><span 
class="icon-search" data-reactid="7"></span></div><span class="language-switch 
language- [...]
+       <div id="root"><div class="documentation-page" data-reactroot="" 
data-reactid="1" data-react-checksum="1989041721"><header 
class="header-container header-container-normal" data-reactid="2"><div 
class="header-body" data-reactid="3"><a href="/zh-cn/index.html" 
data-reactid="4"><img class="logo" src="/img/dubbo_colorful.png" 
data-reactid="5"/></a><div class="search search-normal" data-reactid="6"><span 
class="icon-search" data-reactid="7"></span></div><span class="language-switch 
language- [...]
 <p>从 <code>2.0.5</code> 版本开始,dubbo 开始支持通过 telnet 命令来进行服务治理。</p>
 <h2>使用</h2>
 <pre><code class="language-sh">telnet localhost 20880
@@ -20,9 +20,9 @@
 <p>或者:</p>
 <pre><code class="language-sh"><span class="hljs-built_in">echo</span> status 
| nc -i 1 localhost 20880
 </code></pre>
-<p>status命令所检查的资源也可以扩展,参见:<a 
href="/zh-cn/docs/dev/impls/status-checker.html">扩展参考手册</a>。</p>
+<p>status命令所检查的资源也可以扩展,参见:<a 
href="../../dev/impls/status-checker.md">扩展参考手册</a>。</p>
 <h2>命令</h2>
-<p>以下展示了 dubbo 内建的 telnet 命令的说明和用法,此外,telnet 命令还支持用户自行扩展,参见:<a 
href="/zh-cn/docs/dev/impls/telnet-handler.html">Telnet 命令扩展</a>。</p>
+<p>以下展示了 dubbo 内建的 telnet 命令的说明和用法,此外,telnet 命令还支持用户自行扩展,参见:<a 
href="../../dev/impls/telnet-handler.md">Telnet 命令扩展</a>。</p>
 <h3><code>ls</code></h3>
 <ol start="0">
 <li><code>ls</code>: 显示服务列表</li>
diff --git a/zh-cn/docs/user/references/telnet.json 
b/zh-cn/docs/user/references/telnet.json
index 48e976f..f9f6713 100644
--- a/zh-cn/docs/user/references/telnet.json
+++ b/zh-cn/docs/user/references/telnet.json
@@ -1,4 +1,4 @@
 {
   "filename": "telnet.md",
-  "__html": "<h1>Telnet 命令参考手册</h1>\n<p>从 <code>2.0.5</code> 版本开始,dubbo 开始支持通过 
telnet 命令来进行服务治理。</p>\n<h2>使用</h2>\n<pre><code class=\"language-sh\">telnet 
localhost 20880\n</code></pre>\n<p>或者:</p>\n<pre><code 
class=\"language-sh\"><span class=\"hljs-built_in\">echo</span> status | nc -i 
1 localhost 20880\n</code></pre>\n<p>status命令所检查的资源也可以扩展,参见:<a 
href=\"/zh-cn/docs/dev/impls/status-checker.html\">扩展参考手册</a>。</p>\n<h2>命令</h2>\n<p>以下展示了
 dubbo 内建的 telnet 命令的说明和用法,此外,telnet 命令还支持用户自行扩展,参见 [...]
+  "__html": "<h1>Telnet 命令参考手册</h1>\n<p>从 <code>2.0.5</code> 版本开始,dubbo 开始支持通过 
telnet 命令来进行服务治理。</p>\n<h2>使用</h2>\n<pre><code class=\"language-sh\">telnet 
localhost 20880\n</code></pre>\n<p>或者:</p>\n<pre><code 
class=\"language-sh\"><span class=\"hljs-built_in\">echo</span> status | nc -i 
1 localhost 20880\n</code></pre>\n<p>status命令所检查的资源也可以扩展,参见:<a 
href=\"../../dev/impls/status-checker.md\">扩展参考手册</a>。</p>\n<h2>命令</h2>\n<p>以下展示了
 dubbo 内建的 telnet 命令的说明和用法,此外,telnet 命令还支持用户自行扩展,参见:<a href [...]
 }
\ No newline at end of file

Reply via email to