Modified: kylin/site/docs/gettingstarted/faq.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/gettingstarted/faq.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/gettingstarted/faq.html (original)
+++ kylin/site/docs/gettingstarted/faq.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/gettingstarted/faq.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/gettingstarted/faq.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1535,40 +1535,6 @@ My Cluster is running on Cloudera Distri
 <h4 id="why-kylin-calculate-the-hive-table-cardinality">Why Kylin calculate 
the HIVE table cardinality?</h4>
 <p>The cardinality of dimensions is an important measure of cube complexity. 
The higher the cardinality, the bigger the cube, and thus the longer to build 
and the slower to query. Cardinality &gt; 1,000 is worth attention and &gt; 
1,000,000 should be avoided at best effort. For optimal cube performance, try 
reduce high cardinality by categorize values or derive features.</p>
 
-<h4 id="how-to-add-new-user-or-change-the-default-password">How to add new 
user or change the default password?</h4>
-<p>Kylin web’s security is implemented with Spring security framework, where 
the kylinSecurity.xml is the main configuration file:</p>
-
-<div class="highlight"><pre><code class="language-groff" 
data-lang="groff">${KYLIN_HOME}/tomcat/webapps/kylin/WEB-INF/classes/kylinSecurity.xml</code></pre></div>
-
-<p>The password hash for pre-defined test users can be found in the profile 
“sandbox,testing” part; To change the default password, you need generate a 
new hash and then update it here, please refer to the code snippet in: <a 
href="https://stackoverflow.com/questions/25844419/spring-bcryptpasswordencoder-generate-different-password-for-same-input";>https://stackoverflow.com/questions/25844419/spring-bcryptpasswordencoder-generate-different-password-for-same-input</a><br
 />
-When you deploy Kylin for more users, switch to LDAP authentication is 
recommended; To enable LDAP authentication, update “kylin.sandbox” in 
conf/kylin.properties to false, and also configure the ldap.* properties in 
${KYLIN_HOME}/conf/kylin.properties</p>
-
-<h4 id="using-sub-query-for-un-supported-sql">Using sub-query for un-supported 
SQL</h4>
-
-<div class="highlight"><pre><code class="language-groff" 
data-lang="groff">Original SQL:
-select fact.slr_sgmt,
-sum(case when cal.RTL_WEEK_BEG_DT = '2015-09-06' then gmv else 0 end) as W36,
-sum(case when cal.RTL_WEEK_BEG_DT = '2015-08-30' then gmv else 0 end) as W35
-from ih_daily_fact fact
-inner join dw_cal_dt cal on fact.cal_dt = cal.cal_dt
-group by fact.slr_sgmt</code></pre></div>
-
-<div class="highlight"><pre><code class="language-groff" 
data-lang="groff">Using sub-query
-select a.slr_sgmt,
-sum(case when a.RTL_WEEK_BEG_DT = '2015-09-06' then gmv else 0 end) as W36,
-sum(case when a.RTL_WEEK_BEG_DT = '2015-08-30' then gmv else 0 end) as W35
-from (
-    select fact.slr_sgmt as slr_sgmt,
-    cal.RTL_WEEK_BEG_DT as RTL_WEEK_BEG_DT,
-    sum(gmv) as gmv36,
-    sum(gmv) as gmv35
-    from ih_daily_fact fact
-    inner join dw_cal_dt cal on fact.cal_dt = cal.cal_dt
-    group by fact.slr_sgmt, cal.RTL_WEEK_BEG_DT
-) a
-group by a.slr_sgmt</code></pre></div>
-
-
                                                        </article>
                                                </div>
                                        </div>
