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

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

commit 4169a7a1e59bae07c1d20cf8a45ffaf74551c3ef
Author: Huxing Zhang <huxing.zh...@gmail.com>
AuthorDate: Tue Mar 20 11:46:39 2018 +0800

    Update name and repository.
---
 index.html | 38 ++++++++++++++++++--------------------
 1 file changed, 18 insertions(+), 20 deletions(-)

diff --git a/index.html b/index.html
index b593174..60a4772 100644
--- a/index.html
+++ b/index.html
@@ -4,23 +4,21 @@
     <meta charset="UTF-8">
 
 <!-- Begin Jekyll SEO tag v2.3.0 -->
-<title>Overview | DUBBO</title>
+<title>Overview | Apache Dubbo (incubating)</title>
 <meta property="og:title" content="Overview" />
 <meta property="og:locale" content="en_US" />
 <meta name="description" content="a high-performance, java based, open source 
RPC framework" />
 <meta property="og:description" content="a high-performance, java based, open 
source RPC framework" />
-<link rel="canonical" href="http://0.0.0.0:8000/"; />
-<meta property="og:url" content="http://0.0.0.0:8000/"; />
-<meta property="og:site_name" content="DUBBO" />
+<meta property="og:site_name" content="Apache Dubbo (incubating)" />
 <script type="application/ld+json">
