You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by lu...@apache.org on 2015/07/15 08:44:14 UTC

[06/43] incubator-kylin git commit: KYLIN-884 re-structure website, using new menu, move to root dir

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/assets/js/main.js
----------------------------------------------------------------------
diff --git a/docs/website/assets/js/main.js b/docs/website/assets/js/main.js
deleted file mode 100644
index 747ca2c..0000000
--- a/docs/website/assets/js/main.js
+++ /dev/null
@@ -1,74 +0,0 @@
-jQuery(document).ready(function ($) {
-	
-	
-  
-	
-
-    //parallax effect
-    var parallax_animation = function () {
-        $('.parallax').each(function (i, obj) {
-            var speed = $(this).attr('parallax-speed');
-            if (speed) {
-                var background_pos = '-' + (window.pageYOffset / speed) + "px";
-                $(this).css('background-position', 'center ' + background_pos);
-            }
-        });
-    }
-
-
-
-
-   // page elements animation 
-    var image_animation = function () {
-        //var diagramTop = $('#diagram').offset().top;
-		var coremTop = $('#core').offset().top;
-
-        
-        var scroll_top = $(window).scrollTop();
-        var currentPosition = scroll_top + 320;
-
-        
-
-        if (coremTop< currentPosition) {
-
-            $('#core').addClass("animated fadeInRight");
-        } else {
-            $('#core').removeClass("animated fadeInRight");
-        }
-
-    }
-	
-	
-	
-	
-	//document page 
-	$( "#content-container" ).load("docs/What-should-I-use-Kylin-for.md");
-	$( "#left-menu li" ).eq(0).css("background-color", "#efefef");
-
-    $( "#left-menu li" ).click(function(){
-		var selectedID = $(this).attr("id");
-		$("#content-container").load( "docs/"+selectedID+"-content.html", function() { $(this).fadeIn(500);});
-		$(this).css("background-color", "#efefef");
-		$(this).siblings().css("background-color", "transparent")
-		});
- 
-  $('#nav-wrapper').height($("#nav").height());
-    
-    $('#nav').affix({
-        offset: { top: $('#nav').offset().top }
-    });
-	
-
-
-
-    $(document).scroll(function () {
-        
-        parallax_animation();
-		image_animation();
-       
-
-    });
-
-
-
-});
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/assets/js/nnav.js
----------------------------------------------------------------------
diff --git a/docs/website/assets/js/nnav.js b/docs/website/assets/js/nnav.js
deleted file mode 100644
index 3554118..0000000
--- a/docs/website/assets/js/nnav.js
+++ /dev/null
@@ -1,16 +0,0 @@
-$(function() {
-	var myNav = $("#bs-example-navbar-collapse-1 a"),i;
-	for(i=0;i<myNav.length;i++) {
-		var links = myNav.eq(i).attr("href"), myURL = document.URL;
-		if (links != "/" & links != "/cn") {
-			if(myURL.indexOf(links) != -1) {
-				myNav.eq(i).attr('class','nnav');
-				myNav.eq(0).attr('class','nnav-home');
-				break;
-			}
-		}
-		else if (links == "/" | links == "/cn")  {
-			myNav.eq(0).attr('class','nnav');
-		}
-	}
-})

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/assets/js/nside.js
----------------------------------------------------------------------
diff --git a/docs/website/assets/js/nside.js b/docs/website/assets/js/nside.js
deleted file mode 100644
index 35ec49e..0000000
--- a/docs/website/assets/js/nside.js
+++ /dev/null
@@ -1,13 +0,0 @@
-$(function() {
-	var myNav1 = $("#nside1 .list-group"),i,j;
-	for(i=0;i<myNav1.length;i++) {
-		var myid = myNav1.eq(i).attr("id");
-		var myNav2 = $("#" + myid + " a");
-		for(j=0;j<myNav2.length;j++) {
-			var links = myNav2.eq(j).attr("href"), myURL = document.URL;
-			if(myURL.indexOf(links) != -1) {
-				myNav2.eq(j).attr('class','nside');
-			}
-		}
-	}
-})

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/blog/index.md
----------------------------------------------------------------------
diff --git a/docs/website/blog/index.md b/docs/website/blog/index.md
deleted file mode 100644
index 5574ce6..0000000
--- a/docs/website/blog/index.md
+++ /dev/null
@@ -1,45 +0,0 @@
----
-layout: default
-title: Blog
----
-
-<main id="main" >
-<section id="first" class="main">
-    <header style="padding:2em 0 4em 0;">
-      <div class="container" >
-        <h4 class="section-title"><span> Kylin Technical Blog </span></h4>
-         <!-- second-->
-          <div id="content-container" class="animated fadeIn">
-            <div >
-            <!--
-            <p class="aboutkylin" style="font-size:1.2em">Comming Soon...</p>
-            -->
-             <ul class="post-list">
-            {% for category in site.categories %}     <!-- categories -->
-            {% if category[0]  == 'blog' %}
-            {% for post in category[1] %}
-            <li>
-            <!--
-            <span align="left" class="content-header">{{ post.date | date: "%b %-d, %Y" }}</span>
-            -->
-        <h2 align="left">
-          <a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
-        </h2>
-      </li>
-    {% endfor %}
-    {% endif %}
-    {% endfor %}
-  </ul>
-
-  <p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
-          </div>
-        </div>
-      </div>
-      <!-- /container --> 
-      
-    </header>
-  </section>
-
-  
-    
-</main>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/community/index.html~
----------------------------------------------------------------------
diff --git a/docs/website/community/index.html~ b/docs/website/community/index.html~
deleted file mode 100644
index e451fba..0000000
--- a/docs/website/community/index.html~
+++ /dev/null
@@ -1,83 +0,0 @@
-<!--
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements.  See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership.  The ASF licenses this file
-* to you under the Apache License, Version 2.0 (the
-* "License"); you may not use this file except in compliance
-* with the License.  You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
--->
-
----
-layout: default
-title: Community
----
-
-
-  <main id="main" >
-  <div class="container" >
-    <div id="zero" class=" main" >
-      <header style=" padding:2em 0 4em 0">
-        <div class="container" >
-          <h4 class="section-title"><span>Kylin Community</span></h4>
-          <div class="row" style="margin-top:-20px;">
-            <div class="col-sm-4 col-md-4">
-              <p class="big_text">EVENTS</p>
-
-
-
-
-              <p><a href="http://strataconf.com/big-data-conference-uk-2015/public/schedule/detail/40029" target="_blank">Strata+Hadoop World 2015, London </a> 
-              <br/>Date - Wednesday, May 6, 2015 <br/>
-              Kylin will be present at Strata+Hadooop World</p>
-
-              <p><a href="http://bdtc2014.hadooper.cn/m/zone/bdtc_2014" target="_blank">Big Data Technology Conference, Beijing </a> 
-              <br/>Date - Sunday, December 14, 2014 <br/>
-              Kylin be presented by Luke Han, Sr. Product Manager of Kylin</p>
-
-              <p><a href="http://www.meetup.com/Cloud-at-ebayinc/events/218914395/" target="_blank">Apache Kylin Meetup @Bay Area </a> 
-              <br/>6:00PM - 7:30PM, Thursday, December 4, 2014 <br/>
-               Learn about "Extreme OLAP engine for Hadoop - Kylin", which eBay recently Open sourced and is now an Apache Incubator Project</p>
-
-              <p><a href="http://2014ebay.csdn.net/m/zone/ebay_en/" target="_blank">Shanghai Big Data Summit 2014 </a> 
-              <br/>Date - October 25th, 2014 <br/>
-                Kylin be presented by Jiang Xu, Cheif Architect of Kylin<br/>
-                <a href="http://ebay.csdn.net/" target="_blank">Slides and Video</a></p>
-                  
-            </div>
-            
-            <div class="col-sm-4 col-md-4">
-              <p class="big_text">DISCUSSION</p>
-              <p>Developement and User maililng list: <a href="mailto:dev@kylin.incubator.apache.org" target="_blank"> dev@kylin.incubator.apache.org</a></p>
-              <p>Please subscribe by sending email to: <a href="mailto:dev-subscribe@kylin.incubator.apache.org" target="_blank">dev-subscribe@kylin.incubator.apache.org</a></p>              
-              <p>The official Kylin Twitter account: <a href="https://twitter.com/ApacheKylin" target="_blank"> @ApacheKylin</a></p>
-            </div>
-            <div class="col-sm-4 col-md-4">
-              <p class="big_text">DEVELOPMENT</p>
-              <p>All development takes place at : </p>
-              <p>Apache Git: <a href="git://git.apache.org/incubator-kylin.git" target="_blank">git://git.apache.org/incubator-kylin.git</a><br/>
-              Github Mirror: <a href="https://github.com/apache/incubator-kylin" target="_blank">https://github.com/apache/incubator-kylin</a></p>
-
-              <p>Issue tracking: <a href="https://issues.apache.org/jira/browse/KYLIN" target="_blank">Apache JIRA</a></p>
-            </div>
-          </div>
-        </div>
-        <!-- /container --> 
-        
-      </header>
-    </div>
-    <!-- / section --> 
-  </div>
-  <!-- /container -->
-  
-  </header>
-  </section>
-</main>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/community/index.md
----------------------------------------------------------------------
diff --git a/docs/website/community/index.md b/docs/website/community/index.md
deleted file mode 100644
index 8d9b11a..0000000
--- a/docs/website/community/index.md
+++ /dev/null
@@ -1,64 +0,0 @@
----
-layout: default
-title: Community
----
-
-  <main id="main" >
-  <div class="container" >
-    <div id="zero" class=" main" >
-      <header style=" padding:2em 0 4em 0">
-        <div class="container" >
-          <h4 class="section-title"><span>Kylin Community</span></h4>
-          <div class="row" style="margin-top:-20px;">
-            <div class="col-sm-4 col-md-4">
-              <p class="big_text">EVENTS</p>
-
-
-
-
-              <p><a href="http://strataconf.com/big-data-conference-uk-2015/public/schedule/detail/40029" target="_blank">Strata+Hadoop World 2015, London </a> 
-              <br/>Date - Wednesday, May 6, 2015 <br/>
-              Kylin will be present at Strata+Hadooop World</p>
-
-              <p><a href="http://bdtc2014.hadooper.cn/m/zone/bdtc_2014" target="_blank">Big Data Technology Conference, Beijing </a> 
-              <br/>Date - Sunday, December 14, 2014 <br/>
-              Kylin be presented by Luke Han, Sr. Product Manager of Kylin</p>
-
-              <p><a href="http://www.meetup.com/Cloud-at-ebayinc/events/218914395/" target="_blank">Apache Kylin Meetup @Bay Area </a> 
-              <br/>6:00PM - 7:30PM, Thursday, December 4, 2014 <br/>
-               Learn about "Extreme OLAP engine for Hadoop - Kylin", which eBay recently Open sourced and is now an Apache Incubator Project</p>
-
-              <p><a href="http://2014ebay.csdn.net/m/zone/ebay_en/" target="_blank">Shanghai Big Data Summit 2014 </a> 
-              <br/>Date - October 25th, 2014 <br/>
-                Kylin be presented by Jiang Xu, Cheif Architect of Kylin<br/>
-                <a href="http://ebay.csdn.net/" target="_blank">Slides and Video</a></p>
-                  
-            </div>
-            
-            <div class="col-sm-4 col-md-4">
-              <p class="big_text">DISCUSSION</p>
-              <p>Developement and User maililng list: <a href="mailto:dev@kylin.incubator.apache.org" target="_blank"> dev@kylin.incubator.apache.org</a></p>
-              <p>Please subscribe by sending email to: <a href="mailto:dev-subscribe@kylin.incubator.apache.org" target="_blank">dev-subscribe@kylin.incubator.apache.org</a></p>              
-              <p>The official Kylin Twitter account: <a href="https://twitter.com/ApacheKylin" target="_blank"> @ApacheKylin</a></p>
-            </div>
-            <div class="col-sm-4 col-md-4">
-              <p class="big_text">DEVELOPMENT</p>
-              <p>All development takes place at : </p>
-              <p>Apache Git: <a href="git://git.apache.org/incubator-kylin.git" target="_blank">git://git.apache.org/incubator-kylin.git</a><br/>
-              Github Mirror: <a href="https://github.com/apache/incubator-kylin" target="_blank">https://github.com/apache/incubator-kylin</a></p>
-
-              <p>Issue tracking: <a href="https://issues.apache.org/jira/browse/KYLIN" target="_blank">Apache JIRA</a></p>
-            </div>
-          </div>
-        </div>
-        <!-- /container --> 
-        
-      </header>
-    </div>
-    <!-- / section --> 
-  </div>
-  <!-- /container -->
-  
-  </header>
-  </section>
-</main>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/css/main.scss
----------------------------------------------------------------------
diff --git a/docs/website/css/main.scss b/docs/website/css/main.scss
deleted file mode 100755
index f077752..0000000
--- a/docs/website/css/main.scss
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements.  See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License.  You may obtain a copy of the License at
- *
- *    http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
----
-# Only the main Sass file needs front matter (the dashes are enough)
----
-@charset "utf-8";
-
-
-
-// Our variables
-$base-font-family: Helvetica, Arial, sans-serif;
-$base-font-size:   16px;
-$small-font-size:  $base-font-size * 0.875;
-$base-line-height: 1.5;
-
-$spacing-unit:     30px;
-
-$text-color:       #111;
-$background-color: #fdfdfd;
-$brand-color:      #2a7ae2;
-
-$grey-color:       #828282;
-$grey-color-light: lighten($grey-color, 40%);
-$grey-color-dark:  darken($grey-color, 25%);
-
-// Width of the content area
-$content-width:    800px;
-
-$on-palm:          600px;
-$on-laptop:        800px;
-
-
-
-// Using media queries with like this:
-// @include media-query($on-palm) {
-//     .wrapper {
-//         padding-right: $spacing-unit / 2;
-//         padding-left: $spacing-unit / 2;
-//     }
-// }
-@mixin media-query($device) {
-    @media screen and (max-width: $device) {
-        @content;
-    }
-}
-
-
-
-// Import partials from `sass_dir` (defaults to `_sass`)
-@import
-        "base",
-        "layout",
-        "syntax-highlighting"
-;

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/docs/index.cn.md
----------------------------------------------------------------------
diff --git a/docs/website/docs/index.cn.md b/docs/website/docs/index.cn.md
deleted file mode 100644
index de09a90..0000000
--- a/docs/website/docs/index.cn.md
+++ /dev/null
@@ -1,52 +0,0 @@
----
-layout: docs-cn
-title: 文档
----
-
-Welcome to Apache Kylin
-------------  
-> Extreme OLAP Engine for Big Data
-
-Apache Kylin is an open source Distributed Analytics Engine, contributed by eBay Inc., provides SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets.
-
-Installation 
-------------  
-Please follow  installation & tutorial to start with Kylin.
-
-Advanced Topics
--------  
-####Connectivity
-1.[How to use kylin remote jdbc driver](docs/Tutorial/How to use kylin remote jdbc driver.md)
-
-2.[SQL Reference](https://github.com/apache/incubator-calcite/blob/master/doc/reference.md)
-
-####REST
-
-1.[Kylin Restful API List](docs/REST/Kylin Restful API List.md)
-
-2.[Build Cube with Restful API](docs/REST/Build Cube with Restful API.md)
-
-3.[How to consume Kylin REST API in javascript](docs/REST/How to consume Kylin REST API in javascript.md)
-
-####Operations
-1.[Kylin Metadata Store](docs/Operations/Kylin Metadata Store.md)
-
-2.[Export Kylin HBase data](docs/Operations/Export Kylin HBase data.md)
-
-3.[Advanced settings of Kylin environment](docs/Operations/Advanced settings of Kylin environment.md)
-
-####Test
-
-1.[Run Kylin test case with HBase Mini Cluster](docs/Test/Run Kylin test case with HBase Mini Cluster.md)
-
-
-####Technial Details
-
-1.[New meta data model structure](docs/TechInside/New meta data model structure.md)
-
-2.[Job Engine Design](docs/JobEngine/Design.md)
-
-
-## Disclaimer
-
-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.

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/docs/index.md
----------------------------------------------------------------------
diff --git a/docs/website/docs/index.md b/docs/website/docs/index.md
deleted file mode 100644
index 043501d..0000000
--- a/docs/website/docs/index.md
+++ /dev/null
@@ -1,53 +0,0 @@
----
-layout: docs
-title: Docs
----
-
-Welcome to Apache Kylin
-------------  
-> Extreme OLAP Engine for Big Data
-
-Apache Kylin is an open source Distributed Analytics Engine, contributed by eBay Inc., provides SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets.
-
-Installation 
-------------  
-Please follow  installation & tutorial to start with Kylin.
-
-Advanced Topics
--------  
-####Connectivity
-1.[How to use kylin remote jdbc driver](docs/Tutorial/How to use kylin remote jdbc driver.md)
-
-2.[SQL Reference](https://github.com/apache/incubator-calcite/blob/master/doc/reference.md)
-
-####REST
-
-1.[Kylin Restful API List](docs/REST/Kylin Restful API List.md)
-
-2.[Build Cube with Restful API](docs/REST/Build Cube with Restful API.md)
-
-3.[How to consume Kylin REST API in javascript](docs/REST/How to consume Kylin REST API in javascript.md)
-
-####Operations
-1.[Kylin Metadata Store](docs/Operations/Kylin Metadata Store.md)
-
-2.[Export Kylin HBase data](docs/Operations/Export Kylin HBase data.md)
-
-3.[Advanced settings of Kylin environment](docs/Operations/Advanced settings of Kylin environment.md)
-
-####Test
-
-1.[Run Kylin test case with HBase Mini Cluster](docs/Test/Run Kylin test case with HBase Mini Cluster.md)
-
-
-####Technial Details
-
-1.[New meta data model structure](docs/TechInside/New meta data model structure.md)
-
-2.[Job Engine Design](docs/JobEngine/Design.md)
-
-
-## Disclaimer
-
-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.
-

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/download/index.cn.md
----------------------------------------------------------------------
diff --git a/docs/website/download/index.cn.md b/docs/website/download/index.cn.md
deleted file mode 100644
index 7862e6b..0000000
--- a/docs/website/download/index.cn.md
+++ /dev/null
@@ -1,42 +0,0 @@
----
-layout: download-cn
-title: 下载
----
-__最新发布__
-
-最新发布的Apache Kylin可以从ASF网站下载::
-
-  * [Apache-Kylin-0.7.1-Incubating](http://www.apache.org/dyn/closer.cgi/incubator/kylin/0.7.1-incubating)
-  * [Release Notes](https://github.com/apache/incubator-kylin/blob/0.7-staging/docs/release_notes.md)
-  * Git Tag: [kylin-0.7.1-incubating](https://github.com/apache/incubator-kylin/tree/kylin-0.7.1-incubating)
-  * Git Commit: [6a7d07dd79ffc00ba1ece330010275b6f0715de8](https://github.com/apache/incubator-kylin/commit/6a7d07dd79ffc00ba1ece330010275b6f0715de8)
-
-__二进制包__
-
-预打包的二进制包以方便部署:
-
-  * [Kylin 二进制包](http://kylin.incubator.apache.org/download/kylin-0.7.1-incubating.tar.gz)
-  * [Installation Guide](https://github.com/apache/incubator-kylin/blob/master/docs/Installation/On%20Hadoop%20CLI%20installation.md)
-  * 从源文件生成二进制包:
-{% highlight bash %}
-git clone https://github.com/apache/incubator-kylin.git kylin  
-cd kylin   
-./script/package.sh
-{% endhighlight %}
-
-__ODBC 驱动__
-
-Apache Kylin ODBC驱动:
-
-  * [Kylin ODBC Driver](http://kylin.incubator.apache.org/download/KylinODBC.zip)
-  * _Source Code will be migrated to Apache Source Repo in next release_
-
-__开发版本 (v0.7.x)__
-
-最新的开发版本二进制包:
-
-  * [kylin-v0.7.2-incubating-SNAPSHOT](http://kylin.incubator.apache.org/download/kylin-0.7.2-incubating-SNAPSHOT.tar.gz)
-  * 更新日期: 2015-06-30
-  * Commit ID: e7fcc20d8ab6f824eb6b88b8f8fa133e284dc34f
-
-

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/download/index.md
----------------------------------------------------------------------
diff --git a/docs/website/download/index.md b/docs/website/download/index.md
deleted file mode 100644
index a8ec55f..0000000
--- a/docs/website/download/index.md
+++ /dev/null
@@ -1,44 +0,0 @@
----
-layout: download
-title: Download
----
-
-__Latest Release__
-
-The latest release of Apache Kylin can be downloaded from the ASF:
-
-  * [Apache-Kylin-0.7.1-Incubating](http://www.apache.org/dyn/closer.cgi/incubator/kylin/0.7.1-incubating)
-  * [Release Notes](https://github.com/apache/incubator-kylin/blob/0.7-staging/docs/release_notes.md)
-  * Git Tag: [kylin-0.7.1-incubating](https://github.com/apache/incubator-kylin/tree/kylin-0.7.1-incubating)
-  * Git Commit: [6a7d07dd79ffc00ba1ece330010275b6f0715de8](https://github.com/apache/incubator-kylin/commit/6a7d07dd79ffc00ba1ece330010275b6f0715de8)
-
-__Binary Package__
-
-For convenience, there's binary package also available:
-
-  * [Kylin Binary Package for Deployment](http://kylin.incubator.apache.org/download/kylin-0.7.1-incubating.tar.gz)
-  * [Installation Guide](https://github.com/apache/incubator-kylin/blob/master/docs/Installation/On%20Hadoop%20CLI%20installation.md)
-  * Generate binary package from source:
-{% highlight bash %}
-git clone https://github.com/apache/incubator-kylin.git kylin  
-cd kylin   
-./script/package.sh
-{% endhighlight %}
-
-__ODBC Driver__
-
-And ODBC Driver could be find here:
-
-  * [Kylin ODBC Driver](http://kylin.incubator.apache.org/download/KylinODBC.zip)
-  * _Source Code will be migrated to Apache Source Repo in next release_
-
-__Development Version (v0.7.x)__
-
-Here's latest development version binary package:
-
-  * [kylin-v0.7.2-incubating-SNAPSHOT](http://kylin.incubator.apache.org/download/kylin-0.7.2-incubating-SNAPSHOT.tar.gz)
-  * Updated Date: 2015-06-30
-  * Commit ID: e7fcc20d8ab6f824eb6b88b8f8fa133e284dc34f
-
-
-

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/fav.png
----------------------------------------------------------------------
diff --git a/docs/website/fav.png b/docs/website/fav.png
deleted file mode 100644
index 821bdd2..0000000
Binary files a/docs/website/fav.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/favicon.ico
----------------------------------------------------------------------
diff --git a/docs/website/favicon.ico b/docs/website/favicon.ico
deleted file mode 100644
index 9485685..0000000
Binary files a/docs/website/favicon.ico and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/feed.xml
----------------------------------------------------------------------
diff --git a/docs/website/feed.xml b/docs/website/feed.xml
deleted file mode 100644
index d2d4a6e..0000000
--- a/docs/website/feed.xml
+++ /dev/null
@@ -1,44 +0,0 @@
----
-layout: null
----
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-  Licensed under the Apache License, Version 2.0 (the "License");
-  you may not use this file except in compliance with the License.
-  You may obtain a copy of the License at
-
-    http://www.apache.org/licenses/LICENSE-2.0
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License. See accompanying LICENSE file.
--->
-
-<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
-  <channel>
-    <title>{{ site.title | xml_escape }}</title>
-    <description>{{ site.description | xml_escape }}</description>
-    <link>{{ site.url }}{{ site.baseurl }}/</link>
-    <atom:link href="{{ "/feed.xml" | prepend: site.baseurl | prepend: site.url }}" rel="self" type="application/rss+xml"/>
-    <pubDate>{{ site.time | date_to_rfc822 }}</pubDate>
-    <lastBuildDate>{{ site.time | date_to_rfc822 }}</lastBuildDate>
-    <generator>Jekyll v{{ jekyll.version }}</generator>
-    {% for post in site.posts limit:10 %}
-      <item>
-        <title>{{ post.title | xml_escape }}</title>
-        <description>{{ post.content | xml_escape }}</description>
-        <pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
-        <link>{{ post.url | prepend: site.baseurl | prepend: site.url }}</link>
-        <guid isPermaLink="true">{{ post.url | prepend: site.baseurl | prepend: site.url }}</guid>
-        {% for tag in post.tags %}
-        <category>{{ tag | xml_escape }}</category>
-        {% endfor %}
-        {% for cat in post.categories %}
-        <category>{{ cat | xml_escape }}</category>
-        {% endfor %}
-      </item>
-    {% endfor %}
-  </channel>
-</rss>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/google0f781a4ad9402c21.html
----------------------------------------------------------------------
diff --git a/docs/website/google0f781a4ad9402c21.html b/docs/website/google0f781a4ad9402c21.html
deleted file mode 100644
index 1bdaf0b..0000000
--- a/docs/website/google0f781a4ad9402c21.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!--
-* Licensed to the Apache Software Foundation (ASF) under one
-* or more contributor license agreements.  See the NOTICE file
-* distributed with this work for additional information
-* regarding copyright ownership.  The ASF licenses this file
-* to you under the Apache License, Version 2.0 (the
-* "License"); you may not use this file except in compliance
-* with the License.  You may obtain a copy of the License at
-*
-*     http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
--->
-
-google-site-verification: google0f781a4ad9402c21.html
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/1 action-build.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/1 action-build.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/1 action-build.png
deleted file mode 100644
index 136b3de..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/1 action-build.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/2 pop-up.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/2 pop-up.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/2 pop-up.png
deleted file mode 100644
index 8bae515..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/2 pop-up.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/3 end-date.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/3 end-date.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/3 end-date.png
deleted file mode 100644
index e102bd8..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/3 end-date.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4 submit.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4 submit.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4 submit.png
deleted file mode 100644
index 3dc0c7e..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4 submit.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4.1 success.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4.1 success.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4.1 success.png
deleted file mode 100644
index 00a944c..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/4.1 success.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/5 jobs-page.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/5 jobs-page.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/5 jobs-page.png
deleted file mode 100644
index 175d231..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/5 jobs-page.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/6 discard.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/6 discard.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/6 discard.png
deleted file mode 100644
index 792d1b6..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/6 discard.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/7 job-steps.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/7 job-steps.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/7 job-steps.png
deleted file mode 100644
index 664b097..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/7 job-steps.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/8 hover-step.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/8 hover-step.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/8 hover-step.png
deleted file mode 100644
index ffd6750..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/8 hover-step.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log-d.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log-d.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log-d.png
deleted file mode 100644
index dae85c9..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log-d.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log.png
deleted file mode 100644
index b844ad4..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 log.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob-d.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob-d.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob-d.png
deleted file mode 100644
index e57ae2e..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob-d.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob.png
deleted file mode 100644
index 2621695..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 mrjob.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters-d.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters-d.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters-d.png
deleted file mode 100644
index f4fd6d4..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters-d.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters.png b/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters.png
deleted file mode 100644
index 1b6053f..0000000
Binary files a/docs/website/images/Kylin-Cube-Build-and-Job-Monitoring-Tutorial/9 parameters.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/1 manage-prject.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/1 manage-prject.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/1 manage-prject.png
deleted file mode 100644
index 0127f7a..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/1 manage-prject.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/10 filter.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/10 filter.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/10 filter.png
deleted file mode 100644
index 6ae086b..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/10 filter.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting1.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting1.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting1.png
deleted file mode 100644
index 5fedf87..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting1.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting2.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting2.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting2.png
deleted file mode 100644
index 8f2dd0e..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/11 refresh-setting2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/12 advanced.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/12 advanced.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/12 advanced.png
deleted file mode 100644
index 7663ac3..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/12 advanced.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/13 overview.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/13 overview.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/13 overview.png
deleted file mode 100644
index a86c269..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/13 overview.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/2 +project.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/2 +project.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/2 +project.png
deleted file mode 100644
index 8b36313..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/2 +project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/3 new-project.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/3 new-project.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/3 new-project.png
deleted file mode 100644
index dcb574b..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/3 new-project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/3.1 pj-created.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/3.1 pj-created.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/3.1 pj-created.png
deleted file mode 100644
index aabaea8..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/3.1 pj-created.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/4 +table.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/4 +table.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/4 +table.png
deleted file mode 100644
index 5e8d896..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/4 +table.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/5 hive-table.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/5 hive-table.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/5 hive-table.png
deleted file mode 100644
index 7b4d67a..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/5 hive-table.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/6 +cube.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/6 +cube.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/6 +cube.png
deleted file mode 100644
index b5e3cc9..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/6 +cube.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/7 cube-info.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/7 cube-info.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/7 cube-info.png
deleted file mode 100644
index 51bbc0e..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/7 cube-info.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-+dim.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-+dim.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-+dim.png
deleted file mode 100644
index f4b835e..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-+dim.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-edit.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-edit.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-edit.png
deleted file mode 100644
index 6fe3846..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-edit.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-factable.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-factable.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-factable.png
deleted file mode 100644
index 6994f11..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-factable.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeA.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeA.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeA.png
deleted file mode 100644
index f7c042f..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeA.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-1.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-1.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-1.png
deleted file mode 100644
index bb19bb9..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-1.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-2.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-2.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-2.png
deleted file mode 100644
index 95f80b6..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeB-2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeC.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeC.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeC.png
deleted file mode 100644
index 1bf1c93..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeC.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeD.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeD.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeD.png
deleted file mode 100644
index 430f0fb..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/8 dim-typeD.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-+meas.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-+meas.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-+meas.png
deleted file mode 100644
index 8c0ab35..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-+meas.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-count.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-count.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-count.png
deleted file mode 100644
index af24812..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-count.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-distinct.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-distinct.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-distinct.png
deleted file mode 100644
index 6772d03..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-distinct.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-max.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-max.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-max.png
deleted file mode 100644
index 9c8e599..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-max.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-min.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-min.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-min.png
deleted file mode 100644
index 6ddab38..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-min.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-sum.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-sum.png b/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-sum.png
deleted file mode 100644
index 09cfbab..0000000
Binary files a/docs/website/images/Kylin-Cube-Creation-Tutorial/9 meas-sum.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/14 +grant.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/14 +grant.png b/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/14 +grant.png
deleted file mode 100644
index ad65a01..0000000
Binary files a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/14 +grant.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/15 grantInfo.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/15 grantInfo.png b/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/15 grantInfo.png
deleted file mode 100644
index 1a393d6..0000000
Binary files a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/15 grantInfo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 grant-user.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 grant-user.png b/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 grant-user.png
deleted file mode 100644
index 5bcc2ff..0000000
Binary files a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 grant-user.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 user-update.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 user-update.png b/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 user-update.png
deleted file mode 100644
index 98ea4d3..0000000
Binary files a/docs/website/images/Kylin-Cube-Permission-Grant-Tutorial/16 user-update.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/1 login.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/1 login.png b/docs/website/images/Kylin-Web-Tutorial/1 login.png
deleted file mode 100644
index 8356341..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/1 login.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/10 query-result.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/10 query-result.png b/docs/website/images/Kylin-Web-Tutorial/10 query-result.png
deleted file mode 100644
index 7445314..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/10 query-result.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/11 save-query-2.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/11 save-query-2.png b/docs/website/images/Kylin-Web-Tutorial/11 save-query-2.png
deleted file mode 100644
index 5ce14d5..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/11 save-query-2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/11 save-query.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/11 save-query.png b/docs/website/images/Kylin-Web-Tutorial/11 save-query.png
deleted file mode 100644
index ab63aa7..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/11 save-query.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/12 general.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/12 general.png b/docs/website/images/Kylin-Web-Tutorial/12 general.png
deleted file mode 100644
index 090df22..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/12 general.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/13 results.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/13 results.png b/docs/website/images/Kylin-Web-Tutorial/13 results.png
deleted file mode 100644
index cc17841..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/13 results.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/14 drag.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/14 drag.png b/docs/website/images/Kylin-Web-Tutorial/14 drag.png
deleted file mode 100644
index e1b889e..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/14 drag.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/15 bar-chart.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/15 bar-chart.png b/docs/website/images/Kylin-Web-Tutorial/15 bar-chart.png
deleted file mode 100644
index dc7a75d..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/15 bar-chart.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/16 pie-chart.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/16 pie-chart.png b/docs/website/images/Kylin-Web-Tutorial/16 pie-chart.png
deleted file mode 100644
index d66dced..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/16 pie-chart.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/17 line-chart.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/17 line-chart.png b/docs/website/images/Kylin-Web-Tutorial/17 line-chart.png
deleted file mode 100644
index 12d1696..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/17 line-chart.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/2 tables.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/2 tables.png b/docs/website/images/Kylin-Web-Tutorial/2 tables.png
deleted file mode 100644
index b7fd530..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/2 tables.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/3 cubes.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/3 cubes.png b/docs/website/images/Kylin-Web-Tutorial/3 cubes.png
deleted file mode 100644
index 34eee2e..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/3 cubes.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/4 form-view.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/4 form-view.png b/docs/website/images/Kylin-Web-Tutorial/4 form-view.png
deleted file mode 100644
index ab5cbd1..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/4 form-view.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/5 sql-view.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/5 sql-view.png b/docs/website/images/Kylin-Web-Tutorial/5 sql-view.png
deleted file mode 100644
index 69a4cc6..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/5 sql-view.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/6 visualization.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/6 visualization.png b/docs/website/images/Kylin-Web-Tutorial/6 visualization.png
deleted file mode 100644
index 745f2d8..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/6 visualization.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/7 access.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/7 access.png b/docs/website/images/Kylin-Web-Tutorial/7 access.png
deleted file mode 100644
index 9db1da8..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/7 access.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/7 job-steps.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/7 job-steps.png b/docs/website/images/Kylin-Web-Tutorial/7 job-steps.png
deleted file mode 100644
index 664b097..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/7 job-steps.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/8 query.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/8 query.png b/docs/website/images/Kylin-Web-Tutorial/8 query.png
deleted file mode 100644
index f30889e..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/8 query.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-Web-Tutorial/9 query-table.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-Web-Tutorial/9 query-table.png b/docs/website/images/Kylin-Web-Tutorial/9 query-table.png
deleted file mode 100644
index 1fecda4..0000000
Binary files a/docs/website/images/Kylin-Web-Tutorial/9 query-table.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/1 odbc.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/1 odbc.png b/docs/website/images/Kylin-and-Tableau-Tutorial/1 odbc.png
deleted file mode 100644
index 1a9988a..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/1 odbc.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/10 connectLive.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/10 connectLive.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/10 connectLive.jpg
deleted file mode 100644
index d28fa06..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/10 connectLive.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/11 analysis.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/11 analysis.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/11 analysis.jpg
deleted file mode 100644
index 53bf70d..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/11 analysis.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/12 edit tables.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/12 edit tables.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/12 edit tables.jpg
deleted file mode 100644
index bb7d4c6..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/12 edit tables.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/13 visual.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/13 visual.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/13 visual.jpg
deleted file mode 100644
index 74930ce..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/13 visual.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/14 publish.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/14 publish.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/14 publish.jpg
deleted file mode 100644
index b118966..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/14 publish.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/16 prepare-publish.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/16 prepare-publish.png b/docs/website/images/Kylin-and-Tableau-Tutorial/16 prepare-publish.png
deleted file mode 100644
index 8a99ab6..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/16 prepare-publish.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/17 embedded-pwd.png
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/17 embedded-pwd.png b/docs/website/images/Kylin-and-Tableau-Tutorial/17 embedded-pwd.png
deleted file mode 100644
index 3f9227b..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/17 embedded-pwd.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/18 groupby-folder.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/18 groupby-folder.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/18 groupby-folder.jpg
deleted file mode 100644
index 3e4b246..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/18 groupby-folder.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/19 custom.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/19 custom.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/19 custom.jpg
deleted file mode 100644
index 93e058d..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/19 custom.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/2 serverhost.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/2 serverhost.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/2 serverhost.jpg
deleted file mode 100644
index f06755f..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/2 serverhost.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/3 project.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/3 project.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/3 project.jpg
deleted file mode 100644
index b127a3d..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/3 project.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/4 done.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/4 done.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/4 done.jpg
deleted file mode 100644
index 1777013..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/4 done.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/5 multipleTable.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/5 multipleTable.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/5 multipleTable.jpg
deleted file mode 100644
index 9e13460..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/5 multipleTable.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable.jpg
deleted file mode 100644
index f08ab52..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable2.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable2.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable2.jpg
deleted file mode 100644
index 509d46b..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/6 facttable2.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/7 lkptable.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/7 lkptable.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/7 lkptable.jpg
deleted file mode 100644
index cd4aad6..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/7 lkptable.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/8 join.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/8 join.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/8 join.jpg
deleted file mode 100644
index 05f7780..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/8 join.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/Kylin-and-Tableau-Tutorial/9 connName.jpg
----------------------------------------------------------------------
diff --git a/docs/website/images/Kylin-and-Tableau-Tutorial/9 connName.jpg b/docs/website/images/Kylin-and-Tableau-Tutorial/9 connName.jpg
deleted file mode 100644
index 5c816d3..0000000
Binary files a/docs/website/images/Kylin-and-Tableau-Tutorial/9 connName.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/Picture1.png
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/Picture1.png b/docs/website/images/On-Hadoop-CLI-installation/Picture1.png
deleted file mode 100644
index 5b07d25..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/Picture1.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/Picture2.png
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/Picture2.png b/docs/website/images/On-Hadoop-CLI-installation/Picture2.png
deleted file mode 100644
index 26e9e4f..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/Picture2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/cube.png
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/cube.png b/docs/website/images/On-Hadoop-CLI-installation/cube.png
deleted file mode 100644
index bb84b58..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/cube.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/installation.pptx
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/installation.pptx b/docs/website/images/On-Hadoop-CLI-installation/installation.pptx
deleted file mode 100644
index 548d276..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/installation.pptx and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/job.png
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/job.png b/docs/website/images/On-Hadoop-CLI-installation/job.png
deleted file mode 100644
index 0ff57f8..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/job.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/query.png
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/query.png b/docs/website/images/On-Hadoop-CLI-installation/query.png
deleted file mode 100644
index dd30e27..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/query.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/images/On-Hadoop-CLI-installation/starthbase.png
----------------------------------------------------------------------
diff --git a/docs/website/images/On-Hadoop-CLI-installation/starthbase.png b/docs/website/images/On-Hadoop-CLI-installation/starthbase.png
deleted file mode 100644
index ca5e825..0000000
Binary files a/docs/website/images/On-Hadoop-CLI-installation/starthbase.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/index.cn.md
----------------------------------------------------------------------
diff --git a/docs/website/index.cn.md b/docs/website/index.cn.md
deleted file mode 100644
index b0d19ee..0000000
--- a/docs/website/index.cn.md
+++ /dev/null
@@ -1,91 +0,0 @@
----
-layout: default-cn
-title: 首页
----
-
-
-<main id="main" >
-  <div class="container" >
-    <div id="zero" class=" main" >
-      <header style=" padding:2em 0 4em 0">
-        <div class="container" >
-
-          <h4 class="section-title"><span>Apache Kylin 概览</span></h4>
-          <div class="row" style="margin-top:-20px;">
-            <div class="col-sm-12 col-md-12">
-              <p class="title_text"> Kylin 于2014年11月25日被接受会Apache孵化器项目</p>
-              <p class="title_text"> Apache Kylin 是由eBay开源的分布式分析引擎,提供Hadoop之上的SQL查询接口及多维分析(OLAP)能力以支持超大规模数据</p>
-              <img id="diagram" src="{{ "/assets/images/kylin_diagram.png"| prepend: site.baseurl }}"> </div>
-          </div>
-        </div>
-        <!-- /container --> 
-        
-      </header>
-    </div>
-    <!-- / section --> 
-  </div>
-  <!-- /container -->
-  
-  <section id="second" class="main">
-    <header style="background-color:#efefef;">
-      <div class="container"  >
-        <h4 class="section-title"><span> Kylin是什么? </span></h4>
-        <!-- second-->
-        <div class="row">
-          <div class="col-sm-12 col-md-12">
-            <div align="left">
-              <p> <b>- 可扩展超快OLAP引擎: </b><br/>
-              <div class="indent">Kylin是为减少在Hadoop上百亿规模数据查询延迟而设计</div>
-              </p>
-              <p> <b>- Hadoop ANSI SQL 接口: </b><br/>
-              <div class="indent">Kylin为Hadoop提供标准SQL支持大部分查询功能</div>
-              </p>
-              <p> <b>- 交互式查询能力: </b><br/>
-              <div class="indent">通过Kylin,用户可以与Hadoop数据进行亚秒级交互,在同样的数据集上提供比Hive更好的性能</div>
-              </p>
-              <p> <b>- 多维立方体(MOLAP Cube):</b><br/>
-              <div class="indent">用户能够在Kylin里为百亿以上数据集定义数据模型并构建立方体</div>
-              </p>
-              <p> <b>- 与BI工具无缝整合:</b><br/>
-              <div class="indent">Kylin提供与BI工具,如Tableau,的整合能力,即将提供对其他工具的整合</div>
-              </p>
-              <p> <b>- 其他特性:</b> <br/>
-              <div class="indent">- Job管理与监控 <br/>
-                - 压缩与编码 <br/>
-                - 增量更新 <br/>
-                - 利用HBase Coprocessor<br/>
-                - 基于HyperLogLog的Dinstinc Count近似算法 <br/>
-                - 友好的web界面以管理,监控和使用立方体 <br/>
-                - 项目及立方体级别的访问控制安全<br/>
-                - 支持LDAP </div>
-              </p>
-            </div>
-          </div>
-        </div>
-      </div>
-      <!-- /container --> 
-      
-    </header>
-  </section>
-  
-  <!-- second -->
-  <section id="first" class="main">
-    <header>
-      <div class="container" >
-        <h4 class="section-title"><span>Kylin 生态圈</span></h4>
-        <div class="row">
-          <div class="col-sm-7 col-md-7">
-            <p> </p>
-            <p><b>Kylin 核心:</b> Kylin OLAP引擎基础框架,包括元数据(Metadata)引擎,查询引擎,Job引擎及存储引擎等,同时包括REST服务器以响应客户端请求</p>
-            <p><b>扩展:</b> 支持额外功能和特性的插件</p>
-            <p><b>整合:</b> 与调度系统,ETL,监控等生命周期管理系统的整合</p>
-            <p><b>用户界面:</b> 在Kylin核心之上扩展的第三方用户界面</p>
-            <p><b>驱动:</b> ODBC 和 JDBC 驱动以支持不同的工具和产品,比如Tableau</p>
-          </div>
-          <div class="col-sm-5 col-md-5">    </div>
-        </div>
-        <!-- /container --> 
-      </div>
-    </header>
-  </section>  
-</main>

http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/ef56d6bd/docs/website/index.md
----------------------------------------------------------------------
diff --git a/docs/website/index.md b/docs/website/index.md
deleted file mode 100644
index f18a7c3..0000000
--- a/docs/website/index.md
+++ /dev/null
@@ -1,91 +0,0 @@
----
-layout: default
-title: Home
----
-
-
-<main id="main" >
-  <div class="container" >
-    <div id="zero" class=" main" >
-      <header style=" padding:2em 0 4em 0">
-        <div class="container" >
-
-          <h4 class="section-title"><span>Apache Kylin Overview</span></h4>
-          <div class="row" style="margin-top:-20px;">
-            <div class="col-sm-12 col-md-12">
-              <p class="title_text"> Kylin has been accepted as Apache Incubator Project on Nov 25, 2014.</p>
-              <p class="title_text"> Apache Kylin is an open source Distributed Analytics Engine from eBay Inc. that provides SQL interface and multi-dimensional analysis (OLAP) on Hadoop supporting extremely large datasets</p>
-              <img id="diagram" src="assets/images/kylin_diagram.png"> </div>
-          </div>
-        </div>
-        <!-- /container --> 
-        
-      </header>
-    </div>
-    <!-- / section --> 
-  </div>
-  <!-- /container -->
-  
-  <section id="second" class="main">
-    <header style="background-color:#efefef;">
-      <div class="container"  >
-        <h4 class="section-title"><span> What is Kylin? </span></h4>
-        <!-- second-->
-        <div class="row">
-          <div class="col-sm-12 col-md-12">
-            <div align="left">
-              <p> <b>- Extremely Fast OLAP Engine at Scale: </b><br/>
-              <div class="indent">Kylin is designed to reduce query latency on Hadoop for 10+ billions of rows of data</div>
-              </p>
-              <p> <b>- ANSI SQL Interface on Hadoop: </b><br/>
-              <div class="indent">Kylin offers ANSI SQL on Hadoop and supports most ANSI SQL query functions</div>
-              </p>
-              <p> <b>- Interactive Query Capability: </b><br/>
-              <div class="indent">Users can interact with Hadoop data via Kylin at sub-second latency, better than Hive queries for the same dataset</div>
-              </p>
-              <p> <b>- MOLAP Cube:</b><br/>
-              <div class="indent">User can define a data model and pre-build in Kylin with more than 10+ billions of raw data records</div>
-              </p>
-              <p> <b>- Seamless Integration with BI Tools:</b><br/>
-              <div class="indent">Kylin currently offers integration capability with BI Tools like Tableau.  Integration with Microstrategy and Excel is coming soon</div>
-              </p>
-              <p> <b>- Other Highlights:</b> <br/>
-              <div class="indent">- Job Management and Monitoring <br/>
-                - Compression and Encoding Support <br/>
-                - Incremental Refresh of Cubes <br/>
-                - Leverage HBase Coprocessor for query latency <br/>
-                - Approximate Query Capability for distinct Count (HyperLogLog) <br/>
-                - Easy Web interface to manage, build, monitor and query cubes <br/>
-                - Security capability to set ACL at Cube/Project Level <br/>
-                - Support LDAP Integration </div>
-              </p>
-            </div>
-          </div>
-        </div>
-      </div>
-      <!-- /container --> 
-      
-    </header>
-  </section>
-  
-  <!-- second -->
-  <section id="first" class="main">
-    <header>
-      <div class="container" >
-        <h4 class="section-title"><span>Kylin Ecosystem</span></h4>
-        <div class="row">
-          <div class="col-sm-7 col-md-7">
-            <p> </p>
-            <p><b>Kylin Core:</b> Fundamental framework of Kylin OLAP Engine comprises of Metadata Engine, Query Engine, Job Engine and Storage Engine to run the entire stack. It also includes a REST Server to service client requests</p>
-            <p><b>Extensions:</b> Plugins to support additional functions and features </p>
-            <p><b>Integration:</b> Lifecycle Management Support to integrate with Job Scheduler,  ETL, Monitoring and Alerting Systems </p>
-            <p><b>User Interface:</b> Allows third party users to build customized user-interface atop Kylin core</p>
-            <p><b>Drivers:</b> ODBC and JDBC drivers to support different tools and products, such as Tableau</p>
-          </div>
-          <div class="col-sm-5 col-md-5"> <img id="core" src="assets/images/core.png"> </div>
-        </div>
-        <!-- /container --> 
-      </div>
-    </header>
-  </section>  
-</main>