@@ -1594,34 +1560,28 @@ group by a.slr_sgmt</code></pre></div>
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/gettingstarted/terminology.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/gettingstarted/terminology.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/gettingstarted/terminology.html (original)
+++ kylin/site/docs/gettingstarted/terminology.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/gettingstarted/terminology.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/gettingstarted/terminology.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1531,34 +1531,28 @@ They are basic knowledge of Apache Kylin
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_backup_hbase.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_backup_hbase.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_backup_hbase.html (original)
+++ kylin/site/docs/howto/howto_backup_hbase.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_backup_hbase.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_backup_hbase.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1544,34 +1544,28 @@ step 2-5 in one run; Please ensure the c
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_backup_metadata.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_backup_metadata.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_backup_metadata.html (original)
+++ kylin/site/docs/howto/howto_backup_metadata.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_backup_metadata.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_backup_metadata.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1560,34 +1560,28 @@ In such cases, assuming you’re on t
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_build_cube_with_restapi.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_build_cube_with_restapi.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_build_cube_with_restapi.html (original)
+++ kylin/site/docs/howto/howto_build_cube_with_restapi.html Wed Dec  2 
07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_build_cube_with_restapi.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_build_cube_with_restapi.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1575,34 +1575,28 @@
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_cleanup_storage.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_cleanup_storage.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_cleanup_storage.html (original)
+++ kylin/site/docs/howto/howto_cleanup_storage.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_cleanup_storage.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_cleanup_storage.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1535,34 +1535,28 @@ automated garbage collection, it might n
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_jdbc.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_jdbc.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_jdbc.html (original)
+++ kylin/site/docs/howto/howto_jdbc.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_jdbc.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_jdbc.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1602,34 +1602,28 @@ List catalog, schema, table and column w
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_optimize_cubes.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_optimize_cubes.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_optimize_cubes.html (original)
+++ kylin/site/docs/howto/howto_optimize_cubes.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_optimize_cubes.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_optimize_cubes.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1705,34 +1705,28 @@ AC,A,C</p>
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_upgrade.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_upgrade.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_upgrade.html (original)
+++ kylin/site/docs/howto/howto_upgrade.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_upgrade.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_upgrade.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1576,34 +1576,28 @@ hbase  org.apache.hadoop.util.RunJar  ${
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_use_restapi.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_use_restapi.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_use_restapi.html (original)
+++ kylin/site/docs/howto/howto_use_restapi.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_use_restapi.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_use_restapi.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -3552,34 +3552,28 @@ Authorization:Basic {data}<br />
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/howto/howto_use_restapi_in_js.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/howto/howto_use_restapi_in_js.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/howto/howto_use_restapi_in_js.html (original)
+++ kylin/site/docs/howto/howto_use_restapi_in_js.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/howto/howto_use_restapi_in_js.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/howto/howto_use_restapi_in_js.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1557,34 +1557,28 @@ $.ajaxSetup({
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/index.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/index.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/index.html (original)
+++ kylin/site/docs/index.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" href="http://kylin.incubator.apache.org/docs/";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" href="http://kylin.apache.org/docs/";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1505,7 +1505,7 @@
 
 <p>1.<a href="howto/howto_jdbc.html">How to use kylin remote jdbc 
driver</a></p>
 
-<p>2.<a href="http://calcite.incubator.apache.org/";>SQL Reference</a></p>
+<p>2.<a href="http://calcite.apache.org/";>SQL Reference</a></p>
 
 <hr />
 
@@ -1557,34 +1557,28 @@
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/install/advance_settings.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/install/advance_settings.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/install/advance_settings.html (original)
+++ kylin/site/docs/install/advance_settings.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/install/advance_settings.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/install/advance_settings.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1575,34 +1575,28 @@ ldap.user.groupSearchBase=OU=Group,DC=my
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/install/hadoop_env.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/install/hadoop_env.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/install/hadoop_env.html (original)
+++ kylin/site/docs/install/hadoop_env.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/install/hadoop_env.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/install/hadoop_env.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1545,34 +1545,28 @@ ambari-server start
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/install/index.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/install/index.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/install/index.html (original)
+++ kylin/site/docs/install/index.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" href="http://kylin.incubator.apache.org/docs/install/";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" href="http://kylin.apache.org/docs/install/";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1515,7 +1515,7 @@
 <h3 id="install-kylin">Install Kylin</h3>
 
 <ol>
-  <li>Download latest Kylin binaries at <a 
href="http://kylin.incubator.apache.org/download";>http://kylin.incubator.apache.org/download</a></li>
+  <li>Download latest Kylin binaries at <a 
href="http://kylin.apache.org/download";>http://kylin.apache.org/download</a></li>
   <li>Export KYLIN_HOME pointing to the extracted Kylin folder</li>
   <li>Make sure the user has the privilege to run hadoop, hive and hbase cmd 
in shell. If you are not so sure, you can run 
<strong>bin/check-env.sh</strong>, it will print out the detail information if 
you have some environment issues.</li>
   <li>To start Kylin, simply run <strong>bin/kylin.sh start</strong></li>
@@ -1560,34 +1560,28 @@
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/install/kylin_cluster.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/install/kylin_cluster.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/install/kylin_cluster.html (original)
+++ kylin/site/docs/install/kylin_cluster.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/install/kylin_cluster.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/install/kylin_cluster.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1540,34 +1540,28 @@
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 

Modified: kylin/site/docs/install/kylin_docker.html
URL: 
http://svn.apache.org/viewvc/kylin/site/docs/install/kylin_docker.html?rev=1717573&r1=1717572&r2=1717573&view=diff
==============================================================================
--- kylin/site/docs/install/kylin_docker.html (original)
+++ kylin/site/docs/install/kylin_docker.html Wed Dec  2 07:28:32 2015
@@ -63,8 +63,8 @@
   <link rel="stylesheet" href="/assets/css/docs.css">
   <link rel="stylesheet" href="/assets/css/pygments.css">
 
-  <link rel="canonical" 
href="http://kylin.incubator.apache.org/docs/install/kylin_docker.html";>
-  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.incubator.apache.org/feed.xml"; />
+  <link rel="canonical" 
href="http://kylin.apache.org/docs/install/kylin_docker.html";>
+  <link rel="alternate" type="application/rss+xml" title="Apache Kylin" 
href="http://kylin.apache.org/feed.xml"; />
 
 <!--[if lt IE 9]> <script src="assets/js/html5shiv.js"></script> <![endif]-->
 <script>
@@ -75,11 +75,11 @@
 
   //oringal tracker for kylin.io
   ga('create', 'UA-55534813-1', 'auto');
-  //new tracker for kylin.incubator.apache.org
-  ga('create', 'UA-55534813-2', 'auto', {'name':'incubator'});
+  //new tracker for kylin.apache.org
+  ga('create', 'UA-55534813-2', 'auto', {'name':'toplevel'});
 
   ga('send', 'pageview');
-  ga('incubator.send', 'pageview');
+  ga('toplevel.send', 'pageview');
 
 
 </script>
@@ -143,7 +143,7 @@
           <li><a href="/blog">Blog</li>
           <li><a href="/cn" >中文版</a></li>  
           <li><a href="https://twitter.com/apachekylin"; target="_blank" 
class="fa fa-twitter fa-lg" title="Twitter: @ApacheKylin" ></a></li>
-          <li><a href="https://github.com/apache/incubator-kylin"; 
target="_blank" class="fa fa-github-alt fa-lg" title="Github: 
apache/incubator-kylin" ></a></li>          
+          <li><a href="https://github.com/apache/kylin"; target="_blank" 
class="fa fa-github-alt fa-lg" title="Github: apache/kylin" ></a></li>          
           <li><a href="https://www.facebook.com/kylinio"; target="_blank" 
class="fa fa-facebook fa-lg" title="Facebook: kylin.io" ></a></li>   
       </ul>      
     </div><!-- /.navbar-collapse -->
@@ -1549,34 +1549,28 @@ The cluster is pre-populated with sample
 -->
 
 <footer id="underfooter">
-  <div class="container">
-    <div class="row">
-      <div class="col-md-12 widget" >
-        <div class="widget-body" style="text-align:center">
-          <div>
-          Apache Kylin is an effort undergoing incubation at The Apache 
Software Foundation (ASF), sponsored by the Apache Incubator. Incubation is 
required of all newly accepted projects until a further review indicates that 
the infrastructure, communications, and decision making process have stabilized 
in a manner consistent with other successful ASF projects. While incubation 
status is not necessarily a reflection of the completeness or stability of the 
code, it does indicate that the project has yet to be fully endorsed by the ASF.
-          </div>
-        <a href="http://www.apache.org";>
-            <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
-        </a>
-        <a href="http://incubator.apache.org/";>
-            <img id="incubator-logo" alt="Apache Incubator" 
src="/assets/images/egg-logo.png">
-        </a>
-
-        <div id="copyright">
-            <p>Copyright &#169; 2014 The Apache Software Foundation, Licensed 
under the <a
-                    href="http://www.apache.org/licenses/LICENSE-2.0";>Apache 
License, Version 2.0</a>.<br/>Apache, the
-                Apache feather logo, and the Apache Incubator project logo are 
trademarks of The Apache Software
-                Foundation.</p>
-        </div>
+    <div class="container">
+        <div class="row">
+            <div class="col-md-12 widget">
+                <div class="widget-body" style="text-align:center">
+                    <a href="http://www.apache.org";>
+                        <img id="asf-logo" alt="Apache Software Foundation" 
src="/assets/images/feather-small.gif">
+                    </a>
+
+                    <div>
+                        The contents of this website are © 2015 Apache 
Software Foundation under the terms of the <a
+                            href="http://www.apache.org/licenses/LICENSE-2.0";> 
Apache License v2 </a>. Apache Kylin and
+                        its logo are trademarks of the Apache Software 
Foundation.
+                    </div>
+
+                </div>
+            </div>
         </div>
-      </div>
+        <!-- /row of widgets -->
+
     </div>
-    <!-- /row of widgets --> 
+    <div></div>
 
-  </div>
-  <div></div>
-  
 </footer>
 
        <script src="/assets/js/jquery-1.9.1.min.js"></script> 


Reply via email to