-{"name":"DUBBO","description":"a high-performance, java based, open source RPC 
framework","author":null,"@type":"WebSite","url":"http://0.0.0.0:8000/","publisher":null,"image":null,"headline":"Overview","dateModified":null,"datePublished":null,"sameAs":null,"mainEntityOfPage":null,"@context":"http://schema.org"}</script>
+{"name":"Apache Dubbo (incubating)","description":"a high-performance, java 
based, open source RPC 
framework","author":null,"@type":"WebSite","url":"/","publisher":null,"image":null,"headline":"Overview","dateModified":null,"datePublished":null,"sameAs":null,"mainEntityOfPage":null,"@context":"http://schema.org"}</script>
 <!-- End Jekyll SEO tag -->
 
     <meta name="description" content="a high-performance, java based, open 
source RPC framework"/>
     <meta name="viewport" content="width=device-width, initial-scale=1">
     <meta name="theme-color" content="#157878">
     <link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' 
rel='stylesheet' type='text/css'>
-    <link rel="stylesheet" 
href="/assets/css/style.css?v=1000e0dd2b89d97c1e34b5193c958216d6bb40ac">
+    <link rel="stylesheet" 
href="/assets/css/style.css?v=a67e4739268c08ba4cea72ffcdaa0efc61eda3eb">
       <!--<script>-->
       <!--var _hmt = _hmt || [];-->
       <!--(function() {-->
@@ -33,29 +31,29 @@
   </head>
   <body>
     <section class="page-header">
-      <h1 class="project-name">DUBBO</h1>
+      <h1 class="project-name">Apache Dubbo (incubating)</h1>
       <h2 class="project-tagline">a high-performance, java based, open source 
RPC framework</h2>
       
-        <a href="https://github.com/alibaba/dubbo"; class="btn">View on 
GitHub</a>
+        <a href="https://github.com/apache/incubator-dubbo"; class="btn">View 
on GitHub</a>
       
       
-        <a href="https://github.com/alibaba/dubbo/zipball/master"; 
class="btn">Download .zip</a>
-        <a href="https://github.com/alibaba/dubbo/tarball/master"; 
class="btn">Download .tar.gz</a>
+        <a href="https://github.com/apache/incubator-dubbo/zipball/master"; 
class="btn">Download .zip</a>
+        <a href="https://github.com/apache/incubator-dubbo/tarball/master"; 
class="btn">Download .tar.gz</a>
       
     </section>
 
     <section class="main-content">
       <h2 id="overview"><a href="#introduction"></a>Overview</h2>
 
-<p>Dubbo <em>|ˈdʌbəʊ|</em> is a high-performance, java based <a 
href="https://en.wikipedia.org/wiki/Remote_procedure_call";>RPC</a> framework 
open-sourced by Alibaba. As in many RPC systems, dubbo is based around the idea 
of defining a service, specifying the methods that can be called remotely with 
their parameters and return types. On the server side, the server implements 
this interface and runs a dubbo server to handle client calls. On the client 
side, the client has a stub that provi [...]
+<p>Apache Dubbo (incubating) <em>|ˈdʌbəʊ|</em> is a high-performance, java 
based <a href="https://en.wikipedia.org/wiki/Remote_procedure_call";>RPC</a> 
framework open-sourced by Alibaba. As in many RPC systems, dubbo is based 
around the idea of defining a service, specifying the methods that can be 
called remotely with their parameters and return types. On the server side, the 
server implements this interface and runs a dubbo server to handle client 
calls. On the client side, the client h [...]
 
 <p><img src="images//dubbo-architecture.png" alt="" /></p>
 
-<p>Dubbo offers three key functionalities, which include interface based 
remote call, fault tolerance &amp; load balancing, and automatic service 
registration &amp; discovery. Dubbo framework is widely adopted inside Alibaba 
and outside by other companies including <a 
href="http://www.jd.com";>jingdong</a>, <a 
href="http://www.dangdang.com";>dangdang</a>, <a 
href="https://www.qunar.com";>qunar</a>, <a 
href="https://www.kaola.com";>kaola</a>, and many others.</p>
+<p>Apache Dubbo (incubating) offers three key functionalities, which include 
interface based remote call, fault tolerance &amp; load balancing, and 
automatic service registration &amp; discovery. Apache Dubbo (incubating) 
framework is widely adopted inside Alibaba and outside by other companies 
including <a href="http://www.jd.com";>jingdong</a>, <a 
href="http://www.dangdang.com";>dangdang</a>, <a 
href="https://www.qunar.com";>qunar</a>, <a 
href="https://www.kaola.com";>kaola</a>, and many o [...]
 
 <h2 id="quick-start"><a href="#quick-start"></a>Quick start</h2>
 
-<p>This guide gets you started with dubbo in Java with a simple working 
example. You could find the complete working samples from directory 
‘dubbo-demo’ in <a href="https://github.com/alibaba/dubbo";>dubbo project</a> on 
github.</p>
+<p>This guide gets you started with dubbo in Java with a simple working 
example. You could find the complete working samples from directory 
‘dubbo-demo’ in <a href="https://github.com/apache/incubator-dubbo";>dubbo 
project</a> on github.</p>
 
 <h4 id="prerequisites">Prerequisites</h4>
 
@@ -100,7 +98,7 @@
 
 <h4 id="configure-service-provider">Configure service provider</h4>
 
-<p>The code snippet below shows how a dubbo service provider is configured 
with spring framework, which is recommended, however you could also use <a 
href="http://dubbo.io/books/dubbo-user-book-en/configuration/api.html";>API 
configuration</a> if it’s preferred.</p>
+<p>The code snippet below shows how a dubbo service provider is configured 
with spring framework, which is recommended, however you could also use <a 
href="books/dubbo-user-book-en/configuration/api.html">API configuration</a> if 
it’s preferred.</p>
 
 <div class="language-xml highlighter-rouge"><div class="highlight"><pre 
class="highlight"><code><span class="cp">&lt;?xml version="1.0" 
encoding="UTF-8"?&gt;</span>
 <span class="nt">&lt;beans</span> <span class="na">xmlns=</span><span 
class="s">"http://www.springframework.org/schema/beans";</span>
@@ -171,22 +169,22 @@
   <li>Read this excellent article <a 
href="http://www.baeldung.com/dubbo";>Introduction to Dubbo</a> to learn more on 
dubbo’s basic features.</li>
   <li>Dive deep into dubbo user guide (<a 
href="books/dubbo-user-book-en/">English</a>, <a 
href="books/dubbo-user-book/">Chinese</a>) to find more details.</li>
   <li>Read dubbo admin guide (<a 
href="books/dubbo-admin-book-en/">English</a>, <a 
href="books/dubbo-admin-book/">Chinese</a>) for dubbo application 
administration topics.</li>
-  <li>Interested in how dubbo is designed, or want to contribute? Read dubbo 
developer guide (<a href="books/dubbo-dev-book-en/">English</a>, <a 
href="books/dubbo-dev-book/">Chinese</a>), and start to <a 
href="https://github.com/alibaba/dubbo";>hack the code</a>.</li>
+  <li>Interested in how dubbo is designed, or want to contribute? Read dubbo 
developer guide (<a href="books/dubbo-dev-book-en/">English</a>, <a 
href="books/dubbo-dev-book/">Chinese</a>), and start to <a 
href="https://github.com/apache/incubator-dubbo";>hack the code</a>.</li>
   <li>Explore more side projects you may interested from <a 
href="https://github.com/dubbo";>github dubbo group</a>.</li>
 </ul>
 
 <h2 id="post-questions">Post questions</h2>
 
 <ul>
-  <li>Developer mailing list. Any questions or suggestions? Subscribe to <a 
href="https://github.com/alibaba/dubbo/issues/1393";>developer mailing list</a> 
to discuss with developers.</li>
+  <li>Developer mailing list. Any questions or suggestions? Subscribe to <a 
href="https://github.com/apache/incubator-dubbo/issues/1393";>developer mailing 
list</a> to discuss with developers.</li>
   <li>Gitter channel. Join <a href="https://gitter.im/alibaba/dubbo";><img 
class="inline-image" src="https://badges.gitter.im/alibaba/dubbo.svg"; /></a> to 
discuss with users and developers in real time.</li>
-  <li>Contribute on Github. As dubbo is hosted at <a 
href="https://github.com/alibaba/dubbo";>Github</a>. Feel free to fork it, issue 
a pull request or report a bug, and join the discussion.</li>
-  <li>Reporting security vulnerability. If you find a security vulnerability, 
please send an email to secur...@dubbo.apache.org, which is a private mailing 
list and nothing will go public unless we announce it.</li>
+  <li>Contribute on Github. As dubbo is hosted at <a 
href="https://github.com/apache/incubator-dubbo";>Github</a>. Feel free to fork 
it, issue a pull request or report a bug, and join the discussion.</li>
+  <li>Reporting security vulnerability. If you find a security vulnerability, 
please send an email to secur...@dubbo.incubator.apache.org, which is a private 
mailing list and nothing will go public unless we announce it.</li>
 </ul>
 
 <h2 id="we-need-your-help">We need your help</h2>
 
-<p>We are now collecting dubbo user info in order to help us to improve dubbo 
better, pls. kindly help us by providing yours on <a 
href="https://github.com/alibaba/dubbo/issues/1012";>issue#1012: Wanted: who’s 
using dubbo</a>, thanks :)</p>
+<p>We are now collecting dubbo user info in order to help us to improve dubbo 
better, pls. kindly help us by providing yours on <a 
href="https://github.com/apache/incubator-dubbo/issues/1012";>issue#1012: 
Wanted: who’s using dubbo</a>, thanks :)</p>
 
 <h2 id="disclaimer">DISCLAIMER</h2>
 
@@ -194,7 +192,7 @@
 
 
       <footer class="site-footer">
-          <span class="site-footer-credits">&copy; 2012-2017 | dubbo team | 
visit <a href="https://www.aliyun.com/product/edas";>enterprise edition</a> on 
<a href="https://www.alibabacloud.com";><img class="inline-image" 
src="images/aliyun.png"/></a></span>
+          <span class="site-footer-credits">&copy; 2012-2018 | Apache Dubbo 
(incubating) team | visit <a 
href="https://www.aliyun.com/product/edas";>enterprise edition</a> on <a 
href="https://www.alibabacloud.com";><img class="inline-image" 
src="images/aliyun.png"/></a></span>
       </footer>
     </section>
 

-- 
To stop receiving notification emails like this one, please contact
hux...@apache.org.

Reply via email to