[1/2] incubator-carbondata git commit: [CARBONDATA-935] Define PartitionInfo model

2017-04-19 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/12-dev ebf70bca8 -> 1513700b5


[CARBONDATA-935] Define PartitionInfo model

fix javastyle error

modify partitioninfo and singlePartition

modify schema.thrift to add partitioningList

modify definition


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/ac978ad4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/ac978ad4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/ac978ad4

Branch: refs/heads/12-dev
Commit: ac978ad4b049d89c53e3904c9aa4f54f4e8abdaa
Parents: ebf70bc
Author: lucao <whuca...@gmail.com>
Authored: Tue Apr 18 14:52:18 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 23:38:48 2017 +0800

--
 .../core/metadata/schema/PartitionInfo.java | 88 +++
 .../metadata/schema/partition/Partitioning.java | 27 ++
 .../schema/partition/SinglePartition.java   | 92 
 .../core/metadata/schema/table/TableSchema.java | 14 +++
 format/src/main/thrift/schema.thrift| 26 ++
 5 files changed, 247 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/ac978ad4/core/src/main/java/org/apache/carbondata/core/metadata/schema/PartitionInfo.java
--
diff --git 
a/core/src/main/java/org/apache/carbondata/core/metadata/schema/PartitionInfo.java
 
b/core/src/main/java/org/apache/carbondata/core/metadata/schema/PartitionInfo.java
new file mode 100644
index 000..a0b87cf
--- /dev/null
+++ 
b/core/src/main/java/org/apache/carbondata/core/metadata/schema/PartitionInfo.java
@@ -0,0 +1,88 @@
+/*
+ * 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.
+ */
+
+package org.apache.carbondata.core.metadata.schema;
+
+import java.io.Serializable;
+import java.util.List;
+
+import org.apache.carbondata.core.metadata.schema.partition.Partitioning;
+import org.apache.carbondata.core.metadata.schema.partition.SinglePartition;
+import org.apache.carbondata.core.metadata.schema.table.column.ColumnSchema;
+
+/**
+ * Partition information
+ */
+public class PartitionInfo implements Serializable {
+
+  /**
+   * Partition numbers
+   */
+  private int numberOfPartitions;
+
+  /**
+   * Partition columns
+   */
+  private List columnSchemaList;
+
+  /**
+   * partition type
+   */
+  private Partitioning partitioning;
+
+  /**
+   * Partition list
+   */
+  private List partitionList;
+
+  /**
+   * @param columnSchemaList
+   * @param partitioning
+   */
+  public PartitionInfo(List columnSchemaList, Partitioning 
partitioning) {
+this.columnSchemaList = columnSchemaList;
+this.partitioning = partitioning;
+  }
+
+  /**
+   * @param columnSchemaList
+   * @param partitioning
+   * @param numberOfPartitions
+   */
+  public PartitionInfo(List columnSchemaList, Partitioning 
partitioning,
+  int numberOfPartitions) {
+this(columnSchemaList, partitioning);
+this.numberOfPartitions = numberOfPartitions;
+  }
+
+  public List getColumnSchemaList() {
+return columnSchemaList;
+  }
+
+  public Partitioning getPartitioning() {
+return partitioning;
+  }
+
+  public int getNumberOfPartitions() {
+return  numberOfPartitions;
+  }
+
+  public List getPartitionList() {
+return partitionList;
+  }
+
+}

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/ac978ad4/core/src/main/java/org/apache/carbondata/core/metadata/schema/partition/Partitioning.java
--
diff --git 
a/core/src/main/java/org/apache/carbondata/core/metadata/schema/partition/Partitioning.java
 
b/core/src/main/java/org/apache/carbondata/core/metadata/schema/partition/Partitioning.java
new file mode 100644
index 000..ca1d95b
--- /dev/null
+++ 
b/core/src/main/java/org/apache/carbondata/core/metadata/schema/partition/Partitioning.java
@@ -0,0 +1,27 @@
+/*
+ * Licensed to 

[2/2] incubator-carbondata git commit: [CARBONDATA-935] Define PartitionInfo Model This closes #810

2017-04-19 Thread chenliang613
[CARBONDATA-935] Define PartitionInfo Model This closes #810


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/1513700b
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/1513700b
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/1513700b

Branch: refs/heads/12-dev
Commit: 1513700b585c6826201bf935ad7b519c6050a364
Parents: ebf70bc ac978ad
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 19 23:39:46 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 23:39:46 2017 +0800

--
 .../core/metadata/schema/PartitionInfo.java | 88 +++
 .../metadata/schema/partition/Partitioning.java | 27 ++
 .../schema/partition/SinglePartition.java   | 92 
 .../core/metadata/schema/table/TableSchema.java | 14 +++
 format/src/main/thrift/schema.thrift| 26 ++
 5 files changed, 247 insertions(+)
--




[1/2] incubator-carbondata git commit: added alter table documentation

2017-04-19 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 8b4eec82b -> ca07119d1


added alter table documentation


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/ed922ee1
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/ed922ee1
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/ed922ee1

Branch: refs/heads/master
Commit: ed922ee1d7bfa862923ec31832260ef6bab32ae3
Parents: 8b4eec8
Author: PallaviSingh1992 <pallavisingh_1...@yahoo.co.in>
Authored: Thu Apr 13 17:09:04 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 14:46:51 2017 +0800

--
 docs/ddl-operation-on-carbondata.md | 209 ++-
 1 file changed, 176 insertions(+), 33 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/ed922ee1/docs/ddl-operation-on-carbondata.md
--
diff --git a/docs/ddl-operation-on-carbondata.md 
b/docs/ddl-operation-on-carbondata.md
index d9d5718..2983b8a 100644
--- a/docs/ddl-operation-on-carbondata.md
+++ b/docs/ddl-operation-on-carbondata.md
@@ -25,10 +25,15 @@ The following DDL operations are supported in CarbonData :
 
 * [CREATE TABLE](#create-table)
 * [SHOW TABLE](#show-table)
+* [ALTER TABLE](#alter-table)
+  - [RENAME TABLE](#rename-table)
+  - [ADD COLUMN](#add-column)
+  - [DROP COLUMNS](#drop-columns)
+  - [CHANGE DATA TYPE](#change-data-type)
 * [DROP TABLE](#drop-table)
 * [COMPACTION](#compaction)
 * [BUCKETING](#bucketing)
-* [TABLE RENAME](#table-rename)
+
 
 ## CREATE TABLE
   This command can be used to create a CarbonData table by specifying the list 
of fields along with the table properties.
@@ -133,6 +138,172 @@ TBLPROPERTIES ('COLUMN_GROUPS'='(column1, column2),
   SHOW TABLES IN ProductSchema;
 ```
 
+## ALTER TABLE
+
+The following section shall discuss the commands to modify the physical or 
logical state of the existing table(s).
+
+### **RENAME TABLE**
+
+This command is used to rename the existing table.
+```
+ALTER TABLE [db_name.]table_name RENAME TO new_table_name;
+```
+
+ Parameter Description
+| Parameter | Description  
 |
+|---|---|
+| db_Name   | Name of the database. If this parameter is left unspecified, 
the current database is selected.|
+|table_name | Name of the existing table.  
 |
+|new_table_name | New table name for the existing table.   
 |
+
+ Usage Guidelines
+
+- Queries that require the formation of path using the table name for reading 
carbon store files, running in parallel with Rename command might fail during 
the renaming operation.
+
+- Renaming of Secondary index table(s) is not permitted.
+
+ Examples:
+
+```
+ALTER TABLE carbon RENAME TO carbondata;
+```
+
+```
+ALTER TABLE test_db.carbon RENAME TO test_db.carbondata;
+```
+
+### **ADD COLUMN**
+
+This command is used to add a new column to the existing table.
+
+```
+ALTER TABLE [db_name.]table_name ADD COLUMNS (col_name data_type,...)
+TBLPROPERTIES('DICTIONARY_INCLUDE'='col_name,...',
+'DICTIONARY_EXCLUDE'='col_name,...',
+'DEFAULT.VALUE.COLUMN_NAME'='default_value');
+```
+
+ Parameter Description
+| Parameter  | Description 
  |
+||---|
+| db_Name| Name of the database. If this parameter is left 
unspecified, the current database is selected.|
+| table_name | Name of the existing table. 
  |
+| col_name data_type | Name of comma-separated column with data type. Column 
names contain letters, digits, and underscores (_). |
+
+NOTE: Do not name the column after name, tupleId, PositionId, and 
PositionReference when creating Carbon tables because they are used internally 
by UPDATE, DELETE, and secondary index.
+
+ Usage Guidelines
+
+- Apart from DICTIONARY_INCLUDE, DICTIONARY_EXCLUDE and default_value no other 
property will be read. If any other property name is specified, error will not 
be thrown, it will be ignored.
+
+- If default value is not specified, then NULL will be considered as the 
default value for the column.
+
+- For addition of column, if DIC

[2/2] incubator-carbondata git commit: [CARBONDATA-857] Added Alter Table documentation This closes #794

2017-04-19 Thread chenliang613
[CARBONDATA-857] Added Alter Table documentation This closes #794


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/ca07119d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/ca07119d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/ca07119d

Branch: refs/heads/master
Commit: ca07119d121efd8c4b2f95d0ab5cb79a4851aa50
Parents: 8b4eec8 ed922ee
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 19 14:48:04 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 14:48:04 2017 +0800

--
 docs/ddl-operation-on-carbondata.md | 209 ++-
 1 file changed, 176 insertions(+), 33 deletions(-)
--




[2/2] incubator-carbondata git commit: [CARBONDATA-894] Added license heade This closes #812

2017-04-19 Thread chenliang613
[CARBONDATA-894] Added license heade This closes #812


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/8b4eec82
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/8b4eec82
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/8b4eec82

Branch: refs/heads/master
Commit: 8b4eec82b4eb84be5aeeea7af21b691c9c5e3d20
Parents: 4d00c56 7bed7ce
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 19 14:32:20 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 14:32:20 2017 +0800

--
 .../vectorreader/AddColumnTestCases.scala  | 17 +
 .../vectorreader/ChangeDataTypeTestCases.scala | 17 +
 .../vectorreader/DropColumnTestCases.scala | 17 +
 3 files changed, 51 insertions(+)
--




[1/2] incubator-carbondata git commit: Added license header for vectorreader/AddColumnTestCases, ChangeDataTypeTestCases, DropColumnTestCases

2017-04-19 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 4d00c56eb -> 8b4eec82b


Added license header for 
vectorreader/AddColumnTestCases,ChangeDataTypeTestCases,DropColumnTestCases


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/7bed7ce8
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/7bed7ce8
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/7bed7ce8

Branch: refs/heads/master
Commit: 7bed7ce88832d04725098057603de0f3cb1514d3
Parents: 4d00c56
Author: neha <bhardwaj.neh...@gmail.com>
Authored: Tue Apr 18 13:51:53 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 14:31:14 2017 +0800

--
 .../vectorreader/AddColumnTestCases.scala  | 17 +
 .../vectorreader/ChangeDataTypeTestCases.scala | 17 +
 .../vectorreader/DropColumnTestCases.scala | 17 +
 3 files changed, 51 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/7bed7ce8/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/AddColumnTestCases.scala
--
diff --git 
a/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/AddColumnTestCases.scala
 
b/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/AddColumnTestCases.scala
index 1c7cc2a..3540900 100644
--- 
a/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/AddColumnTestCases.scala
+++ 
b/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/AddColumnTestCases.scala
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 package org.apache.spark.carbondata.restructure.vectorreader
 
 import java.math.{BigDecimal, RoundingMode}

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/7bed7ce8/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/ChangeDataTypeTestCases.scala
--
diff --git 
a/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/ChangeDataTypeTestCases.scala
 
b/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/ChangeDataTypeTestCases.scala
index ebf2ef0..56e4d2e 100644
--- 
a/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/ChangeDataTypeTestCases.scala
+++ 
b/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/ChangeDataTypeTestCases.scala
@@ -1,3 +1,20 @@
+/*
+ * 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.
+ */
+
 package org.apache.spark.carbondata.restructure.vectorreader
 
 import java.math.BigDecimal

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/7bed7ce8/integration/spark2/src/test/scala/org/apache/spark/carbondata/restructure/vectorreader/DropColumnTestCases.scala
--
diff --git 
a/integration/spark2/src/test/sca

[1/2] incubator-carbondata git commit: CacheProvider test fix

2017-04-19 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 94cc9601e -> 4d00c56eb


CacheProvider test fix


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/a49f751a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/a49f751a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/a49f751a

Branch: refs/heads/master
Commit: a49f751ac17c60e1750997b39d242c43b9ed98e3
Parents: 94cc960
Author: ravipesala 
Authored: Wed Apr 19 10:43:59 2017 +0530
Committer: ravipesala 
Committed: Wed Apr 19 10:43:59 2017 +0530

--
 .../java/org/apache/carbondata/core/cache/CacheProviderTest.java   | 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/a49f751a/core/src/test/java/org/apache/carbondata/core/cache/CacheProviderTest.java
--
diff --git 
a/core/src/test/java/org/apache/carbondata/core/cache/CacheProviderTest.java 
b/core/src/test/java/org/apache/carbondata/core/cache/CacheProviderTest.java
index 4c12259..6d7e009 100644
--- a/core/src/test/java/org/apache/carbondata/core/cache/CacheProviderTest.java
+++ b/core/src/test/java/org/apache/carbondata/core/cache/CacheProviderTest.java
@@ -74,6 +74,7 @@ public class CacheProviderTest {
 // assert that dictionary cache is an instance of Reverse dictionary cache
 assertTrue(reverseDictionaryCache instanceof ReverseDictionaryCache);
 assertFalse(reverseDictionaryCache instanceof ForwardDictionaryCache);
+cacheProvider.dropAllCache();
   }
 
   /**
@@ -114,5 +115,6 @@ public class CacheProviderTest {
 String executorCacheSize = CarbonProperties.getInstance()
 .getProperty(CarbonCommonConstants.CARBON_MAX_EXECUTOR_LRU_CACHE_SIZE);
 assertEquals(1024 * 1024 * Integer.parseInt(executorCacheSize), 
lruCacheMemorySize);
+cacheProvider.dropAllCache();
   }
 }
\ No newline at end of file



[2/2] incubator-carbondata git commit: [CARBONDATA-955] CacheProvider test fix This closes #815

2017-04-19 Thread chenliang613
[CARBONDATA-955] CacheProvider test fix This closes #815


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/4d00c56e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/4d00c56e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/4d00c56e

Branch: refs/heads/master
Commit: 4d00c56eb41054cf8a5e6985e23c3d56749bcc08
Parents: 94cc960 a49f751
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 19 14:27:49 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 19 14:27:49 2017 +0800

--
 .../java/org/apache/carbondata/core/cache/CacheProviderTest.java   | 2 ++
 1 file changed, 2 insertions(+)
--




[2/2] incubator-carbondata git commit: [CARBONDATA-899] Added Support for DecimalType and Timestamp of integration/preso for spark-2.1 This closes #779

2017-04-17 Thread chenliang613
[CARBONDATA-899] Added Support for DecimalType and Timestamp of 
integration/preso for spark-2.1 This closes #779


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/1d345efe
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/1d345efe
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/1d345efe

Branch: refs/heads/presto
Commit: 1d345efe8895ed47113359073cda0d2ea0b489ee
Parents: ca0ecbd ddf06f1
Author: chenliang613 <chenliang...@huawei.com>
Authored: Mon Apr 17 23:20:06 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Mon Apr 17 23:20:06 2017 +0800

--
 .../presto/CarbondataColumnHandle.java  |  25 ++-
 .../carbondata/presto/CarbondataConnector.java  |  10 +-
 .../presto/CarbondataConnectorFactory.java  |   5 +-
 .../carbondata/presto/CarbondataMetadata.java   |  23 +--
 .../carbondata/presto/CarbondataModule.java |   5 +
 .../carbondata/presto/CarbondataPageSource.java | 178 +++
 .../presto/CarbondataPageSourceProvider.java|  50 ++
 .../presto/CarbondataRecordCursor.java  |  60 ++-
 .../carbondata/presto/CarbondataRecordSet.java  |   8 +-
 .../presto/CarbondataRecordSetProvider.java |  12 +-
 10 files changed, 349 insertions(+), 27 deletions(-)
--




[1/2] incubator-carbondata git commit: Added support for DecimalType and Timestamp in Presto Integration with Spark2.1

2017-04-17 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/presto ca0ecbd50 -> 1d345efe8


Added support for DecimalType and Timestamp in Presto Integration with Spark2.1

Added support for DecimalType and Fixed Date and time issues

Fixed the Apache License and removed comments

Corrected indentation and spaces


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/ddf06f15
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/ddf06f15
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/ddf06f15

Branch: refs/heads/presto
Commit: ddf06f15541624a06287e211b71f0299eacb5c3e
Parents: ca0ecbd
Author: Bhavya 
Authored: Mon Apr 17 11:51:44 2017 +0530
Committer: Bhavya 
Committed: Mon Apr 17 12:17:36 2017 +0530

--
 .../presto/CarbondataColumnHandle.java  |  25 ++-
 .../carbondata/presto/CarbondataConnector.java  |  10 +-
 .../presto/CarbondataConnectorFactory.java  |   5 +-
 .../carbondata/presto/CarbondataMetadata.java   |  23 +--
 .../carbondata/presto/CarbondataModule.java |   5 +
 .../carbondata/presto/CarbondataPageSource.java | 178 +++
 .../presto/CarbondataPageSourceProvider.java|  50 ++
 .../presto/CarbondataRecordCursor.java  |  60 ++-
 .../carbondata/presto/CarbondataRecordSet.java  |   8 +-
 .../presto/CarbondataRecordSetProvider.java |  12 +-
 10 files changed, 349 insertions(+), 27 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/ddf06f15/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataColumnHandle.java
--
diff --git 
a/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataColumnHandle.java
 
b/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataColumnHandle.java
index b9152b5..4a9b7ed 100755
--- 
a/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataColumnHandle.java
+++ 
b/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataColumnHandle.java
@@ -46,6 +46,14 @@ public class CarbondataColumnHandle implements ColumnHandle {
   private final String columnUniqueId;
   private final boolean isInvertedIndex;
 
+  /**
+   * Used when this column contains decimal data.
+   */
+  private int scale;
+
+  private int precision;
+
+
   public boolean isMeasure() {
 return isMeasure;
   }
@@ -76,7 +84,9 @@ public class CarbondataColumnHandle implements ColumnHandle {
   @JsonProperty("isMeasure") boolean isMeasure,
   @JsonProperty("columnGroupId") int columnGroupId,
   @JsonProperty("columnUniqueId") String columnUniqueId,
-  @JsonProperty("isInvertedIndex") boolean isInvertedIndex) {
+  @JsonProperty("isInvertedIndex") boolean isInvertedIndex,
+  @JsonProperty("precision") int precision,
+  @JsonProperty("scale") int scale) {
 this.connectorId = requireNonNull(connectorId, "connectorId is null");
 this.columnName = requireNonNull(columnName, "columnName is null");
 this.columnType = requireNonNull(columnType, "columnType is null");
@@ -89,6 +99,8 @@ public class CarbondataColumnHandle implements ColumnHandle {
 this.columnGroupId = requireNonNull(columnGroupId, "columnGroupId is 
null");
 this.columnUniqueId = columnUniqueId;//requireNonNull(columnUniqueId, 
"columnUniqueId is null");
 this.isInvertedIndex = requireNonNull(isInvertedIndex, "isInvertedIndex is 
null");
+this.precision = precision;
+this.scale = scale;
   }
 
   @JsonProperty public String getConnectorId() {
@@ -132,4 +144,15 @@ public class CarbondataColumnHandle implements 
ColumnHandle {
 return toStringHelper(this).add("connectorId", 
connectorId).add("columnName", columnName)
 .add("columnType", columnType).add("ordinalPosition", 
ordinalPosition).toString();
   }
+
+  @JsonProperty public int getScale() {
+return scale;
+  }
+
+  @JsonProperty public int getPrecision() {
+return precision;
+  }
+
+
+
 }

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/ddf06f15/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataConnector.java
--
diff --git 
a/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataConnector.java
 
b/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataConnector.java
index 0f1dbda..406ed93 100755
--- 
a/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataConnector.java
+++ 
b/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataConnector.java
@@ -35,15 +35,17 @@ public class CarbondataConnector 

[2/2] incubator-carbondata-site git commit: update table styling

2017-04-17 Thread chenliang613
update table styling


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/14cafa48
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/14cafa48
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/14cafa48

Branch: refs/heads/asf-site
Commit: 14cafa481bb3a78f0a447eea24a951ae81b7e27d
Parents: 535484f b830d34
Author: chenliang613 <chenliang...@huawei.com>
Authored: Mon Apr 17 20:56:58 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Mon Apr 17 20:56:58 2017 +0800

--
 content/css/style.css | 6 +-
 src/main/webapp/css/style.css | 6 +-
 2 files changed, 2 insertions(+), 10 deletions(-)
--




[1/2] incubator-carbondata git commit: Added link to configuration parameters in main page of doc

2017-04-14 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 19b9223eb -> 69ba22370


Added link to configuration parameters in main page of doc


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/e1b1713f
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/e1b1713f
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/e1b1713f

Branch: refs/heads/master
Commit: e1b1713f9c08395e8818b4569bff95633fe8d841
Parents: 19b9223
Author: Sanoj MG 
Authored: Fri Apr 14 22:35:23 2017 +0400
Committer: Sanoj MG 
Committed: Fri Apr 14 22:35:23 2017 +0400

--
 README.md | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/e1b1713f/README.md
--
diff --git a/README.md b/README.md
index db1a1e2..fafbf7a 100644
--- a/README.md
+++ b/README.md
@@ -46,6 +46,7 @@ CarbonData is built using Apache Maven, to [build 
CarbonData](https://github.com
 * [DDL Operations on 
CarbonData](https://github.com/apache/incubator-carbondata/blob/master/docs/ddl-operation-on-carbondata.md)
 
 * [DML Operations on 
CarbonData](https://github.com/apache/incubator-carbondata/blob/master/docs/dml-operation-on-carbondata.md)
  
 * [Cluster Installation and 
Deployment](https://github.com/apache/incubator-carbondata/blob/master/docs/installation-guide.md)
+* [Configuring 
Carbondata](https://github.com/apache/incubator-carbondata/blob/master/docs/configuration-parameters.md)
 * [FAQ](https://github.com/apache/incubator-carbondata/blob/master/docs/faq.md)
 * [Trouble 
Shooting](https://github.com/apache/incubator-carbondata/blob/master/docs/troubleshooting.md)
 * [Useful 
Tips](https://github.com/apache/incubator-carbondata/blob/master/docs/useful-tips-on-carbondata.md)



[2/2] incubator-carbondata git commit: [CARBONDATA-928] Added a link to configuration parameters in doc This closes #798

2017-04-14 Thread chenliang613
[CARBONDATA-928] Added a link to configuration parameters in doc This closes 
#798


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/69ba2237
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/69ba2237
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/69ba2237

Branch: refs/heads/master
Commit: 69ba22370eb46915bb2857793954a75827f68288
Parents: 19b9223 e1b1713
Author: chenliang613 <chenliang...@huawei.com>
Authored: Sat Apr 15 12:04:29 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Sat Apr 15 12:04:29 2017 +0800

--
 README.md | 1 +
 1 file changed, 1 insertion(+)
--




incubator-carbondata-site git commit: update configuration-parameters

2017-04-12 Thread chenliang613
Repository: incubator-carbondata-site
Updated Branches:
  refs/heads/asf-site 9fc205ee6 -> 535484f55


update configuration-parameters


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/535484f5
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/535484f5
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/535484f5

Branch: refs/heads/asf-site
Commit: 535484f5531f284c6b6d9cdf15888fd7134f3184
Parents: 9fc205e
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 18:16:55 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 18:16:55 2017 +0530

--
 content/configuration-parameters.html | 2 +-
 src/main/webapp/configuration-parameters.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/535484f5/content/configuration-parameters.html
--
diff --git a/content/configuration-parameters.html 
b/content/configuration-parameters.html
index b6624ca..3b2d562 100644
--- a/content/configuration-parameters.html
+++ b/content/configuration-parameters.html
@@ -533,7 +533,7 @@
 
 high.cardinality.threshold
 100
-high.cardinality.threshold
+It is a threshold to identify high cardinality of the columns.If the value 
of columns' cardinality  the configured value, then the columns are 
excluded from dictionary encoding.
 
 
 high.cardinality.row.count.percentage

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/535484f5/src/main/webapp/configuration-parameters.html
--
diff --git a/src/main/webapp/configuration-parameters.html 
b/src/main/webapp/configuration-parameters.html
index b6624ca..3b2d562 100644
--- a/src/main/webapp/configuration-parameters.html
+++ b/src/main/webapp/configuration-parameters.html
@@ -533,7 +533,7 @@
 
 high.cardinality.threshold
 100
-high.cardinality.threshold
+It is a threshold to identify high cardinality of the columns.If the value 
of columns' cardinality  the configured value, then the columns are 
excluded from dictionary encoding.
 
 
 high.cardinality.row.count.percentage



[2/2] incubator-carbondata git commit: [CARBONDATA-897] Removed redundant fields from table in configuration-parameters.md This closes #776

2017-04-12 Thread chenliang613
[CARBONDATA-897] Removed redundant fields from table in 
configuration-parameters.md This closes #776


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/11df4513
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/11df4513
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/11df4513

Branch: refs/heads/master
Commit: 11df4513bd88d053ea0d5d41ab9919d1f47ebbfd
Parents: a5eb323 d8590b1
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 18:04:01 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 18:04:01 2017 +0530

--
 docs/configuration-parameters.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[1/2] incubator-carbondata git commit: Removed redundant fields from table in configuration-parameters.md

2017-04-12 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master a5eb3230f -> 11df4513b


Removed redundant fields from table in configuration-parameters.md


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/d8590b16
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/d8590b16
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/d8590b16

Branch: refs/heads/master
Commit: d8590b16a094ea1afef84c85d61fb334e8b5730e
Parents: a5eb323
Author: jatin <jatin.de...@knoldus.in>
Authored: Tue Apr 11 13:38:10 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 18:03:35 2017 +0530

--
 docs/configuration-parameters.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/d8590b16/docs/configuration-parameters.md
--
diff --git a/docs/configuration-parameters.md b/docs/configuration-parameters.md
index 4f454e6..e4f8f33 100644
--- a/docs/configuration-parameters.md
+++ b/docs/configuration-parameters.md
@@ -131,7 +131,7 @@ This section provides the details of all the configurations 
required for CarbonD
 | Parameter | Default Value | Description |
 
|---|-|---|
 | high.cardinality.identify.enable | true | If the parameter is true, the high 
cardinality columns of the dictionary code are automatically recognized and 
these columns will not be used as global dictionary encoding. If the parameter 
is false, all dictionary encoding columns are used as dictionary encoding. The 
high cardinality column must meet the following requirements: value of 
cardinality > configured value of high.cardinalityEqually, the value of 
cardinality is higher than the threshold.value of cardinality/ row number x 100 
> configured value of high.cardinality.row.count.percentageEqually, the ratio 
of the cardinality value to data row number is higher than the configured 
percentage. |
-| high.cardinality.threshold | 100 | high.cardinality.threshold | 100 
| It is a threshold to identify high cardinality of the columns.If the value of 
columns' cardinality > the configured value, then the columns are excluded from 
dictionary encoding. |
+| high.cardinality.threshold | 100 | It is a threshold to identify high 
cardinality of the columns.If the value of columns' cardinality > the 
configured value, then the columns are excluded from dictionary encoding. |
 | high.cardinality.row.count.percentage | 80 | Percentage to identify whether 
column cardinality is more than configured percent of total row 
count.Configuration value formula:Value of cardinality/ row number x 100 > 
configured value of high.cardinality.row.count.percentageThe value of the 
parameter must be larger than 0. |
 | carbon.cutOffTimestamp | 1970-01-01 05:30:00 | Sets the start date for 
calculating the timestamp. Java counts the number of milliseconds from start of 
"1970-01-01 00:00:00". This property is used to customize the start of 
position. For example "2000-01-01 00:00:00". The date must be in the form 
"carbon.timestamp.format". NOTE: The CarbonData supports data store up to 68 
years from the cut-off time defined. For example, if the cut-off time is 
1970-01-01 05:30:00, then the data can be stored up to 2038-01-01 05:30:00. |
 | carbon.timegranularity | SECOND | The property used to set the data 
granularity level DAY, HOUR, MINUTE, or SECOND. |



incubator-carbondata-site git commit: add gitignore

2017-04-12 Thread chenliang613
Repository: incubator-carbondata-site
Updated Branches:
  refs/heads/asf-site 2f826c1b5 -> 9fc205ee6


add gitignore


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/9fc205ee
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/9fc205ee
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/9fc205ee

Branch: refs/heads/asf-site
Commit: 9fc205ee693920b2d68c3c1bce01499632ad5208
Parents: 2f826c1
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 17:59:27 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 17:59:27 2017 +0530

--
 .gitignore | 18 ++
 site.iml   | 22 --
 2 files changed, 18 insertions(+), 22 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/9fc205ee/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 2f5a8f4..b34b984 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,20 @@
 .idea/
 target
+*~
+*.#*
+*#*#
+*.swp
+*.ipr
+*.iml
+*.iws
+*.pyc
+*.pyo
+.idea/
+.idea_modules/
+.settings
+.cache
+target/
+.project
+.classpath
+metastore_db/
+derby.log

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/9fc205ee/site.iml
--
diff --git a/site.iml b/site.iml
deleted file mode 100644
index 1668dce..000
--- a/site.iml
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-  
-
-
-
-  
-  
-  
-
-
-
-
-
-
-
-
-
-
-
-  
-
\ No newline at end of file



[2/3] incubator-carbondata-site git commit: update dml document

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2f826c1b/content/troubleshooting.html
--
diff --git a/content/troubleshooting.html b/content/troubleshooting.html
index 96ac1f2..48f8871 100644
--- a/content/troubleshooting.html
+++ b/content/troubleshooting.html
@@ -156,250 +156,179 @@
 
 
 
-
 
 Troubleshooting
-
 This tutorial is designed to provide troubleshooting for end users and 
developers
 who are building, deploying, and using CarbonData.
-
 
 Failed to load 
thrift libraries
-
 Symptom
-
 Thrift throws following exception :
-
-  thrift: error while loading shared libraries:
-  libthriftc.so.0: cannot open shared object file: No such file or directory
+thrift: error while loading shared libraries:
+libthriftc.so.0: cannot open shared object file: No such file or directory
 
-
 Possible Cause
-
 The complete path to the directory containing the libraries is not 
configured correctly.
-
 Procedure
-
 Follow the Apache thrift docs at https://thrift.apache.org/docs/install; 
target=_blank>https://thrift.apache.org/docs/install to install thrift 
correctly.
-
 
 Failed to launch the 
Spark Shell
-
 Symptom
-
 The shell prompts the following error :
-
-  
org.apache.spark.sql.CarbonContext$$anon$$apache$spark$sql$catalyst$analysis
-  $OverrideCatalog$_setter_$org$apache$spark$sql$catalyst$analysis
-  $OverrideCatalog$$overrides_$e
+org.apache.spark.sql.CarbonContext$$anon$$apache$spark$sql$catalyst$analysis
+$OverrideCatalog$_setter_$org$apache$spark$sql$catalyst$analysis
+$OverrideCatalog$$overrides_$e
 
-
 Possible Cause
-
 The Spark Version and the selected Spark Profile do not match.
-
 Procedure
-
 
-Ensure your spark version and selected profile for spark are 
correct.
+
+Ensure your spark version and selected profile for spark are correct.
+
 
 Use the following command :
-
- "mvn -Pspark-2.1 -Dspark.version {yourSparkVersion} clean package"
-
-
-Note :  Refrain from using "mvn clean package" without specifying the 
profile.
 
 
+```
+ "mvn -Pspark-2.1 -Dspark.version {yourSparkVersion} clean package"
+```
 
+Note :  Refrain from using "mvn clean package" without specifying the profile.
+
 
 Failed to execute 
load query on cluster.
-
 Symptom
-
 Load query failed with the following exception:
-
-  Dictionary file is locked for updation.
+Dictionary file is locked for updation.
 
-
 Possible Cause
-
 The carbon.properties file is not identical in all the nodes of the 
cluster.
-
 Procedure
-
 Follow the steps to ensure the carbon.properties file is consistent across 
all the nodes:
-
 
-Copy the carbon.properties file from the master node to all the other 
nodes in the cluster.
- For example, you can use ssh to copy this file to all the nodes.
-For the changes to take effect, restart the Spark cluster.
+
+Copy the carbon.properties file from the master node to all the other nodes 
in the cluster.
+For example, you can use ssh to copy this file to all the nodes.
+
+
+For the changes to take effect, restart the Spark cluster.
+
 
-
 
 Failed to execute 
insert query on cluster.
-
 Symptom
-
 Load query failed with the following exception:
-
-  Dictionary file is locked for updation.
+Dictionary file is locked for updation.
 
-
 Possible Cause
-
 The carbon.properties file is not identical in all the nodes of the 
cluster.
-
 Procedure
-
 Follow the steps to ensure the carbon.properties file is consistent across 
all the nodes:
-
 
-Copy the carbon.properties file from the master node to all the other 
nodes in the cluster.
-   For example, you can use scp to copy this file to all the nodes.
-For the changes to take effect, restart the Spark cluster.
+
+Copy the carbon.properties file from the master node to all the other nodes 
in the cluster.
+For example, you can use scp to copy this file to all the nodes.
+
+
+For the changes to take effect, restart the Spark cluster.
+
 
-
 
 Failed to connect to 
hiveuser with thrift
-
 Symptom
-
 We get the following exception :
-
-  Cannot connect to hiveuser.
+Cannot connect to hiveuser.
 
-
 Possible Cause
-
 The external process does not have permission to access.
-
 Procedure
-
 Ensure that the Hiveuser in mysql must allow its access to the external 
processes.
-
 
 Failure to read the metastore db during table 
creation.
-
 Symptom
-
 We get the following exception on trying to connect :
-
-  Cannot read the metastore db
+Cannot read the metastore db
 
-
 Possible Cause
-
 The metastore db is dysfunctional.
-
 Procedure
-
 Remove the metastore db from the carbon.metastore in the Spark 
Directory.
-
 
 Failed to load data 
on the cluster
-
 Symptom
-
 Data loading fails with the following exception :
-
-   Data Load failure exeception
+Data Load failure exeception
 
-
 Possible Cause
-
 The following issue can cause the failure :
-
 
-The core-site.xml, hive-site.xml, 

[3/3] incubator-carbondata-site git commit: update dml document

2017-04-12 Thread chenliang613
update dml document


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/2f826c1b
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/2f826c1b
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/2f826c1b

Branch: refs/heads/asf-site
Commit: 2f826c1b59056e708aba202cc78385fb9e625ac3
Parents: b96a419
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 17:56:12 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 17:56:12 2017 +0530

--
 content/configuration-parameters.html   |  34 +---
 content/data-management.html|  87 +++---
 content/ddl-operation-on-carbondata.html| 100 ++-
 content/dml-operation-on-carbondata.html| 133 ++-
 content/faq.html|  26 ---
 content/file-structure-of-carbondata.html   |  14 +-
 content/installation-guide.html |  89 --
 content/quick-start-guide.html  |  50 +-
 content/supported-data-types-in-carbondata.html |   7 -
 content/troubleshooting.html| 169 ++-
 content/useful-tips-on-carbondata.html  |  56 ++
 site.iml|   2 +-
 src/main/webapp/configuration-parameters.html   |  34 +---
 src/main/webapp/data-management.html|  87 +++---
 .../webapp/ddl-operation-on-carbondata.html | 100 ++-
 .../webapp/dml-operation-on-carbondata.html | 133 ++-
 src/main/webapp/faq.html|  26 ---
 .../webapp/file-structure-of-carbondata.html|  14 +-
 src/main/webapp/installation-guide.html |  89 --
 src/main/webapp/quick-start-guide.html  |  50 +-
 .../supported-data-types-in-carbondata.html |   7 -
 src/main/webapp/troubleshooting.html| 169 ++-
 src/main/webapp/useful-tips-on-carbondata.html  |  56 ++
 23 files changed, 295 insertions(+), 1237 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2f826c1b/content/configuration-parameters.html
--
diff --git a/content/configuration-parameters.html 
b/content/configuration-parameters.html
index a9274d5..b6624ca 100644
--- a/content/configuration-parameters.html
+++ b/content/configuration-parameters.html
@@ -156,26 +156,19 @@
 
 
 
-
 
 Configuring CarbonData
-
 This tutorial guides you through the advanced configurations of CarbonData 
:
-
 
 System Configuration
 Performance Configuration
 Miscellaneous Configuration
 Spark Configuration
 
-
 
 System Configuration
-
 This section provides the details of all the configurations required for 
the CarbonData System.
-
 System Configuration in carbon.properties
-
 
 
 
@@ -207,18 +200,13 @@
 
 
 
-
 
 Performance Configuration
-
 This section provides the details of all the configurations required for 
CarbonData Performance Optimization.
-
 Performance Configuration in 
carbon.properties
-
 
 Data Loading Configuration
 
-
 
 
 
@@ -291,11 +279,9 @@
 
 
 
-
 
 Compaction Configuration
 
-
 
 
 
@@ -344,11 +330,9 @@
 
 
 
-
 
 Query Configuration
 
-
 
 
 
@@ -385,17 +369,12 @@
 
 
 
-
 
 Miscellaneous Configuration
-
 Extra Configuration in carbon.properties
-
 
-
-Time format for CarbonData 
+Time format for CarbonData
 
-
 
 
 
@@ -412,11 +391,9 @@
 
 
 
-
 
 Dataload Configuration
 
-
 
 
 
@@ -483,11 +460,9 @@
 
 
 
-
 
 Compaction Configuration
 
-
 
 
 
@@ -514,11 +489,9 @@
 
 
 
-
 
 Query Configuration
 
-
 
 
 
@@ -540,11 +513,9 @@
 
 
 
-
 
 Global Dictionary Configurations
 
-
 
 
 
@@ -581,12 +552,9 @@
 
 
 
-
 
 Spark Configuration
-
 Spark Configuration Reference in 
spark-defaults.conf
-
 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2f826c1b/content/data-management.html
--
diff --git a/content/data-management.html b/content/data-management.html
index 63b9662..0ae1ef8 100644
--- a/content/data-management.html
+++ b/content/data-management.html
@@ -156,41 +156,33 @@
 
 
 
-
 
 Data Management
-
 This tutorial is going to introduce you to the conceptual details of data 
management like:
-
 
 Loading Data
 Deleting Data
 Compacting Data
 Updating Data
 
-
 
 Loading Data
-
 
 
 Scenario
-
 After creating a table, you can load data to the table using the LOAD DATA command. The loaded data 

[2/2] incubator-carbondata git commit: [CARBONDATA-907] The grammar for DELETE SEGMENT FOR DATE in website is not correct This closes #785

2017-04-12 Thread chenliang613
[CARBONDATA-907] The grammar for DELETE SEGMENT FOR DATE in website is not 
correct This closes #785


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/a5eb3230
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/a5eb3230
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/a5eb3230

Branch: refs/heads/master
Commit: a5eb3230fc4769f4cdaa0f3a985cef5dde2b9416
Parents: ff182b7 b5c9985
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 17:36:45 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 17:36:45 2017 +0530

--
 docs/dml-operation-on-carbondata.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--




[07/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/fontawesome-webfont.svg
--
diff --git a/content/fonts/fontawesome-webfont.svg 
b/content/fonts/fontawesome-webfont.svg
new file mode 100644
index 000..855c845
--- /dev/null
+++ b/content/fonts/fontawesome-webfont.svg
@@ -0,0 +1,2671 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+
+
+Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
+ By ,,,
+Copyright Dave Gandy 2016. All rights reserved.
+
+
+
+  
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/fontawesome-webfont.ttf
--
diff --git a/content/fonts/fontawesome-webfont.ttf 
b/content/fonts/fontawesome-webfont.ttf
new file mode 100644
index 000..35acda2
Binary files /dev/null and b/content/fonts/fontawesome-webfont.ttf differ




[16/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/css/font-awesome.css
--
diff --git a/content/css/font-awesome.css b/content/css/font-awesome.css
new file mode 100644
index 000..e3ac4b3
--- /dev/null
+++ b/content/css/font-awesome.css
@@ -0,0 +1,2337 @@
+/*!
+ *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
+ *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT 
License)
+ */
+/* FONT PATH
+ * -- */
+@font-face {
+  font-family: 'FontAwesome';
+  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
+  src: url('../fonts/fontawesome-webfont.eot?#iefix=4.7.0') 
format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') 
format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') 
format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') 
format('truetype'), 
url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') 
format('svg');
+  font-weight: normal;
+  font-style: normal;
+}
+.fa {
+  display: inline-block;
+  font: normal normal normal 14px/1 FontAwesome;
+  font-size: inherit;
+  text-rendering: auto;
+  -webkit-font-smoothing: antialiased;
+  -moz-osx-font-smoothing: grayscale;
+}
+/* makes the font 33% larger relative to the icon container */
+.fa-lg {
+  font-size: 1.em;
+  line-height: 0.75em;
+  vertical-align: -15%;
+}
+.fa-2x {
+  font-size: 2em;
+}
+.fa-3x {
+  font-size: 3em;
+}
+.fa-4x {
+  font-size: 4em;
+}
+.fa-5x {
+  font-size: 5em;
+}
+.fa-fw {
+  width: 1.28571429em;
+  text-align: center;
+}
+.fa-ul {
+  padding-left: 0;
+  margin-left: 2.14285714em;
+  list-style-type: none;
+}
+.fa-ul > li {
+  position: relative;
+}
+.fa-li {
+  position: absolute;
+  left: -2.14285714em;
+  width: 2.14285714em;
+  top: 0.14285714em;
+  text-align: center;
+}
+.fa-li.fa-lg {
+  left: -1.85714286em;
+}
+.fa-border {
+  padding: .2em .25em .15em;
+  border: solid 0.08em #eee;
+  border-radius: .1em;
+}
+.fa-pull-left {
+  float: left;
+}
+.fa-pull-right {
+  float: right;
+}
+.fa.fa-pull-left {
+  margin-right: .3em;
+}
+.fa.fa-pull-right {
+  margin-left: .3em;
+}
+/* Deprecated as of 4.4.0 */
+.pull-right {
+  float: right;
+}
+.pull-left {
+  float: left;
+}
+.fa.pull-left {
+  margin-right: .3em;
+}
+.fa.pull-right {
+  margin-left: .3em;
+}
+.fa-spin {
+  -webkit-animation: fa-spin 2s infinite linear;
+  animation: fa-spin 2s infinite linear;
+}
+.fa-pulse {
+  -webkit-animation: fa-spin 1s infinite steps(8);
+  animation: fa-spin 1s infinite steps(8);
+}
+@-webkit-keyframes fa-spin {
+  0% {
+-webkit-transform: rotate(0deg);
+transform: rotate(0deg);
+  }
+  100% {
+-webkit-transform: rotate(359deg);
+transform: rotate(359deg);
+  }
+}
+@keyframes fa-spin {
+  0% {
+-webkit-transform: rotate(0deg);
+transform: rotate(0deg);
+  }
+  100% {
+-webkit-transform: rotate(359deg);
+transform: rotate(359deg);
+  }
+}
+.fa-rotate-90 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
+  -webkit-transform: rotate(90deg);
+  -ms-transform: rotate(90deg);
+  transform: rotate(90deg);
+}
+.fa-rotate-180 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
+  -webkit-transform: rotate(180deg);
+  -ms-transform: rotate(180deg);
+  transform: rotate(180deg);
+}
+.fa-rotate-270 {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
+  -webkit-transform: rotate(270deg);
+  -ms-transform: rotate(270deg);
+  transform: rotate(270deg);
+}
+.fa-flip-horizontal {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, 
mirror=1)";
+  -webkit-transform: scale(-1, 1);
+  -ms-transform: scale(-1, 1);
+  transform: scale(-1, 1);
+}
+.fa-flip-vertical {
+  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, 
mirror=1)";
+  -webkit-transform: scale(1, -1);
+  -ms-transform: scale(1, -1);
+  transform: scale(1, -1);
+}
+:root .fa-rotate-90,
+:root .fa-rotate-180,
+:root .fa-rotate-270,
+:root .fa-flip-horizontal,
+:root .fa-flip-vertical {
+  filter: none;
+}
+.fa-stack {
+  position: relative;
+  display: inline-block;
+  width: 2em;
+  height: 2em;
+  line-height: 2em;
+  vertical-align: middle;
+}
+.fa-stack-1x,
+.fa-stack-2x {
+  position: absolute;
+  left: 0;
+  width: 100%;
+  text-align: center;
+}
+.fa-stack-1x {
+  line-height: inherit;
+}
+.fa-stack-2x {
+  font-size: 2em;
+}
+.fa-inverse {
+  color: #fff;
+}
+/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
+   readers do not read off random characters that represent icons */
+.fa-glass:before {
+  content: "\f000";
+}
+.fa-music:before {
+  content: "\f001";
+}
+.fa-search:before {
+  content: "\f002";
+}
+.fa-envelope-o:before {
+  content: "\f003";
+}
+.fa-heart:before {
+  content: "\f004";
+}
+.fa-star:before {
+  content: "\f005";
+}
+.fa-star-o:before {
+  content: 

[21/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/fonts/glyphicons-halflings-regular.svg
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.svg 
b/content/bootstrap/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 000..94fb549
--- /dev/null
+++ b/content/bootstrap/fonts/glyphicons-halflings-regular.svg
@@ -0,0 +1,288 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/fonts/glyphicons-halflings-regular.ttf
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.ttf 
b/content/bootstrap/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 000..1413fc6
Binary files /dev/null and 
b/content/bootstrap/fonts/glyphicons-halflings-regular.ttf differ




[04/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/js/bootstrap.min.js
--
diff --git a/content/js/bootstrap.min.js b/content/js/bootstrap.min.js
new file mode 100644
index 000..9bcd2fc
--- /dev/null
+++ b/content/js/bootstrap.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under the MIT license
+ */
+if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" 
")[0].split(".");if(b[0]<2&[1]<9||1==b[0]&&9==b[1]&[2]<1||b[0]>3)throw new 
Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but 
lower than version 4")}(jQuery),+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b
 .target).is(this))return 
b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use 
strict";function b(b){return this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==typeof b&[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function
 c(){g.detach().trigger("closed.bs.alert").remove()}var 
e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&(/.*(?=#[^\s]*$)/,""));var
 
g=a("#"===f?[]:f);b&(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c
 ,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&(b)})}var 
c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeCla
 
ss("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&("change")}else
 
this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 
a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var
 
d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"],
 
input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api
 
blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"us
 e strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof
 b&),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new 
c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&().cycle()})}var 

[15/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/css/style.css
--
diff --git a/content/css/style.css b/content/css/style.css
new file mode 100644
index 000..76aed80
--- /dev/null
+++ b/content/css/style.css
@@ -0,0 +1,1264 @@
+
+@import url("mdstyle.css");
+@import url("../fonts/fonts_styles.css");
+@import url("font-awesome.min.css");
+
+*{margin: 0; padding: 0;}
+
+body{background:#fdfdfd; color:#000 ; font-family:'Open Sans', arial, 
helvatica,  sans-serif; font-size:14px; line-height:22px;}
+
+a{-webkit-transition: all .1s ease-in-out;
+   -moz-transition: all .1s ease-in-out;
+   -o-transition: all .1s ease-in-out;
+   transition: all .1s ease-in-out;
+   text-decoration:none;
+   outline:none
+}
+
+a{ color:#00a0d2;  text-decoration: none; cursor: pointer;}
+a:hover, a:focus{ color:#ff943d; text-decoration:none}
+
+img{ max-width:100%; height:auto}
+
+table {
+border-collapse: collapse;
+width: 100%;
+}
+
+th, td {
+text-align: left;
+padding: 15px;
+border-bottom: 1px solid #ddd;
+border-left: 1px solid #ddd;
+border-right: 1px solid #ddd;
+border-top: 1px solid #ddd;
+}
+
+th {
+background-color: #f2f2f2;
+}
+
+tr:nth-child(even){background-color: #f2f2f2}
+
+.container-fluid{ max-width: 1180px}
+.container-fluid-full{ max-width: 100%}
+
+
+
+.getmore-btn, .knowmore-btn, .join-community{display: block; background: 
#ff943d; border-radius: 4px; padding: 12px 40px; text-decoration: none;
+  text-align: center; font-size: 18px; color: #fff; width: 220px; clear: both; 
margin-bottom: 30px; text-transform: uppercase; font-weight: 600;}
+
+.getmore-btn:hover, .knowmore-btn:hover, .join-community:hover
+.getmore-btn:hover, .knowmore-btn:focus, .join-community:focus{display: block; 
background: #dd6300; color: #fff;  text-decoration: none; }
+.desktop-view{ display:block}
+.mobile-view{ display:none}
+header{position: fixed;z-index: ; width: 100%; height:46px }
+.fixed-padding{ position: relative; padding-top:46px; }
+/*a.logo { width: 210px; display: inline-block;  margin: 10px 0;}*/
+a.logo { width: 170px; display: inline-block;  margin: 5px 0;}
+.cd-navbar-wrapper.navbar {margin-bottom:0px;border-bottom: 4px solid #ff943d; 
border-radius: 0; min-height: 40px;}
+/*.cd_navcontnt { margin-top: 20px;}*/
+.cd_navcontnt{ margin-top:9px}
+.cd_navcontnt li a { padding: 6px 20px;text-transform: capitalize; font-size: 
14px; font-weight: 500; color: #222 !important;}
+/*.cd_navcontnt li a:hover { color: #ff943d !important; text-decoration: none;}
+.cd_navcontnt li a.active { color: #ff943d !important; text-decoration: 
underline;}*/
+.cd_navcontnt li a:hover {background: #ff8624 !important; color: #fff 
!important;}
+.cd_navcontnt li a.active { color: #fff !important; text-decoration:none; 
background: #ff943d !important;}
+.cd_navcontnt li a i.fa.fa-home{font-size: 18px;}
+.cd_navcontnt li a.apache_link { width: 26px; height: auto; display: 
inline-block !important;margin: 0 10px; padding: 10px 0 !important; 
+  background: url(../images/CDapacheGray_icon.png) no-repeat center center 
!important; text-indent: -px; background-size: contain !important;
line-height: 12px;}
+
+.cd_navcontnt li a.apache_link:hover {background: 
url(../images/CDapache_icon.png) no-repeat center center !important; 
background-size:contain !important;}
+
+.navbar-nav>li>.dropdown-menu { padding: 0; margin-top: 0px; color: #ff943d 
!important;  text-decoration: none; 
+  background: #f8f8f8 !important; box-shadow: none; border: 1px solid #ff943d 
!important; border-top: 4px solid #ff943d !important;
+left: auto; right: auto;}
+
+.cd_navcontnt li>.dropdown-menu a {color: #444 !important; padding: 5px 15px; 
font-size: 13px;}
+.cd_navcontnt li>.dropdown-menu a:hover, .cd_navcontnt li>.dropdown-menu 
a.active { color: #fff !important; text-decoration: none;
+background: #ff943d !important;}
+
+.navbar-nav>li>.apache_link + .dropdown-menu   {left: auto; right: 0;}
+
+.cd-homebanner{ width: 100%; min-height:280px; background: 
url(../images/CDbannerSliderbg.jpg) no-repeat top center; background-size: 
cover;}
+.cd-homebanner .slide-title { font-size: 36px; color: #fffefe; line-height: 
50px; display: inline-block;text-align: left;width: 90%;
+max-width: 520px; margin-top: 90px; margin-left: 10%;}
+
+.cd-homebanner .slide-title strong{ color: #ff943d; font-weight: 600;  }
+.cd-homebanner .slide-img { text-align: center; overflow: hidden; height: 
280px;}
+.cd-homebanner .slide-img img {height: 106%; max-width: inherit; margin-top: 
-1%;   }
+
+.cd-headingBar{ background: #f2f2f2; padding: 30px; margin:0}
+.cd-headingBar .title {font-size: 30px; color: #111; line-height:36px; 
display: block; text-align: left; margin: 0;}
+.cd-headingBar .title .cube-icon{width:30px;height: 30px; margin:0 20px 0 0; 
padding:0;  display:inline-block; text-align:center;}

[14/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/ddl-operation-on-carbondata.html
--
diff --git a/content/ddl-operation-on-carbondata.html 
b/content/ddl-operation-on-carbondata.html
new file mode 100644
index 000..24346a0
--- /dev/null
+++ b/content/ddl-operation-on-carbondata.html
@@ -0,0 +1,580 @@
+
+
+
+
+
+
+
+
+CarbonData
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+ 
+
+Home
+
+ Download 
+
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
+   target="_blank">Apache CarbonData 
1.0.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
+   target="_blank">Apache CarbonData 
0.2.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
+   target="_blank">Apache CarbonData 
0.1.1
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
+   target="_blank">Apache CarbonData 
0.1.0
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
+   target="_blank">Release Archive
+
+
+Documentation
+
+Community 
+
+
+https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
+   target="_blank">Contributing to 
CarbonData
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/PPMC+and+Committers+member+list;
+   target="_blank">Project PPMC and 
Committers
+
+https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
+   target="_blank">CarbonData Meetups
+Apache CarbonData 
Security
+https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
+Jira
+CarbonData Videos 

+
+
+
+http://www.apache.org/; class="apache_link 
hidden-xs dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+http://www.apache.org/; class="hidden-lg 
hidden-md hidden-sm dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+
+
+
+
+
+
+
+http://www.google.com/search;>
+
+
+
+
+
+
+  

[06/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/fontawesome-webfont.woff
--
diff --git a/content/fonts/fontawesome-webfont.woff 
b/content/fonts/fontawesome-webfont.woff
new file mode 100644
index 000..400014a
Binary files /dev/null and b/content/fonts/fontawesome-webfont.woff differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/fontawesome-webfont.woff2
--
diff --git a/content/fonts/fontawesome-webfont.woff2 
b/content/fonts/fontawesome-webfont.woff2
new file mode 100644
index 000..4d13fc6
Binary files /dev/null and b/content/fonts/fontawesome-webfont.woff2 differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/fonts_styles.css
--
diff --git a/content/fonts/fonts_styles.css b/content/fonts/fonts_styles.css
new file mode 100644
index 000..2d32c53
--- /dev/null
+++ b/content/fonts/fonts_styles.css
@@ -0,0 +1,28 @@
+
+@font-face {
+  font-family: 'OpenSansLight';
+  src: url("OpenSans-Light.eot?v=1.1.0");
+  src: url("OpenSans-Light.eot?#iefix=1.1.0") format("embedded-opentype"), 
+  url("OpenSans-Light.woff2?v=1.1.0") format("woff2"), 
+  url("OpenSans-Light.woff?v=1.1.0") format("woff"), 
+  url("OpenSans-Light.ttf?v=1.1.0") format("truetype"), 
+  url("OpenSans-Light.svg?v=1.1.0#Light") format("svg");
+  font-weight: 300;
+  font-style: normal; }
+/* END Light */
+
+
+@font-face {
+  font-family: 'Open Sans';
+  src: url("OpenSans-Regular.eot?v=1.1.0");
+  src: url("OpenSans-Regular.eot?#iefix=1.1.0") format("embedded-opentype"), 
+  url("OpenSans-Regular.woff2?v=1.1.0") format("woff2"), 
+  url("OpenSans-Regular.woff?v=1.1.0") format("woff"), 
+  url("OpenSans-Regular.ttf?v=1.1.0") format("truetype"), 
+  url("OpenSans-Regular.svg?v=1.1.0#Regular") format("svg");
+  font-weight: normal;
+  font-style: normal; }
+/* END Regular */
+
+
+

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDapacheGray_icon.png
--
diff --git a/content/images/CDapacheGray_icon.png 
b/content/images/CDapacheGray_icon.png
new file mode 100644
index 000..7b57968
Binary files /dev/null and b/content/images/CDapacheGray_icon.png differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDapache_icon.png
--
diff --git a/content/images/CDapache_icon.png b/content/images/CDapache_icon.png
new file mode 100644
index 000..7149a37
Binary files /dev/null and b/content/images/CDapache_icon.png differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDapacheopensource.jpg
--
diff --git a/content/images/CDapacheopensource.jpg 
b/content/images/CDapacheopensource.jpg
new file mode 100644
index 000..9682a3e
Binary files /dev/null and b/content/images/CDapacheopensource.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDbannerSliderbg.jpg
--
diff --git a/content/images/CDbannerSliderbg.jpg 
b/content/images/CDbannerSliderbg.jpg
new file mode 100644
index 000..1f4c104
Binary files /dev/null and b/content/images/CDbannerSliderbg.jpg differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDbannerSliderbg.png
--
diff --git a/content/images/CDbannerSliderbg.png 
b/content/images/CDbannerSliderbg.png
new file mode 100644
index 000..9b8a1df
Binary files /dev/null and b/content/images/CDbannerSliderbg.png differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDcube_icon-gray.png
--
diff --git a/content/images/CDcube_icon-gray.png 
b/content/images/CDcube_icon-gray.png
new file mode 100644
index 000..17061cd
Binary files /dev/null and b/content/images/CDcube_icon-gray.png differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDcube_icon.png
--
diff --git a/content/images/CDcube_icon.png b/content/images/CDcube_icon.png
new file mode 100644
index 000..805e07f
Binary files /dev/null and b/content/images/CDcube_icon.png differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/images/CDfullyIndexing-old.png

[01/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
Repository: incubator-carbondata-site
Updated Branches:
  refs/heads/asf-site 99fd49060 -> b96a419a5


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/useful-tips-on-carbondata.html
--
diff --git a/content/useful-tips-on-carbondata.html 
b/content/useful-tips-on-carbondata.html
new file mode 100644
index 000..977fe40
--- /dev/null
+++ b/content/useful-tips-on-carbondata.html
@@ -0,0 +1,448 @@
+
+
+
+
+
+
+
+
+CarbonData
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+ 
+
+Home
+
+ Download 
+
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
+   target="_blank">Apache CarbonData 
1.0.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
+   target="_blank">Apache CarbonData 
0.2.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
+   target="_blank">Apache CarbonData 
0.1.1
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
+   target="_blank">Apache CarbonData 
0.1.0
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
+   target="_blank">Release Archive
+
+
+Documentation
+
+Community 
+
+
+https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
+   target="_blank">Contributing to 
CarbonData
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/PPMC+and+Committers+member+list;
+   target="_blank">Project PPMC and 
Committers
+
+https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
+   target="_blank">CarbonData Meetups
+Apache CarbonData 
Security
+https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
+Jira
+CarbonData Videos 

+
+
+
+http://www.apache.org/; class="apache_link 
hidden-xs dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+http://www.apache.org/; class="hidden-lg 
hidden-md hidden-sm dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+
+
+
+
+
+
+
+http://www.google.com/search;>
+
+
+
+ 

[13/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/OpenSans-Bold.svg
--
diff --git a/content/fonts/OpenSans-Bold.svg b/content/fonts/OpenSans-Bold.svg
new file mode 100644
index 000..81c8a27
--- /dev/null
+++ b/content/fonts/OpenSans-Bold.svg
@@ -0,0 +1,958 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+This is a custom SVG webfont generated by Font Squirrel.
+Copyright   : Digitized data copyright  20102011 Google Corporation
+Foundry : Ascender Corporation
+Foundry URL : httpwwwascendercorpcom
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/OpenSans-Bold.ttf
--
diff --git a/content/fonts/OpenSans-Bold.ttf b/content/fonts/OpenSans-Bold.ttf
new file mode 100644
index 000..cf53e6e
Binary files /dev/null and b/content/fonts/OpenSans-Bold.ttf differ




[09/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/OpenSans-Regular.svg
--
diff --git a/content/fonts/OpenSans-Regular.svg 
b/content/fonts/OpenSans-Regular.svg
new file mode 100644
index 000..b34ed42
--- /dev/null
+++ b/content/fonts/OpenSans-Regular.svg
@@ -0,0 +1,958 @@
+
+http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
+http://www.w3.org/2000/svg;>
+
+This is a custom SVG webfont generated by Font Squirrel.
+Copyright   : Digitized data copyright  20102011 Google Corporation
+Foundry : Ascender Corporation
+Foundry URL : httpwwwascendercorpcom
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/OpenSans-Regular.ttf
--
diff --git a/content/fonts/OpenSans-Regular.ttf 
b/content/fonts/OpenSans-Regular.ttf
new file mode 100644
index 000..a135120
Binary files /dev/null and b/content/fonts/OpenSans-Regular.ttf differ




[20/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/fonts/glyphicons-halflings-regular.woff
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.woff 
b/content/bootstrap/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 000..9e61285
Binary files /dev/null and 
b/content/bootstrap/fonts/glyphicons-halflings-regular.woff differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/fonts/glyphicons-halflings-regular.woff2
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.woff2 
b/content/bootstrap/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 000..64539b5
Binary files /dev/null and 
b/content/bootstrap/fonts/glyphicons-halflings-regular.woff2 differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/js/bootstrap.js
--
diff --git a/content/bootstrap/js/bootstrap.js 
b/content/bootstrap/js/bootstrap.js
new file mode 100644
index 000..01fbbcb
--- /dev/null
+++ b/content/bootstrap/js/bootstrap.js
@@ -0,0 +1,2363 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under the MIT license
+ */
+
+if (typeof jQuery === 'undefined') {
+  throw new Error('Bootstrap\'s JavaScript requires jQuery')
+}
+
++function ($) {
+  'use strict';
+  var version = $.fn.jquery.split(' ')[0].split('.')
+  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 
9 && version[2] < 1) || (version[0] > 2)) {
+throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or 
higher, but lower than version 3')
+  }
+}(jQuery);
+
+/* 
+ * Bootstrap: transition.js v3.3.6
+ * http://getbootstrap.com/javascript/#transitions
+ * 
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *  */
+
+
++function ($) {
+  'use strict';
+
+  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
+  // 
+
+  function transitionEnd() {
+var el = document.createElement('bootstrap')
+
+var transEndEventNames = {
+  WebkitTransition : 'webkitTransitionEnd',
+  MozTransition: 'transitionend',
+  OTransition  : 'oTransitionEnd otransitionend',
+  transition   : 'transitionend'
+}
+
+for (var name in transEndEventNames) {
+  if (el.style[name] !== undefined) {
+return { end: transEndEventNames[name] }
+  }
+}
+
+return false // explicit for ie8 (  ._.)
+  }
+
+  // http://blog.alexmaccaw.com/css-transitions
+  $.fn.emulateTransitionEnd = function (duration) {
+var called = false
+var $el = this
+$(this).one('bsTransitionEnd', function () { called = true })
+var callback = function () { if (!called) 
$($el).trigger($.support.transition.end) }
+setTimeout(callback, duration)
+return this
+  }
+
+  $(function () {
+$.support.transition = transitionEnd()
+
+if (!$.support.transition) return
+
+$.event.special.bsTransitionEnd = {
+  bindType: $.support.transition.end,
+  delegateType: $.support.transition.end,
+  handle: function (e) {
+if ($(e.target).is(this)) return e.handleObj.handler.apply(this, 
arguments)
+  }
+}
+  })
+
+}(jQuery);
+
+/* 
+ * Bootstrap: alert.js v3.3.6
+ * http://getbootstrap.com/javascript/#alerts
+ * 
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *  */
+
+
++function ($) {
+  'use strict';
+
+  // ALERT CLASS DEFINITION
+  // ==
+
+  var dismiss = '[data-dismiss="alert"]'
+  var Alert   = function (el) {
+$(el).on('click', dismiss, this.close)
+  }
+
+  Alert.VERSION = '3.3.6'
+
+  Alert.TRANSITION_DURATION = 150
+
+  Alert.prototype.close = function (e) {
+var $this= $(this)
+var selector = $this.attr('data-target')
+
+if (!selector) {
+  selector = $this.attr('href')
+  selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip 
for ie7
+}
+
+var $parent = $(selector)
+
+if (e) e.preventDefault()
+
+if (!$parent.length) {
+  $parent = $this.closest('.alert')
+}
+
+$parent.trigger(e = 

[27/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
add carbonscript


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/b96a419a
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/b96a419a
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/b96a419a

Branch: refs/heads/asf-site
Commit: b96a419a5a5554e8ecb3392ae8474da63fa7bce6
Parents: 99fd490
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 17:24:58 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 17:24:58 2017 +0530

--
 content/WEB-INF/web.xml |   37 +
 content/bootstrap/css/bootstrap-theme.css   |  587 ++
 content/bootstrap/css/bootstrap-theme.css.map   |1 +
 content/bootstrap/css/bootstrap-theme.min.css   |6 +
 .../bootstrap/css/bootstrap-theme.min.css.map   |1 +
 content/bootstrap/css/bootstrap.css | 6760 ++
 content/bootstrap/css/bootstrap.css.map |1 +
 content/bootstrap/css/bootstrap.min.css |6 +
 content/bootstrap/css/bootstrap.min.css.map |1 +
 .../fonts/glyphicons-halflings-regular.eot  |  Bin 0 -> 20127 bytes
 .../fonts/glyphicons-halflings-regular.svg  |  288 +
 .../fonts/glyphicons-halflings-regular.ttf  |  Bin 0 -> 45404 bytes
 .../fonts/glyphicons-halflings-regular.woff |  Bin 0 -> 23424 bytes
 .../fonts/glyphicons-halflings-regular.woff2|  Bin 0 -> 18028 bytes
 content/bootstrap/js/bootstrap.js   | 2363 ++
 content/bootstrap/js/bootstrap.min.js   |7 +
 content/bootstrap/js/npm.js |   13 +
 content/configuration-parameters.html   |  631 ++
 content/css/bootstrap.css   | 6757 +
 content/css/bootstrap.min.css   |6 +
 content/css/font-awesome.css| 2337 ++
 content/css/font-awesome.min.css|4 +
 content/css/full-slider.css |   61 +
 content/css/style.css   | 1264 
 content/css/youtube.css |  182 +
 content/data-management.html|  440 ++
 content/ddl-operation-on-carbondata.html|  580 ++
 content/dml-operation-on-carbondata.html|  745 ++
 content/faq.html|  258 +
 content/file-structure-of-carbondata.html   |  209 +
 content/fonts/FontAwesome.otf   |  Bin 0 -> 134808 bytes
 content/fonts/OpenSans-Bold.eot |  Bin 0 -> 110106 bytes
 content/fonts/OpenSans-Bold.svg |  958 +++
 content/fonts/OpenSans-Bold.ttf |  Bin 0 -> 109928 bytes
 content/fonts/OpenSans-Bold.woff|  Bin 0 -> 63564 bytes
 content/fonts/OpenSans-Bold.woff2   |  Bin 0 -> 46676 bytes
 content/fonts/OpenSans-Light.eot|  Bin 0 -> 107642 bytes
 content/fonts/OpenSans-Light.svg|  958 +++
 content/fonts/OpenSans-Light.ttf|  Bin 0 -> 107460 bytes
 content/fonts/OpenSans-Light.woff   |  Bin 0 -> 62844 bytes
 content/fonts/OpenSans-Light.woff2  |  Bin 0 -> 45900 bytes
 content/fonts/OpenSans-Regular.eot  |  Bin 0 -> 106442 bytes
 content/fonts/OpenSans-Regular.svg  |  958 +++
 content/fonts/OpenSans-Regular.ttf  |  Bin 0 -> 106252 bytes
 content/fonts/OpenSans-Regular.woff |  Bin 0 -> 63712 bytes
 content/fonts/OpenSans-Regular.woff2|  Bin 0 -> 47016 bytes
 content/fonts/fontawesome-webfont.eot   |  Bin 0 -> 165742 bytes
 content/fonts/fontawesome-webfont.svg   | 2671 +++
 content/fonts/fontawesome-webfont.ttf   |  Bin 0 -> 165548 bytes
 content/fonts/fontawesome-webfont.woff  |  Bin 0 -> 98024 bytes
 content/fonts/fontawesome-webfont.woff2 |  Bin 0 -> 77160 bytes
 content/fonts/fonts_styles.css  |   28 +
 content/images/CDapacheGray_icon.png|  Bin 0 -> 1722 bytes
 content/images/CDapache_icon.png|  Bin 0 -> 2009 bytes
 content/images/CDapacheopensource.jpg   |  Bin 0 -> 18598 bytes
 content/images/CDbannerSliderbg.jpg |  Bin 0 -> 88343 bytes
 content/images/CDbannerSliderbg.png |  Bin 0 -> 239926 bytes
 content/images/CDcube_icon-gray.png |  Bin 0 -> 1622 bytes
 content/images/CDcube_icon.png  |  Bin 0 -> 1576 bytes
 content/images/CDfullyIndexing-old.png  |  Bin 0 -> 25280 bytes
 content/images/CDfullyIndexing.png  |  Bin 0 -> 16409 bytes
 content/images/CDfullyIndexing1.png |  Bin 0 -> 16207 bytes
 content/images/CDincubator.png  |  Bin

[26/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/css/bootstrap-theme.min.css
--
diff --git a/content/bootstrap/css/bootstrap-theme.min.css 
b/content/bootstrap/css/bootstrap-theme.min.css
new file mode 100644
index 000..dc95d8e
--- /dev/null
+++ b/content/bootstrap/css/bootstrap-theme.min.css
@@ -0,0 +1,6 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ 
*/.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0
 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 
1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 
1px 
rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset
 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px 
rgba(0,0,0,.125)}.btn-danger.disabled,.btn-danger[disabled],.btn-default.disabled,.btn-default[disabled],.btn-info.disabled,.btn-info[disabled],.btn-primary.disabled,.btn-primary[disabled],.btn-success.disabled,.btn-success[disabled],.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled]
 .btn-danger,fieldset[disabled] .btn-default,fieldset[disabled] 
.btn-info,fieldset[disabled] .btn-primary,fieldset[disab
 led] .btn-success,fieldset[disabled] 
.btn-warning{-webkit-box-shadow:none;box-shadow:none}.btn-danger 
.badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success 
.badge,.btn-warning 
.badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0
 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 
100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 
100%);background-image:-webkit-gradient(linear,left top,left 
bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 
0,#e0e0e0 
100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#',
 endColorstr='#ffe0e0e0', 
GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0
 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-c
 
olor:#dbdbdb}.btn-default.disabled,.btn-default.disabled.active,.btn-default.disabled.focus,.btn-default.disabled:active,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled],.btn-default[disabled].active,.btn-default[disabled].focus,.btn-default[disabled]:active,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled]
 .btn-default,fieldset[disabled] .btn-default.active,fieldset[disabled] 
.btn-default.focus,fieldset[disabled] .btn-default:active,fieldset[disabled] 
.btn-default:focus,fieldset[disabled] 
.btn-default:hover{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7
 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 
100%);background-image:-webkit-gradient(linear,left top,left 
bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to 
bottom,#337ab7 0,#265a88 
100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7',
 
 endColorstr='#ff265a88', 
GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0
 
-15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary.disabled.active,.btn-primary.disabled.focus,.btn-primary.disabled:active,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled],.btn-primary[disabled].active,.btn-primary[disabled].focus,.btn-primary[disabled]:active,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled]
 .btn-primary,fieldset[disabled] .btn-primary.active,fieldset[disabled] 
.btn-primary.focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] 
.btn-primary:focus,fieldset[disabled] 
.btn-primary:hover{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5c
 b85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 
100%);background-image:-webkit-gradient(linear,left top,left 
bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to 
bottom,#5cb85c 0,#419641 
100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c',
 endColorstr='#ff419641', 

[18/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/css/bootstrap.css
--
diff --git a/content/css/bootstrap.css b/content/css/bootstrap.css
new file mode 100644
index 000..6167622
--- /dev/null
+++ b/content/css/bootstrap.css
@@ -0,0 +1,6757 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+  font-family: sans-serif;
+  -webkit-text-size-adjust: 100%;
+  -ms-text-size-adjust: 100%;
+}
+body {
+  margin: 0;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  vertical-align: baseline;
+}
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+[hidden],
+template {
+  display: none;
+}
+a {
+  background-color: transparent;
+}
+a:active,
+a:hover {
+  outline: 0;
+}
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+b,
+strong {
+  font-weight: bold;
+}
+dfn {
+  font-style: italic;
+}
+h1 {
+  margin: .67em 0;
+  font-size: 2em;
+}
+mark {
+  color: #000;
+  background: #ff0;
+}
+small {
+  font-size: 80%;
+}
+sub,
+sup {
+  position: relative;
+  font-size: 75%;
+  line-height: 0;
+  vertical-align: baseline;
+}
+sup {
+  top: -.5em;
+}
+sub {
+  bottom: -.25em;
+}
+img {
+  border: 0;
+}
+svg:not(:root) {
+  overflow: hidden;
+}
+figure {
+  margin: 1em 40px;
+}
+hr {
+  height: 0;
+  -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+  box-sizing: content-box;
+}
+pre {
+  overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+  margin: 0;
+  font: inherit;
+  color: inherit;
+}
+button {
+  overflow: visible;
+}
+button,
+select {
+  text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  padding: 0;
+  border: 0;
+}
+input {
+  line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+  -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+  box-sizing: content-box;
+  -webkit-appearance: textfield;
+}
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+fieldset {
+  padding: .35em .625em .75em;
+  margin: 0 2px;
+  border: 1px solid #c0c0c0;
+}
+legend {
+  padding: 0;
+  border: 0;
+}
+textarea {
+  overflow: auto;
+}
+optgroup {
+  font-weight: bold;
+}
+table {
+  border-spacing: 0;
+  border-collapse: collapse;
+}
+td,
+th {
+  padding: 0;
+}
+/*! Source: 
https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+  *,
+  *:before,
+  *:after {
+color: #000 !important;
+text-shadow: none !important;
+background: transparent !important;
+-webkit-box-shadow: none !important;
+box-shadow: none !important;
+  }
+  a,
+  a:visited {
+text-decoration: underline;
+  }
+  a[href]:after {
+content: " (" attr(href) ")";
+  }
+  abbr[title]:after {
+content: " (" attr(title) ")";
+  }
+  a[href^="#"]:after,
+  a[href^="javascript:"]:after {
+content: "";
+  }
+  pre,
+  blockquote {
+border: 1px solid #999;
+
+page-break-inside: avoid;
+  }
+  thead {
+display: table-header-group;
+  }
+  tr,
+  img {
+page-break-inside: avoid;
+  }
+  img {
+max-width: 100% !important;
+  }
+  p,
+  h2,
+  h3 {
+orphans: 3;
+widows: 3;
+  }
+  h2,
+  h3 {
+page-break-after: avoid;
+  }
+  .navbar {
+display: none;
+  }
+  .btn > .caret,
+  .dropup > .btn > .caret {
+border-top-color: #000 !important;
+  }
+  .label {
+border: 1px solid #000;
+  }
+  .table {
+border-collapse: collapse !important;
+  }
+  .table td,
+  .table th {
+background-color: #fff !important;
+  }
+  .table-bordered th,
+  .table-bordered td {
+border: 1px solid #ddd !important;
+  }
+}
+@font-face {
+  font-family: 'Glyphicons Halflings';
+
+  src: url('../fonts/glyphicons-halflings-regular.eot');
+  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') 
format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') 
format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') 

[17/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/css/bootstrap.min.css
--
diff --git a/content/css/bootstrap.min.css b/content/css/bootstrap.min.css
new file mode 100644
index 000..ed3905e
--- /dev/null
+++ b/content/css/bootstrap.min.css
@@ -0,0 +1,6 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css 
*/html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px
 dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 
0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em
 
40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;fo
 
nt-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html
 
input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html
 
input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em
 .625em .75em;margin:0 2px;border:1px solid 
silver}legend{padding:0;border:0}textarea{overflow:
 
auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*!
 Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css 
*/@media 
print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0
 
0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:"
 (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) 
")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px
 solid 
#999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px
 solid #000}.table{border-collapse:collapse!important}.table td,.table 
th{background-color:#fff!important}.table-bordered td,.table-bordered 
th{border:1px so
 lid #ddd!important}}@font-face{font-family:'Glyphicons 
Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix)
 format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) 
format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) 
format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) 
format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular)
 
format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons
 
Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\
 

[25/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/css/bootstrap.css
--
diff --git a/content/bootstrap/css/bootstrap.css 
b/content/bootstrap/css/bootstrap.css
new file mode 100644
index 000..42c79d6
--- /dev/null
+++ b/content/bootstrap/css/bootstrap.css
@@ -0,0 +1,6760 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */
+/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
+html {
+  font-family: sans-serif;
+  -webkit-text-size-adjust: 100%;
+  -ms-text-size-adjust: 100%;
+}
+body {
+  margin: 0;
+}
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+menu,
+nav,
+section,
+summary {
+  display: block;
+}
+audio,
+canvas,
+progress,
+video {
+  display: inline-block;
+  vertical-align: baseline;
+}
+audio:not([controls]) {
+  display: none;
+  height: 0;
+}
+[hidden],
+template {
+  display: none;
+}
+a {
+  background-color: transparent;
+}
+a:active,
+a:hover {
+  outline: 0;
+}
+abbr[title] {
+  border-bottom: 1px dotted;
+}
+b,
+strong {
+  font-weight: bold;
+}
+dfn {
+  font-style: italic;
+}
+h1 {
+  margin: .67em 0;
+  font-size: 2em;
+}
+mark {
+  color: #000;
+  background: #ff0;
+}
+small {
+  font-size: 80%;
+}
+sub,
+sup {
+  position: relative;
+  font-size: 75%;
+  line-height: 0;
+  vertical-align: baseline;
+}
+sup {
+  top: -.5em;
+}
+sub {
+  bottom: -.25em;
+}
+img {
+  border: 0;
+}
+svg:not(:root) {
+  overflow: hidden;
+}
+figure {
+  margin: 1em 40px;
+}
+hr {
+  height: 0;
+  -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+  box-sizing: content-box;
+}
+pre {
+  overflow: auto;
+}
+code,
+kbd,
+pre,
+samp {
+  font-family: monospace, monospace;
+  font-size: 1em;
+}
+button,
+input,
+optgroup,
+select,
+textarea {
+  margin: 0;
+  font: inherit;
+  color: inherit;
+}
+button {
+  overflow: visible;
+}
+button,
+select {
+  text-transform: none;
+}
+button,
+html input[type="button"],
+input[type="reset"],
+input[type="submit"] {
+  -webkit-appearance: button;
+  cursor: pointer;
+}
+button[disabled],
+html input[disabled] {
+  cursor: default;
+}
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+  padding: 0;
+  border: 0;
+}
+input {
+  line-height: normal;
+}
+input[type="checkbox"],
+input[type="radio"] {
+  -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+  box-sizing: border-box;
+  padding: 0;
+}
+input[type="number"]::-webkit-inner-spin-button,
+input[type="number"]::-webkit-outer-spin-button {
+  height: auto;
+}
+input[type="search"] {
+  -webkit-box-sizing: content-box;
+ -moz-box-sizing: content-box;
+  box-sizing: content-box;
+  -webkit-appearance: textfield;
+}
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+  -webkit-appearance: none;
+}
+fieldset {
+  padding: .35em .625em .75em;
+  margin: 0 2px;
+  border: 1px solid #c0c0c0;
+}
+legend {
+  padding: 0;
+  border: 0;
+}
+textarea {
+  overflow: auto;
+}
+optgroup {
+  font-weight: bold;
+}
+table {
+  border-spacing: 0;
+  border-collapse: collapse;
+}
+td,
+th {
+  padding: 0;
+}
+/*! Source: 
https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
+@media print {
+  *,
+  *:before,
+  *:after {
+color: #000 !important;
+text-shadow: none !important;
+background: transparent !important;
+-webkit-box-shadow: none !important;
+box-shadow: none !important;
+  }
+  a,
+  a:visited {
+text-decoration: underline;
+  }
+  a[href]:after {
+content: " (" attr(href) ")";
+  }
+  abbr[title]:after {
+content: " (" attr(title) ")";
+  }
+  a[href^="#"]:after,
+  a[href^="javascript:"]:after {
+content: "";
+  }
+  pre,
+  blockquote {
+border: 1px solid #999;
+
+page-break-inside: avoid;
+  }
+  thead {
+display: table-header-group;
+  }
+  tr,
+  img {
+page-break-inside: avoid;
+  }
+  img {
+max-width: 100% !important;
+  }
+  p,
+  h2,
+  h3 {
+orphans: 3;
+widows: 3;
+  }
+  h2,
+  h3 {
+page-break-after: avoid;
+  }
+  .navbar {
+display: none;
+  }
+  .btn > .caret,
+  .dropup > .btn > .caret {
+border-top-color: #000 !important;
+  }
+  .label {
+border: 1px solid #000;
+  }
+  .table {
+border-collapse: collapse !important;
+  }
+  .table td,
+  .table th {
+background-color: #fff !important;
+  }
+  .table-bordered th,
+  .table-bordered td {
+border: 1px solid #ddd !important;
+  }
+}
+@font-face {
+  font-family: 'Glyphicons Halflings';
+
+  src: url('../fonts/glyphicons-halflings-regular.eot');
+  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') 
format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') 
format('woff2'), 

[03/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/js/jquery.min.js
--
diff --git a/content/js/jquery.min.js b/content/js/jquery.min.js
new file mode 100644
index 000..e836475
--- /dev/null
+++ b/content/js/jquery.min.js
@@ -0,0 +1,5 @@
+/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */
+!function(a,b){"object"==typeof module&&"object"==typeof 
module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw
 new Error("jQuery requires a window with a document");return 
b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var 
c=[],d=a.document,e=c.slice,f=c.concat,g=c.push,h=c.indexOf,i={},j=i.toString,k=i.hasOwnProperty,l={},m="1.12.4",n=function(a,b){return
 new 
n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return
 
b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return
 e.call(this)},get:function(a){return 
null!=a?0>a?this[a+this.length]:this[a]:e.call(this)},pushStack:function(a){var 
b=n.merge(this.constructor(),a);return 
b.prevObject=this,b.context=this.context,b},each:function(a){return 
n.each(this,a)},map:function(a){return 
this.pushStack(n.map(this,function(b,c){return 
a.call(b,c,b)}))},slice:function(){return this.pushStack(e.apply(thi
 s,arguments))},first:function(){return this.eq(0)},last:function(){return 
this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return 
this.pushStack(c>=0&>c?[this[c]]:[])},end:function(){return 
this.prevObject||this.constructor()},push:g,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var
 
a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof
 g&&(j=g,g=arguments[h]||{},h++),"object"==typeof 
g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(e=arguments[h]))for(d
 in 
e)a=g[d],c=e[d],g!==c&&(j&&&(n.isPlainObject(c)||(b=n.isArray(c)))?(b?(b=!1,f=a&(a)?a:[]):f=a&(a)?a:{},g[d]=n.extend(j,f,c)):void
 0!==c&&(g[d]=c));return 
g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw
 new 
Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray||function(a){return"array"===n.type(a)},isWindow:function(a){return
 null!=
 a&==a.window},isNumeric:function(a){var 
b=a&();return!n.isArray(a)&(b)+1>=0},isEmptyObject:function(a){var
 b;for(b in a)return!1;return!0},isPlainObject:function(a){var 
b;if(!a||"object"!==n.type(a)||a.nodeType||n.isWindow(a))return!1;try{if(a.constructor&&!k.call(a,"constructor")&&!k.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}if(!l.ownFirst)for(b
 in a)return k.call(a,b);for(b in a);return void 
0===b||k.call(a,b)},type:function(a){return null==a?a+"":"object"==typeof 
a||"function"==typeof a?i[j.call(a)]||"object":typeof 
a},globalEval:function(b){b&(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return
 a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return 
a.nodeName&()===b.toLowerCase()},each:function(a,b){var 
c,d=0;if(s(a)){for(c=a.length;c>d;d++)if(b.call(a[d],d,a[d])===!1)break}else 
for(d in a)if(b.call(a[d],d,a[d])===!1)break;return a},trim:function(a){retur
 n null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return 
null!=a&&(s(Object(a))?n.merge(c,"string"==typeof 
a?[a]:a):g.call(c,a)),c},inArray:function(a,b,c){var d;if(b){if(h)return 
h.call(b,a,c);for(d=b.length,c=c?0>c?Math.max(0,d+c):c:0;d>c;c++)if(c in 
b&[c]===a)return c}return-1},merge:function(a,b){var 
c=+b.length,d=0,e=a.length;while(c>d)a[e++]=b[d++];if(c!==c)while(void 
0!==b[d])a[e++]=b[d++];return a.length=e,a},grep:function(a,b,c){for(var 
d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&(a[f]);return 
e},map:function(a,b,c){var 
d,e,g=0,h=[];if(s(a))for(d=a.length;d>g;g++)e=b(a[g],g,c),null!=e&(e);else
 for(g in a)e=b(a[g],g,c),null!=e&(e);return 
f.apply([],h)},guid:1,proxy:function(a,b){var c,d,f;return"string"==typeof 
b&&(f=a[b],b=a,a=f),n.isFunction(a)?(c=e.call(arguments,2),d=function(){return 
a.apply(b||this,c.concat(e.call(arguments)))},d.guid=a.guid=a.guid||n.guid++,d):void
 0},now:function(){return+new Date},support:l}),"fu
 nction"==typeof 
Symbol&&(n.fn[Symbol.iterator]=c[Symbol.iterator]),n.each("Boolean Number 
String Function Array Date RegExp Object Error Symbol".split(" 
"),function(a,b){i["[object "+b+"]"]=b.toLowerCase()});function s(a){var 
b=!!a&&"length"in 
a&,c=n.type(a);return"function"===c||n.isWindow(a)?!1:"array"===c||0===b||"number"==typeof
 b&>0& in a}var t=function(a){var 
b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+1*new 
Date,v=a.document,w=0,x=0,y=ga(),z=ga(),A=ga(),B=function(a,b){return 
a===b&&(l=!0),0},C=1<<31,D={}.hasOwnProperty,E=[],F=E.pop,G=E.push,H=E.push,I=E.slice,J=function(a,b){for(var
 

[05/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/js/bootstrap.js
--
diff --git a/content/js/bootstrap.js b/content/js/bootstrap.js
new file mode 100644
index 000..8a2e99a
--- /dev/null
+++ b/content/js/bootstrap.js
@@ -0,0 +1,2377 @@
+/*!
+ * Bootstrap v3.3.7 (http://getbootstrap.com)
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under the MIT license
+ */
+
+if (typeof jQuery === 'undefined') {
+  throw new Error('Bootstrap\'s JavaScript requires jQuery')
+}
+
++function ($) {
+  'use strict';
+  var version = $.fn.jquery.split(' ')[0].split('.')
+  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 
9 && version[2] < 1) || (version[0] > 3)) {
+throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or 
higher, but lower than version 4')
+  }
+}(jQuery);
+
+/* 
+ * Bootstrap: transition.js v3.3.7
+ * http://getbootstrap.com/javascript/#transitions
+ * 
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *  */
+
+
++function ($) {
+  'use strict';
+
+  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
+  // 
+
+  function transitionEnd() {
+var el = document.createElement('bootstrap')
+
+var transEndEventNames = {
+  WebkitTransition : 'webkitTransitionEnd',
+  MozTransition: 'transitionend',
+  OTransition  : 'oTransitionEnd otransitionend',
+  transition   : 'transitionend'
+}
+
+for (var name in transEndEventNames) {
+  if (el.style[name] !== undefined) {
+return { end: transEndEventNames[name] }
+  }
+}
+
+return false // explicit for ie8 (  ._.)
+  }
+
+  // http://blog.alexmaccaw.com/css-transitions
+  $.fn.emulateTransitionEnd = function (duration) {
+var called = false
+var $el = this
+$(this).one('bsTransitionEnd', function () { called = true })
+var callback = function () { if (!called) 
$($el).trigger($.support.transition.end) }
+setTimeout(callback, duration)
+return this
+  }
+
+  $(function () {
+$.support.transition = transitionEnd()
+
+if (!$.support.transition) return
+
+$.event.special.bsTransitionEnd = {
+  bindType: $.support.transition.end,
+  delegateType: $.support.transition.end,
+  handle: function (e) {
+if ($(e.target).is(this)) return e.handleObj.handler.apply(this, 
arguments)
+  }
+}
+  })
+
+}(jQuery);
+
+/* 
+ * Bootstrap: alert.js v3.3.7
+ * http://getbootstrap.com/javascript/#alerts
+ * 
+ * Copyright 2011-2016 Twitter, Inc.
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ *  */
+
+
++function ($) {
+  'use strict';
+
+  // ALERT CLASS DEFINITION
+  // ==
+
+  var dismiss = '[data-dismiss="alert"]'
+  var Alert   = function (el) {
+$(el).on('click', dismiss, this.close)
+  }
+
+  Alert.VERSION = '3.3.7'
+
+  Alert.TRANSITION_DURATION = 150
+
+  Alert.prototype.close = function (e) {
+var $this= $(this)
+var selector = $this.attr('data-target')
+
+if (!selector) {
+  selector = $this.attr('href')
+  selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip 
for ie7
+}
+
+var $parent = $(selector === '#' ? [] : selector)
+
+if (e) e.preventDefault()
+
+if (!$parent.length) {
+  $parent = $this.closest('.alert')
+}
+
+$parent.trigger(e = $.Event('close.bs.alert'))
+
+if (e.isDefaultPrevented()) return
+
+$parent.removeClass('in')
+
+function removeElement() {
+  // detach from parent, fire event then clean up data
+  $parent.detach().trigger('closed.bs.alert').remove()
+}
+
+$.support.transition && $parent.hasClass('fade') ?
+  $parent
+.one('bsTransitionEnd', removeElement)
+.emulateTransitionEnd(Alert.TRANSITION_DURATION) :
+  removeElement()
+  }
+
+
+  // ALERT PLUGIN DEFINITION
+  // ===
+
+  function Plugin(option) {
+return this.each(function () {
+  var $this = $(this)
+  var data  = $this.data('bs.alert')
+
+  if (!data) $this.data('bs.alert', (data = new Alert(this)))
+  if (typeof option == 'string') data[option].call($this)
+})
+  }
+
+  var old = $.fn.alert
+
+  $.fn.alert = Plugin
+  $.fn.alert.Constructor = Alert
+
+
+  // ALERT NO CONFLICT
+  // =
+
+  

[08/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/OpenSans-Regular.woff
--
diff --git a/content/fonts/OpenSans-Regular.woff 
b/content/fonts/OpenSans-Regular.woff
new file mode 100644
index 000..bd0f824
Binary files /dev/null and b/content/fonts/OpenSans-Regular.woff differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/OpenSans-Regular.woff2
--
diff --git a/content/fonts/OpenSans-Regular.woff2 
b/content/fonts/OpenSans-Regular.woff2
new file mode 100644
index 000..f778f9c
Binary files /dev/null and b/content/fonts/OpenSans-Regular.woff2 differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/fonts/fontawesome-webfont.eot
--
diff --git a/content/fonts/fontawesome-webfont.eot 
b/content/fonts/fontawesome-webfont.eot
new file mode 100644
index 000..e9f60ca
Binary files /dev/null and b/content/fonts/fontawesome-webfont.eot differ



[19/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/js/bootstrap.min.js
--
diff --git a/content/bootstrap/js/bootstrap.min.js 
b/content/bootstrap/js/bootstrap.min.js
new file mode 100644
index 000..e79c065
--- /dev/null
+++ b/content/bootstrap/js/bootstrap.min.js
@@ -0,0 +1,7 @@
+/*!
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
+ * Copyright 2011-2015 Twitter, Inc.
+ * Licensed under the MIT license
+ */
+if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" 
")[0].split(".");if(b[0]<2&[1]<9||1==b[0]&&9==b[1]&[2]<1||b[0]>2)throw new 
Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but 
lower than version 3")}(jQuery),+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return
  a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 
0}})})}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==typeof b&[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function
 c(){g.detach().trigger("closed.bs.alert").remove()}var 
e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&(/.*(?=#[^\s]*$)/,""));var
 
g=a(f);b&(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prot
 otype.close)}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&(b)})}var 
c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.ad
 
dClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&("change")}else
 
this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 
a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var
 
d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api
 
blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=
 a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&),g="string"==typeof 
b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&().cycle()})}var 

[22/27] incubator-carbondata-site git commit: add carbonscript

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b96a419a/content/bootstrap/css/bootstrap.min.css.map
--
diff --git a/content/bootstrap/css/bootstrap.min.css.map 
b/content/bootstrap/css/bootstrap.min.css.map
new file mode 100644
index 000..5f49bb3
--- /dev/null
+++ b/content/bootstrap/css/bootstrap.min.css.map
@@ -0,0 +1 @@
+{"version":3,"sources":["less/normalize.less","less/print.less","bootstrap.css","dist/css/bootstrap.css","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","le
 
ss/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"4EAQA,KACE,YAAA,WACA,yBAAA,KACA,qBAAA,KAOF,KACE,OAAA,EAaF,QAAA,MAAA,QAAA,WAAA,OAAA,OAAA,OAAA,OAAA,KAAA,KAAA,IAAA,QAAA,QAaE,QAAA,MAQF,MAAA,OAAA,SAAA,MAIE,QAAA,aACA,eAAA,SAQF,sBACE,QAAA,KACA,OAAA,EAQF,SAAA,SAEE,QAAA,KAUF,EACE,iBAAA,YAQF,SAAA,QAEE,QAAA,EAUF,YAC
 
E,cAAA,IAAA,OAOF,EAAA,OAEE,YAAA,IAOF,IACE,WAAA,OAQF,GACE,OAAA,MAAA,EACA,UAAA,IAOF,KACE,MAAA,KACA,WAAA,KAOF,MACE,UAAA,IAOF,IAAA,IAEE,SAAA,SACA,UAAA,IACA,YAAA,EACA,eAAA,SAGF,IACE,IAAA,MAGF,IACE,OAAA,OAUF,IACE,OAAA,EAOF,eACE,SAAA,OAUF,OACE,OAAA,IAAA,KAOF,GACE,OAAA,EAAA,mBAAA,YAAA,gBAAA,YACA,WAAA,YAOF,IACE,SAAA,KAOF,KAAA,IAAA,IAAA,KAIE,YAAA,UAAA,UACA,UAAA,IAkBF,OAAA,MAAA,SAAA,OAAA,SAKE,OAAA,EACA,KAAA,QACA,MAAA,QAOF,OACE,SAAA,QAUF,OAAA,OAEE,eAAA,KAWF,OAAA,wBAAA,kBAAA,mBAIE,mBAAA,OACA,OAAA,QAOF,iBAAA,qBAEE,OAAA,QAOF,yBAAA,wBAEE,QAAA,EACA,OAAA,EAQF,MACE,YAAA,OAWF,qBAAA,kBAEE,mBAAA,WAAA,gBAAA,WAAA,WAAA,WACA,QAAA,EASF,8CAAA,8CAEE,OAAA,KAQF,mBACE,mBAAA,YACA,gBAAA,YAAA,WAAA,YAAA,mBAAA,UASF,iDAAA,8CAEE,mBAAA,KAOF,SACE,QAAA,MAAA,OAAA,MACA,OAAA,EAAA,IACA,OAAA,IAAA,MAAA,OAQF,OACE,QAAA,EACA,OAAA,EAOF,SACE,SAAA,KAQF,SACE,YAAA,IAUF,MACE,eAAA,EACA,gBAAA,SAGF,GAAA,GAEE,QAAA,uFCjUF,aA7FI,EAAA,OAAA,QAGI,MAAA,eACA,YAAA,eACA,WAAA,cAAA,mBAAA,eACA,WAAA,eAGJ,EAAA,UAEI,gBAAA,UAGJ,cACI,QAAA,KAAA,WAAA,IAGJ,kBACI
 
,QAAA,KAAA,YAAA,IAKJ,6BAAA,mBAEI,QAAA,GAGJ,WAAA,IAEI,OAAA,IAAA,MAAA,KC4KL,kBAAA,MDvKK,MC0KL,QAAA,mBDrKK,IE8KN,GDLC,kBAAA,MDrKK,ICwKL,UAAA,eCUD,GF5KM,GE2KN,EF1KM,QAAA,ECuKL,OAAA,ECSD,GF3KM,GCsKL,iBAAA,MD/JK,QCkKL,QAAA,KCSD,YFtKU,oBCiKT,iBAAA,eD7JK,OCgKL,OAAA,IAAA,MAAA,KD5JK,OC+JL,gBAAA,mBCSD,UFpKU,UC+JT,iBAAA,eDzJS,mBEkKV,mBDLC,OAAA,IAAA,MAAA,gBEjPD,WACA,YAAA,uBFsPD,IAAA,+CE7OC,IAAK,sDAAuD,4BAA6B,iDAAkD,gBAAiB,gDAAiD,eAAgB,+CAAgD,mBAAoB,2EAA4E,cAE7W,WACA,SAAA,SACA,IAAA,IACA,QAAA,aACA,YAAA,uBACA,WAAA,OACA,YAAA,IACA,YAAA,EAIkC,uBAAA,YAAW,wBAAA,UACX,2BAAW,QAAA,QAEX,uBDuPlC,QAAS,QCtPyB,sBFiPnC,uBEjP8C,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,qBAAW,QAAA,QACX,0BAAW,QAAA,QACX,qBAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,2BAAW,QAAA,QACX,sBAAW,QAAA,QACX,yBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX
 

[28/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/fonts/glyphicons-halflings-regular.svg
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.svg 
b/content/bootstrap/fonts/glyphicons-halflings-regular.svg
deleted file mode 100644
index 94fb549..000
--- a/content/bootstrap/fonts/glyphicons-halflings-regular.svg
+++ /dev/null
@@ -1,288 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
-http://www.w3.org/2000/svg;>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/fonts/glyphicons-halflings-regular.ttf
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.ttf 
b/content/bootstrap/fonts/glyphicons-halflings-regular.ttf
deleted file mode 100644
index 1413fc6..000
Binary files a/content/bootstrap/fonts/glyphicons-halflings-regular.ttf and 
/dev/null differ




[37/54] incubator-carbondata-site git commit: Documentation added

2017-04-12 Thread chenliang613
Documentation added


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/f2f4f966
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/f2f4f966
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/f2f4f966

Branch: refs/heads/asf-site
Commit: f2f4f96634a1e0bb1048e9ee01660e545f77a304
Parents: 8676aaa
Author: shivangi 
Authored: Wed Apr 5 13:28:15 2017 +0530
Committer: shivangi 
Committed: Wed Apr 5 13:29:07 2017 +0530

--
 .idea/.name |   1 +
 .idea/compiler.xml  |  32 ++
 .idea/copyright/profiles_settings.xml   |   3 +
 .idea/encodings.xml |   7 +
 .../Maven__com_typesafe_config_1_3_1.xml|  13 +
 .../Maven__commons_codec_commons_codec_1_9.xml  |  13 +
 ...ven__commons_logging_commons_logging_1_2.xml |  13 +
 ...g_apache_httpcomponents_httpclient_4_5_3.xml |  13 +
 ...org_apache_httpcomponents_httpcore_4_4_6.xml |  13 +
 ...ven__org_scala_lang_scala_library_2_12_1.xml |  21 +
 .../Maven__org_slf4j_slf4j_api_1_7_25.xml   |  13 +
 .../Maven__org_slf4j_slf4j_simple_1_7_25.xml|  13 +
 .idea/misc.xml  |  39 ++
 .idea/modules.xml   |   8 +
 .idea/scala_compiler.xml|   6 +
 .idea/vcs.xml   |   6 +
 .idea/workspace.xml | 388 +++
 site.iml|  22 ++
 src/main/scala/FileModification.scala   |  14 +
 src/main/scala/FileOperationMain.scala  |   1 +
 src/main/scala/MdFilehandler.scala  |  12 +
 21 files changed, 651 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/f2f4f966/.idea/.name
--
diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 000..d97e100
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+site
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/f2f4f966/.idea/compiler.xml
--
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
new file mode 100644
index 000..f4b39f8
--- /dev/null
+++ b/.idea/compiler.xml
@@ -0,0 +1,32 @@
+
+
+  
+
+
+  
+  
+  
+  
+  
+  
+  
+  
+  
+
+
+  
+
+  
+  
+
+
+
+
+
+  
+
+
+  
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/f2f4f966/.idea/copyright/profiles_settings.xml
--
diff --git a/.idea/copyright/profiles_settings.xml 
b/.idea/copyright/profiles_settings.xml
new file mode 100644
index 000..e7bedf3
--- /dev/null
+++ b/.idea/copyright/profiles_settings.xml
@@ -0,0 +1,3 @@
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/f2f4f966/.idea/encodings.xml
--
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
new file mode 100644
index 000..c0bce70
--- /dev/null
+++ b/.idea/encodings.xml
@@ -0,0 +1,7 @@
+
+
+  
+
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/f2f4f966/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml
--
diff --git a/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml 
b/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml
new file mode 100644
index 000..cf2bc37
--- /dev/null
+++ b/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml
@@ -0,0 +1,13 @@
+
+  
+
+  
+
+
+  
+
+
+  
+
+  
+
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/f2f4f966/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml
--
diff --git a/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml 
b/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml
new file mode 100644
index 000..a66d039
--- /dev/null
+++ b/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml
@@ -0,0 +1,13 @@
+
+  
+
+  
+
+
+  
+
+
+  
+
+  
+
\ No newline at end of file


[31/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/css/bootstrap.css.map
--
diff --git a/content/bootstrap/css/bootstrap.css.map 
b/content/bootstrap/css/bootstrap.css.map
deleted file mode 100644
index 09f8cda..000
--- a/content/bootstrap/css/bootstrap.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labe
 
ls.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"GAIG;AACH,4EAA4E;ACG5E;EACE,wBAAA;EACA,2BAAA;EACA,+BAAA;CDDD;ACQD;EACE,UAAA;CDND;ACmBD;EAaE,eAAA;CDjBD;ACyBDEAIE,sBAAA;EACA,yBAAA;CDvBD;AC+BD;EACE,cAAA;EACA,UAAA;CD7BD;ACqCD;;EAEE,cAAA;CDnCD;AC6CD;EACE,8BAAA;CD3CD;ACmDD;;EAEE,WAAA;CDjDD;AC2DD;EACE,0BAAA;CDzDD;ACg
 
ED;;EAEE,kBAAA;CD9DD;ACqED;EACE,mBAAA;CDnED;AC2ED;EACE,eAAA;EACA,iBAAA;CDzED;ACgFD;EACE,iBAAA;EACA,YAAA;CD9ED;ACqFD;EACE,eAAA;CDnFD;AC0FD;;EAEE,eAAA;EACA,eAAA;EACA,mBAAA;EACA,yBAAA;CDxFD;AC2FD;EACE,YAAA;CDzFD;AC4FD;EACE,gBAAA;CD1FD;ACoGD;EACE,UAAA;CDlGD;ACyGD;EACE,iBAAA;CDvGD;ACiHD;EACE,iBAAA;CD/GD;ACsHD;EACE,gCAAA;KAAA,6BAAA;UAAA,wBAAA;EACA,UAAA;CDpHD;AC2HD;EACE,eAAA;CDzHD;ACgIDEAIE,kCAAA;EACA,eAAA;CD9HD;ACgJD;EAKE,eAAA;EACA,cAAA;EACA,UAAA;CD9ID;ACqJD;EACE,kBAAA;CDnJD;AC6JD;;EAEE,qBAAA;CD3JD;ACsKDEAIE,2BAAA;EACA,gBAAA;CDpKD;AC2KD;;EAEE,gBAAA;CDzKD;ACgLD;;EAEE,UAAA;EACA,WAAA;CD9KD;ACsLD;EACE,oBAAA;CDpLD;AC+LD;;EAEE,+BAAA;KAAA,4BAAA;UAAA,uBAAA;EACA,WAAA;CD7LD;ACsMD;;EAEE,aAAA;CDpMD;AC4MD;EACE,8BAAA;EACA,gCAAA;KAAA,6BAAA;UAAA,wBAAA;CD1MD;ACmND;;EAEE,yBAAA;CDjND;ACwND;EACE,0BAAA;EACA,cAAA;EACA,+BAAA;CDtND;AC8ND;EACE,UAAA;EACA,WAAA;CD5ND;ACmOD;EACE,eAAA;CDjOD;ACyOD;EACE,kBAAA;CDvOD;ACiPD;EACE,0BAAA;EACA,kBAAA;CD/OD;ACkPD;;EAEE,WAAA;CDhPD;AACD,qFAAqF;AElFrF;EA7FI;;;IAGI,mCAAA
 
;IACA,uBAAA;IACA,oCAAA;YAAA,4BAAA;IACA,6BAAA;GFkLL;EE/KC;;IAEI,2BAAA;GFiLL;EE9KC;IACI,6BAAA;GFgLL;EE7KC;IACI,8BAAA;GF+KL;EE1KC;;IAEI,YAAA;GF4KL;EEzKC;;IAEI,uBAAA;IACA,yBAAA;GF2KL;EExKC;IACI,4BAAA;GF0KL;EEvKC;;IAEI,yBAAA;GFyKL;EEtKC;IACI,2BAAA;GFwKL;EErKC;;;IAGI,WAAA;IACA,UAAA;GFuKL;EEpKC;;IAEI,wBAAA;GFsKL;EEhKC;IACI,cAAA;GFkKL;EEhKC;;IAGQ,kCAAA;GFiKT;EE9JC;IACI,uBAAA;GFgKL;EE7JC;IACI,qCAAA;GF+JL;EEhKC;;IAKQ,kCAAA;GF+JT;EE5JC;;IAGQ,kCAAA;GF6JT;CACF;AGnPD;EACE,oCAAA;EACA,sDAAA;EACA,gYAAA;CHqPD;AG7OD;EACE,mBAAA;EACA,SAAA;EACA,sBAAA;EACA,oCAAA;EACA,mBAAA;EACA,oBAAA;EACA,eAAA;EACA,oCAAA;EACA,mCAAA;CH+OD;AG3OmC;EAAW,iBAAA;CH8O9C;AG7OmC;EAAW,iBAAA;CHgP9C;AG9OmC;;EAAW,iBAAA;CHkP9C;AGjPmC;EAAW,iBAAA;CHoP9C;AGnPmC;EAAW,iBAAA;CHsP9C;AGrPmC;EAAW,iBAAA;CHwP9C;AGvPmC;EAAW,iBAAA;CH0P9C;AGzPmC;EAAW,iBAAA;CH4P9C;AG3PmC;EAAW,iBAAA;CH8P9C;AG7PmC;EAAW,iBAAA;CHgQ9C;AG/PmC;EAAW,iBAAA;CHkQ9C;AGjQmC;EAAW,iBAAA;CHoQ9C;AGnQmC;EAAW,iBAAA;CHsQ9C;AGrQmC;EAAW,iBAAA;CHwQ9C;AGvQmC;EAAW,iBAAA;CH0Q9C;AGzQmC;EAAW,iBA
 

[19/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Bold.svg
--
diff --git a/content/fonts/OpenSans-Bold.svg b/content/fonts/OpenSans-Bold.svg
deleted file mode 100644
index 81c8a27..000
--- a/content/fonts/OpenSans-Bold.svg
+++ /dev/null
@@ -1,958 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
-http://www.w3.org/2000/svg;>
-
-This is a custom SVG webfont generated by Font Squirrel.
-Copyright   : Digitized data copyright  20102011 Google Corporation
-Foundry : Ascender Corporation
-Foundry URL : httpwwwascendercorpcom
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Bold.ttf
--
diff --git a/content/fonts/OpenSans-Bold.ttf b/content/fonts/OpenSans-Bold.ttf
deleted file mode 100644
index cf53e6e..000
Binary files a/content/fonts/OpenSans-Bold.ttf and /dev/null differ




[03/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/src/main/webapp/quick-start-guide.html
--
diff --git a/src/main/webapp/quick-start-guide.html 
b/src/main/webapp/quick-start-guide.html
new file mode 100644
index 000..377d343
--- /dev/null
+++ b/src/main/webapp/quick-start-guide.html
@@ -0,0 +1,321 @@
+
+
+
+
+
+
+
+
+CarbonData
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+ 
+
+Home
+
+ Download 
+
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
+   target="_blank">Apache CarbonData 
1.0.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
+   target="_blank">Apache CarbonData 
0.2.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
+   target="_blank">Apache CarbonData 
0.1.1
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
+   target="_blank">Apache CarbonData 
0.1.0
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
+   target="_blank">Release Archive
+
+
+Documentation
+
+Community 
+
+
+https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
+   target="_blank">Contributing to 
CarbonData
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/PPMC+and+Committers+member+list;
+   target="_blank">Project PPMC and 
Committers
+
+https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
+   target="_blank">CarbonData Meetups
+Apache 
CarbonData Security
+https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
+Jira
+
+
+
+http://www.apache.org/; class="apache_link 
hidden-xs dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+http://www.apache.org/; class="hidden-lg 
hidden-md hidden-sm dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+
+
+
+
+
+
+
+http://www.google.com/search;>
+
+
+
+
+
+
+
+ 

[17/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Light.svg
--
diff --git a/content/fonts/OpenSans-Light.svg b/content/fonts/OpenSans-Light.svg
deleted file mode 100644
index c3bd159..000
--- a/content/fonts/OpenSans-Light.svg
+++ /dev/null
@@ -1,958 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
-http://www.w3.org/2000/svg;>
-
-This is a custom SVG webfont generated by Font Squirrel.
-Copyright   : Digitized data copyright  20102011 Google Corporation
-Foundry : Ascender Corporation
-Foundry URL : httpwwwascendercorpcom
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Light.ttf
--
diff --git a/content/fonts/OpenSans-Light.ttf b/content/fonts/OpenSans-Light.ttf
deleted file mode 100644
index dddcc62..000
Binary files a/content/fonts/OpenSans-Light.ttf and /dev/null differ




[22/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/css/style.css
--
diff --git a/content/css/style.css b/content/css/style.css
deleted file mode 100644
index 2aa6248..000
--- a/content/css/style.css
+++ /dev/null
@@ -1,1116 +0,0 @@
-
-@import url("mdstyle.css");
-@import url("../fonts/fonts_styles.css");
-@import url("font-awesome.min.css");
-
-*{margin: 0; padding: 0;}
-
-body{background:#fdfdfd; color:#000 ; font-family:'Open Sans', arial, 
helvatica,  sans-serif; font-size:14px; line-height:22px;}
-
-a{-webkit-transition: all .1s ease-in-out;
-   -moz-transition: all .1s ease-in-out;
-   -o-transition: all .1s ease-in-out;
-   transition: all .1s ease-in-out;
-   text-decoration:none;
-   outline:none
-}
-
-a{ color:#00a0d2;  text-decoration: none; cursor: pointer;}
-a:hover, a:focus{ color:#ff943d; text-decoration:none}
-
-img{ max-width:100%; height:auto}
-
-.container-fluid{ max-width: 1180px}
-.container-fluid-full{ max-width: 100%}
-
-
-
-.getmore-btn, .knowmore-btn, .join-community{display: block; background: 
#ff943d; border-radius: 4px; padding: 12px 40px; text-decoration: none;
-  text-align: center; font-size: 18px; color: #fff; width: 220px; clear: both; 
margin-bottom: 30px; text-transform: uppercase; font-weight: 600;}
-
-.getmore-btn:hover, .knowmore-btn:hover, .join-community:hover
-.getmore-btn:hover, .knowmore-btn:focus, .join-community:focus{display: block; 
background: #dd6300; color: #fff;  text-decoration: none; }
-.desktop-view{ display:block}
-.mobile-view{ display:none}
-header{position: fixed;z-index: ; width: 100%; height:46px }
-.fixed-padding{ position: relative; padding-top:46px; }
-/*a.logo { width: 210px; display: inline-block;  margin: 10px 0;}*/
-a.logo { width: 170px; display: inline-block;  margin: 5px 0;}
-.cd-navbar-wrapper.navbar {margin-bottom:0px;border-bottom: 4px solid #ff943d; 
border-radius: 0; min-height: 40px;}
-/*.cd_navcontnt { margin-top: 20px;}*/
-.cd_navcontnt{ margin-top:9px}
-.cd_navcontnt li a { padding: 6px 20px;text-transform: capitalize; font-size: 
14px; font-weight: 500; color: #222 !important;}
-/*.cd_navcontnt li a:hover { color: #ff943d !important; text-decoration: none;}
-.cd_navcontnt li a.active { color: #ff943d !important; text-decoration: 
underline;}*/
-.cd_navcontnt li a:hover {background: #ff8624 !important; color: #fff 
!important;}
-.cd_navcontnt li a.active { color: #fff !important; text-decoration:none; 
background: #ff943d !important;}
-.cd_navcontnt li a i.fa.fa-home{font-size: 18px;}
-.cd_navcontnt li a.apache_link { width: 26px; height: auto; display: 
inline-block !important;margin: 0 10px; padding: 10px 0 !important; 
-  background: url(../images/CDapacheGray_icon.png) no-repeat center center 
!important; text-indent: -px; background-size: contain !important;
line-height: 12px;}
-
-.cd_navcontnt li a.apache_link:hover {background: 
url(../images/CDapache_icon.png) no-repeat center center !important; 
background-size:contain !important;}
-
-.navbar-nav>li>.dropdown-menu { padding: 0; margin-top: 0px; color: #ff943d 
!important;  text-decoration: none; 
-  background: #f8f8f8 !important; box-shadow: none; border: 1px solid #ff943d 
!important; border-top: 4px solid #ff943d !important;
-left: auto; right: auto;}
-
-.cd_navcontnt li>.dropdown-menu a {color: #444 !important; padding: 5px 15px; 
font-size: 13px;}
-.cd_navcontnt li>.dropdown-menu a:hover, .cd_navcontnt li>.dropdown-menu 
a.active { color: #fff !important; text-decoration: none;
-background: #ff943d !important;}
-
-.navbar-nav>li>.apache_link + .dropdown-menu   {left: auto; right: 0;}
-
-.cd-homebanner{ width: 100%; min-height:280px; background: 
url(../images/CDbannerSliderbg.jpg) no-repeat top center; background-size: 
cover;}
-.cd-homebanner .slide-title { font-size: 36px; color: #fffefe; line-height: 
50px; display: inline-block;text-align: left;width: 90%;
-max-width: 520px; margin-top: 90px; margin-left: 10%;}
-
-.cd-homebanner .slide-title strong{ color: #ff943d; font-weight: 600;  }
-.cd-homebanner .slide-img { text-align: center; overflow: hidden; height: 
280px;}
-.cd-homebanner .slide-img img {height: 106%; max-width: inherit; margin-top: 
-1%;   }
-
-.cd-headingBar{ background: #f2f2f2; padding: 30px; margin:0}
-.cd-headingBar .title {font-size: 30px; color: #111; line-height:36px; 
display: block; text-align: left; margin: 0;}
-.cd-headingBar .title .cube-icon{width:30px;height: 30px; margin:0 20px 0 0; 
padding:0;  display:inline-block; text-align:center;}
-.cd-headingBar .join-community-btn {display: block; background: #ff943d; 
border-radius: 4px; padding: 12px 40px;text-align: center; font-size: 18px; 
color: #fff; float: right; clear: both;
- text-transform: uppercase; font-weight: 600;}
-.cd-headingBar .join-community-btn:hover {display: block; background: #dd6300}
-
-.cd-joinblock {
-background: 

[24/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/css/bootstrap.min.css
--
diff --git a/content/css/bootstrap.min.css b/content/css/bootstrap.min.css
deleted file mode 100644
index ed3905e..000
--- a/content/css/bootstrap.min.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css 
*/html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px
 dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{margin:.67em 
0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em
 
40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;fo
 
nt-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html
 
input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html
 
input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type=checkbox],input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em
 .625em .75em;margin:0 2px;border:1px solid 
silver}legend{padding:0;border:0}textarea{overflow:
 
auto}optgroup{font-weight:700}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*!
 Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css 
*/@media 
print{*,:after,:before{color:#000!important;text-shadow:none!important;background:0
 
0!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:"
 (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) 
")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}blockquote,pre{border:1px
 solid 
#999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px
 solid #000}.table{border-collapse:collapse!important}.table td,.table 
th{background-color:#fff!important}.table-bordered td,.table-bordered 
th{border:1px so
 lid #ddd!important}}@font-face{font-family:'Glyphicons 
Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix)
 format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) 
format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) 
format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) 
format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular)
 
format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons
 
Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-eur:before,.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\
 

[13/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/fontawesome-webfont.svg
--
diff --git a/content/fonts/fontawesome-webfont.svg 
b/content/fonts/fontawesome-webfont.svg
deleted file mode 100644
index 855c845..000
--- a/content/fonts/fontawesome-webfont.svg
+++ /dev/null
@@ -1,2671 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
-
-
-Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016
- By ,,,
-Copyright Dave Gandy 2016. All rights reserved.
-
-
-
-  
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/fontawesome-webfont.ttf
--
diff --git a/content/fonts/fontawesome-webfont.ttf 
b/content/fonts/fontawesome-webfont.ttf
deleted file mode 100644
index 35acda2..000
Binary files a/content/fonts/fontawesome-webfont.ttf and /dev/null differ




[27/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/fonts/glyphicons-halflings-regular.woff
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.woff 
b/content/bootstrap/fonts/glyphicons-halflings-regular.woff
deleted file mode 100644
index 9e61285..000
Binary files a/content/bootstrap/fonts/glyphicons-halflings-regular.woff and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/fonts/glyphicons-halflings-regular.woff2
--
diff --git a/content/bootstrap/fonts/glyphicons-halflings-regular.woff2 
b/content/bootstrap/fonts/glyphicons-halflings-regular.woff2
deleted file mode 100644
index 64539b5..000
Binary files a/content/bootstrap/fonts/glyphicons-halflings-regular.woff2 and 
/dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/js/bootstrap.js
--
diff --git a/content/bootstrap/js/bootstrap.js 
b/content/bootstrap/js/bootstrap.js
deleted file mode 100644
index 01fbbcb..000
--- a/content/bootstrap/js/bootstrap.js
+++ /dev/null
@@ -1,2363 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under the MIT license
- */
-
-if (typeof jQuery === 'undefined') {
-  throw new Error('Bootstrap\'s JavaScript requires jQuery')
-}
-
-+function ($) {
-  'use strict';
-  var version = $.fn.jquery.split(' ')[0].split('.')
-  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 
9 && version[2] < 1) || (version[0] > 2)) {
-throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or 
higher, but lower than version 3')
-  }
-}(jQuery);
-
-/* 
- * Bootstrap: transition.js v3.3.6
- * http://getbootstrap.com/javascript/#transitions
- * 
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *  */
-
-
-+function ($) {
-  'use strict';
-
-  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
-  // 
-
-  function transitionEnd() {
-var el = document.createElement('bootstrap')
-
-var transEndEventNames = {
-  WebkitTransition : 'webkitTransitionEnd',
-  MozTransition: 'transitionend',
-  OTransition  : 'oTransitionEnd otransitionend',
-  transition   : 'transitionend'
-}
-
-for (var name in transEndEventNames) {
-  if (el.style[name] !== undefined) {
-return { end: transEndEventNames[name] }
-  }
-}
-
-return false // explicit for ie8 (  ._.)
-  }
-
-  // http://blog.alexmaccaw.com/css-transitions
-  $.fn.emulateTransitionEnd = function (duration) {
-var called = false
-var $el = this
-$(this).one('bsTransitionEnd', function () { called = true })
-var callback = function () { if (!called) 
$($el).trigger($.support.transition.end) }
-setTimeout(callback, duration)
-return this
-  }
-
-  $(function () {
-$.support.transition = transitionEnd()
-
-if (!$.support.transition) return
-
-$.event.special.bsTransitionEnd = {
-  bindType: $.support.transition.end,
-  delegateType: $.support.transition.end,
-  handle: function (e) {
-if ($(e.target).is(this)) return e.handleObj.handler.apply(this, 
arguments)
-  }
-}
-  })
-
-}(jQuery);
-
-/* 
- * Bootstrap: alert.js v3.3.6
- * http://getbootstrap.com/javascript/#alerts
- * 
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *  */
-
-
-+function ($) {
-  'use strict';
-
-  // ALERT CLASS DEFINITION
-  // ==
-
-  var dismiss = '[data-dismiss="alert"]'
-  var Alert   = function (el) {
-$(el).on('click', dismiss, this.close)
-  }
-
-  Alert.VERSION = '3.3.6'
-
-  Alert.TRANSITION_DURATION = 150
-
-  Alert.prototype.close = function (e) {
-var $this= $(this)
-var selector = $this.attr('data-target')
-
-if (!selector) {
-  selector = $this.attr('href')
-  selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip 
for ie7
-}
-
-var $parent = $(selector)
-
-if (e) e.preventDefault()
-
-if (!$parent.length) {
-  $parent = $this.closest('.alert')
-}
-
-$parent.trigger(e 

[01/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
Repository: incubator-carbondata-site
Updated Branches:
  refs/heads/asf-site bc1361dda -> 99fd49060


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/src/site/markdown/release-guide.md
--
diff --git a/src/site/markdown/release-guide.md 
b/src/site/markdown/release-guide.md
deleted file mode 100644
index 50a0e8a..000
--- a/src/site/markdown/release-guide.md
+++ /dev/null
@@ -1,482 +0,0 @@
-
-
-# Apache CarbonData Release Guide
-
-Apache CarbonData periodically declares and publishes releases.
-
-Each release is executed by a _Release Manager_, who is selected among the 
CarbonData committers.
- This document describes the process that the Release Manager follows to 
perform a release. Any 
- changes to this process should be discussed and adopted on the 
- [dev@ mailing list](mailto:d...@carbondata.incubator.apache.org).
- 
-Please remember that publishing software has legal consequences. This guide 
complements the 
-foundation-wide [Product Release 
Policy](http://www.apache.org/dev/release.html) and [Release 
-Distribution Policy](http://www.apache.org/dev/release-distribution).
-
-## Decide to release
-
-Deciding to release and selecting a Release Manager is the first step of the 
release process. 
-This is a consensus-based decision of the entire community.
-
-Anybody can propose a release on the dev@ mailing list, giving a solid 
argument and nominating a 
-committer as the Release Manager (including themselves). There's no formal 
process, no vote 
-requirements, and no timing requirements. Any objections should be resolved by 
consensus before 
-starting the release.
-
-_Checklist to proceed to next step:_
-
-1. Community agrees to release
-2. Community selects a Release Manager
-
-## Prepare for the release
-
-Before your first release, you should perform one-time configuration steps. 
This will set up your
- security keys for signing the artifacts and access release repository.
- 
-To prepare for each release, you should audit the project status in the Jira, 
and do necessary 
-bookkeeping. Finally, you should tag a release.
-
-### One-time setup instructions
-
- GPG Key
-
-You need to have a GPG key to sign the release artifacts. Please be aware of 
the ASF-wide 
-[release signing guidelines](https://www.apache.org/dev/release-signing.html). 
If you don't have 
-a GPG key associated with your Apache account, please create one according to 
the guidelines.
-
-Determine your Apache GPG key and key ID, as follows:
-
-```
-gpg --list-keys
-```
-
-This will list your GPG keys. One of these should reflect your Apache account, 
for exemple:
-
-```
-pub   2048R/845E6689 2016-02-23
-uid  Nomen Nescio 
-sub   2048R/BA4D50BE 2016-02-23
-```
-
-Here, the key ID is the 8-digit hex string in the `pub` line: `845E6689`.
-
-Now, add your Apache GPG key to the CarbonData's `KEYS` file in `dev` and 
`release` repositories 
-at `dist.apache.org`. Follow the instructions listed at the top of these files.
- 
-Configure `git` to use this key when signing code by giving it your key ID, as 
follows:
-
-```
-git config --global user.signingkey 845E6689
-```
-
-You may drop the `--global` option if you'd prefer to use this key for the 
current repository only.
-
-You may wish to start `gpg-agent` to unlock your GPG key only once using your 
passphrase. 
-Otherwise, you may need to enter this passphrase several times. The setup of 
`gpg-agent` varies 
-based on operating system, but may be something like this:
-
-```
-eval $(gpg-agent --daemon --no-grab --write-env-file $HOME/.gpg-agent-info)
-export GPG_TTY=$(tty)
-export GPG_AGENT_INFO
-```
-
- Access to Apache Nexus
-
-Configure access to the [Apache Nexus 
repository](https://repository.apache.org), used for 
-staging repository and promote the artifacts to Maven Central.
-
-1. You log in with your Apache account.
-2. Confirm you have appropriate access by finding `org.apache.carbondata` 
under `Staging Profiles`.
-3. Navigate to your `Profile` (top right dropdown menu of the page).
-4. Choose `User Token` from the dropdown, then click `Access User Token`. Copy 
a snippet of the 
-Maven XML configuration block.
-5. Insert this snippet twice into your global Maven `settings.xml` file, 
typically `${HOME]/
-.m2/settings.xml`. The end result should look like this, where `TOKEN_NAME` 
and `TOKEN_PASSWORD` 
-are your secret tokens:
-
-```
- 
-   
- 
-   apache.releases.https
-   TOKEN_NAME
-   TOKEN_PASSWORD
- 
- 
-   apache.snapshots.https
-   TOKEN_NAME
-   TOKEN_PASSWORD
- 
-   
- 
-```
-
- Create a new version in Jira
-
-When contributors resolve an issue in Jira, they are tagging it with a release 
that will contain 
-their changes. With the release currently underway, new issues should be 
resolved against a 
-subsequent future release. Therefore, you should create a release 

[07/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/src/main/webapp/data-management.html
--
diff --git a/src/main/webapp/data-management.html 
b/src/main/webapp/data-management.html
new file mode 100644
index 000..8ee68fa
--- /dev/null
+++ b/src/main/webapp/data-management.html
@@ -0,0 +1,439 @@
+
+
+
+
+
+
+
+
+CarbonData
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+ 
+
+Home
+
+ Download 
+
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
+   target="_blank">Apache CarbonData 
1.0.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
+   target="_blank">Apache CarbonData 
0.2.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
+   target="_blank">Apache CarbonData 
0.1.1
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
+   target="_blank">Apache CarbonData 
0.1.0
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
+   target="_blank">Release Archive
+
+
+Documentation
+
+Community 
+
+
+https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
+   target="_blank">Contributing to 
CarbonData
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/PPMC+and+Committers+member+list;
+   target="_blank">Project PPMC and 
Committers
+
+https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
+   target="_blank">CarbonData Meetups
+Apache 
CarbonData Security
+https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
+Jira
+
+
+
+http://www.apache.org/; class="apache_link 
hidden-xs dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+http://www.apache.org/; class="hidden-lg 
hidden-md hidden-sm dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+
+
+
+
+
+
+
+http://www.google.com/search;>
+
+
+
+
+
+
+
+ 

[25/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/css/bootstrap.css
--
diff --git a/content/css/bootstrap.css b/content/css/bootstrap.css
deleted file mode 100644
index 6167622..000
--- a/content/css/bootstrap.css
+++ /dev/null
@@ -1,6757 +0,0 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
-html {
-  font-family: sans-serif;
-  -webkit-text-size-adjust: 100%;
-  -ms-text-size-adjust: 100%;
-}
-body {
-  margin: 0;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-menu,
-nav,
-section,
-summary {
-  display: block;
-}
-audio,
-canvas,
-progress,
-video {
-  display: inline-block;
-  vertical-align: baseline;
-}
-audio:not([controls]) {
-  display: none;
-  height: 0;
-}
-[hidden],
-template {
-  display: none;
-}
-a {
-  background-color: transparent;
-}
-a:active,
-a:hover {
-  outline: 0;
-}
-abbr[title] {
-  border-bottom: 1px dotted;
-}
-b,
-strong {
-  font-weight: bold;
-}
-dfn {
-  font-style: italic;
-}
-h1 {
-  margin: .67em 0;
-  font-size: 2em;
-}
-mark {
-  color: #000;
-  background: #ff0;
-}
-small {
-  font-size: 80%;
-}
-sub,
-sup {
-  position: relative;
-  font-size: 75%;
-  line-height: 0;
-  vertical-align: baseline;
-}
-sup {
-  top: -.5em;
-}
-sub {
-  bottom: -.25em;
-}
-img {
-  border: 0;
-}
-svg:not(:root) {
-  overflow: hidden;
-}
-figure {
-  margin: 1em 40px;
-}
-hr {
-  height: 0;
-  -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
-  box-sizing: content-box;
-}
-pre {
-  overflow: auto;
-}
-code,
-kbd,
-pre,
-samp {
-  font-family: monospace, monospace;
-  font-size: 1em;
-}
-button,
-input,
-optgroup,
-select,
-textarea {
-  margin: 0;
-  font: inherit;
-  color: inherit;
-}
-button {
-  overflow: visible;
-}
-button,
-select {
-  text-transform: none;
-}
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
-  -webkit-appearance: button;
-  cursor: pointer;
-}
-button[disabled],
-html input[disabled] {
-  cursor: default;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
-  padding: 0;
-  border: 0;
-}
-input {
-  line-height: normal;
-}
-input[type="checkbox"],
-input[type="radio"] {
-  -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  padding: 0;
-}
-input[type="number"]::-webkit-inner-spin-button,
-input[type="number"]::-webkit-outer-spin-button {
-  height: auto;
-}
-input[type="search"] {
-  -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
-  box-sizing: content-box;
-  -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
-  -webkit-appearance: none;
-}
-fieldset {
-  padding: .35em .625em .75em;
-  margin: 0 2px;
-  border: 1px solid #c0c0c0;
-}
-legend {
-  padding: 0;
-  border: 0;
-}
-textarea {
-  overflow: auto;
-}
-optgroup {
-  font-weight: bold;
-}
-table {
-  border-spacing: 0;
-  border-collapse: collapse;
-}
-td,
-th {
-  padding: 0;
-}
-/*! Source: 
https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
-@media print {
-  *,
-  *:before,
-  *:after {
-color: #000 !important;
-text-shadow: none !important;
-background: transparent !important;
--webkit-box-shadow: none !important;
-box-shadow: none !important;
-  }
-  a,
-  a:visited {
-text-decoration: underline;
-  }
-  a[href]:after {
-content: " (" attr(href) ")";
-  }
-  abbr[title]:after {
-content: " (" attr(title) ")";
-  }
-  a[href^="#"]:after,
-  a[href^="javascript:"]:after {
-content: "";
-  }
-  pre,
-  blockquote {
-border: 1px solid #999;
-
-page-break-inside: avoid;
-  }
-  thead {
-display: table-header-group;
-  }
-  tr,
-  img {
-page-break-inside: avoid;
-  }
-  img {
-max-width: 100% !important;
-  }
-  p,
-  h2,
-  h3 {
-orphans: 3;
-widows: 3;
-  }
-  h2,
-  h3 {
-page-break-after: avoid;
-  }
-  .navbar {
-display: none;
-  }
-  .btn > .caret,
-  .dropup > .btn > .caret {
-border-top-color: #000 !important;
-  }
-  .label {
-border: 1px solid #000;
-  }
-  .table {
-border-collapse: collapse !important;
-  }
-  .table td,
-  .table th {
-background-color: #fff !important;
-  }
-  .table-bordered th,
-  .table-bordered td {
-border: 1px solid #ddd !important;
-  }
-}
-@font-face {
-  font-family: 'Glyphicons Halflings';
-
-  src: url('../fonts/glyphicons-halflings-regular.eot');
-  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') 
format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') 
format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') 

[11/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/js/bootstrap.js
--
diff --git a/content/js/bootstrap.js b/content/js/bootstrap.js
deleted file mode 100644
index 8a2e99a..000
--- a/content/js/bootstrap.js
+++ /dev/null
@@ -1,2377 +0,0 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under the MIT license
- */
-
-if (typeof jQuery === 'undefined') {
-  throw new Error('Bootstrap\'s JavaScript requires jQuery')
-}
-
-+function ($) {
-  'use strict';
-  var version = $.fn.jquery.split(' ')[0].split('.')
-  if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 
9 && version[2] < 1) || (version[0] > 3)) {
-throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or 
higher, but lower than version 4')
-  }
-}(jQuery);
-
-/* 
- * Bootstrap: transition.js v3.3.7
- * http://getbootstrap.com/javascript/#transitions
- * 
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *  */
-
-
-+function ($) {
-  'use strict';
-
-  // CSS TRANSITION SUPPORT (Shoutout: http://www.modernizr.com/)
-  // 
-
-  function transitionEnd() {
-var el = document.createElement('bootstrap')
-
-var transEndEventNames = {
-  WebkitTransition : 'webkitTransitionEnd',
-  MozTransition: 'transitionend',
-  OTransition  : 'oTransitionEnd otransitionend',
-  transition   : 'transitionend'
-}
-
-for (var name in transEndEventNames) {
-  if (el.style[name] !== undefined) {
-return { end: transEndEventNames[name] }
-  }
-}
-
-return false // explicit for ie8 (  ._.)
-  }
-
-  // http://blog.alexmaccaw.com/css-transitions
-  $.fn.emulateTransitionEnd = function (duration) {
-var called = false
-var $el = this
-$(this).one('bsTransitionEnd', function () { called = true })
-var callback = function () { if (!called) 
$($el).trigger($.support.transition.end) }
-setTimeout(callback, duration)
-return this
-  }
-
-  $(function () {
-$.support.transition = transitionEnd()
-
-if (!$.support.transition) return
-
-$.event.special.bsTransitionEnd = {
-  bindType: $.support.transition.end,
-  delegateType: $.support.transition.end,
-  handle: function (e) {
-if ($(e.target).is(this)) return e.handleObj.handler.apply(this, 
arguments)
-  }
-}
-  })
-
-}(jQuery);
-
-/* 
- * Bootstrap: alert.js v3.3.7
- * http://getbootstrap.com/javascript/#alerts
- * 
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- *  */
-
-
-+function ($) {
-  'use strict';
-
-  // ALERT CLASS DEFINITION
-  // ==
-
-  var dismiss = '[data-dismiss="alert"]'
-  var Alert   = function (el) {
-$(el).on('click', dismiss, this.close)
-  }
-
-  Alert.VERSION = '3.3.7'
-
-  Alert.TRANSITION_DURATION = 150
-
-  Alert.prototype.close = function (e) {
-var $this= $(this)
-var selector = $this.attr('data-target')
-
-if (!selector) {
-  selector = $this.attr('href')
-  selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') // strip 
for ie7
-}
-
-var $parent = $(selector === '#' ? [] : selector)
-
-if (e) e.preventDefault()
-
-if (!$parent.length) {
-  $parent = $this.closest('.alert')
-}
-
-$parent.trigger(e = $.Event('close.bs.alert'))
-
-if (e.isDefaultPrevented()) return
-
-$parent.removeClass('in')
-
-function removeElement() {
-  // detach from parent, fire event then clean up data
-  $parent.detach().trigger('closed.bs.alert').remove()
-}
-
-$.support.transition && $parent.hasClass('fade') ?
-  $parent
-.one('bsTransitionEnd', removeElement)
-.emulateTransitionEnd(Alert.TRANSITION_DURATION) :
-  removeElement()
-  }
-
-
-  // ALERT PLUGIN DEFINITION
-  // ===
-
-  function Plugin(option) {
-return this.each(function () {
-  var $this = $(this)
-  var data  = $this.data('bs.alert')
-
-  if (!data) $this.data('bs.alert', (data = new Alert(this)))
-  if (typeof option == 'string') data[option].call($this)
-})
-  }
-
-  var old = $.fn.alert
-
-  $.fn.alert = Plugin
-  $.fn.alert.Constructor = Alert
-
-
-  // ALERT NO CONFLICT
-  // =
-
-  

[23/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/css/font-awesome.css
--
diff --git a/content/css/font-awesome.css b/content/css/font-awesome.css
deleted file mode 100644
index e3ac4b3..000
--- a/content/css/font-awesome.css
+++ /dev/null
@@ -1,2337 +0,0 @@
-/*!
- *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
- *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT 
License)
- */
-/* FONT PATH
- * -- */
-@font-face {
-  font-family: 'FontAwesome';
-  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');
-  src: url('../fonts/fontawesome-webfont.eot?#iefix=4.7.0') 
format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') 
format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') 
format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') 
format('truetype'), 
url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') 
format('svg');
-  font-weight: normal;
-  font-style: normal;
-}
-.fa {
-  display: inline-block;
-  font: normal normal normal 14px/1 FontAwesome;
-  font-size: inherit;
-  text-rendering: auto;
-  -webkit-font-smoothing: antialiased;
-  -moz-osx-font-smoothing: grayscale;
-}
-/* makes the font 33% larger relative to the icon container */
-.fa-lg {
-  font-size: 1.em;
-  line-height: 0.75em;
-  vertical-align: -15%;
-}
-.fa-2x {
-  font-size: 2em;
-}
-.fa-3x {
-  font-size: 3em;
-}
-.fa-4x {
-  font-size: 4em;
-}
-.fa-5x {
-  font-size: 5em;
-}
-.fa-fw {
-  width: 1.28571429em;
-  text-align: center;
-}
-.fa-ul {
-  padding-left: 0;
-  margin-left: 2.14285714em;
-  list-style-type: none;
-}
-.fa-ul > li {
-  position: relative;
-}
-.fa-li {
-  position: absolute;
-  left: -2.14285714em;
-  width: 2.14285714em;
-  top: 0.14285714em;
-  text-align: center;
-}
-.fa-li.fa-lg {
-  left: -1.85714286em;
-}
-.fa-border {
-  padding: .2em .25em .15em;
-  border: solid 0.08em #eee;
-  border-radius: .1em;
-}
-.fa-pull-left {
-  float: left;
-}
-.fa-pull-right {
-  float: right;
-}
-.fa.fa-pull-left {
-  margin-right: .3em;
-}
-.fa.fa-pull-right {
-  margin-left: .3em;
-}
-/* Deprecated as of 4.4.0 */
-.pull-right {
-  float: right;
-}
-.pull-left {
-  float: left;
-}
-.fa.pull-left {
-  margin-right: .3em;
-}
-.fa.pull-right {
-  margin-left: .3em;
-}
-.fa-spin {
-  -webkit-animation: fa-spin 2s infinite linear;
-  animation: fa-spin 2s infinite linear;
-}
-.fa-pulse {
-  -webkit-animation: fa-spin 1s infinite steps(8);
-  animation: fa-spin 1s infinite steps(8);
-}
-@-webkit-keyframes fa-spin {
-  0% {
--webkit-transform: rotate(0deg);
-transform: rotate(0deg);
-  }
-  100% {
--webkit-transform: rotate(359deg);
-transform: rotate(359deg);
-  }
-}
-@keyframes fa-spin {
-  0% {
--webkit-transform: rotate(0deg);
-transform: rotate(0deg);
-  }
-  100% {
--webkit-transform: rotate(359deg);
-transform: rotate(359deg);
-  }
-}
-.fa-rotate-90 {
-  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
-  -webkit-transform: rotate(90deg);
-  -ms-transform: rotate(90deg);
-  transform: rotate(90deg);
-}
-.fa-rotate-180 {
-  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
-  -webkit-transform: rotate(180deg);
-  -ms-transform: rotate(180deg);
-  transform: rotate(180deg);
-}
-.fa-rotate-270 {
-  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
-  -webkit-transform: rotate(270deg);
-  -ms-transform: rotate(270deg);
-  transform: rotate(270deg);
-}
-.fa-flip-horizontal {
-  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, 
mirror=1)";
-  -webkit-transform: scale(-1, 1);
-  -ms-transform: scale(-1, 1);
-  transform: scale(-1, 1);
-}
-.fa-flip-vertical {
-  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, 
mirror=1)";
-  -webkit-transform: scale(1, -1);
-  -ms-transform: scale(1, -1);
-  transform: scale(1, -1);
-}
-:root .fa-rotate-90,
-:root .fa-rotate-180,
-:root .fa-rotate-270,
-:root .fa-flip-horizontal,
-:root .fa-flip-vertical {
-  filter: none;
-}
-.fa-stack {
-  position: relative;
-  display: inline-block;
-  width: 2em;
-  height: 2em;
-  line-height: 2em;
-  vertical-align: middle;
-}
-.fa-stack-1x,
-.fa-stack-2x {
-  position: absolute;
-  left: 0;
-  width: 100%;
-  text-align: center;
-}
-.fa-stack-1x {
-  line-height: inherit;
-}
-.fa-stack-2x {
-  font-size: 2em;
-}
-.fa-inverse {
-  color: #fff;
-}
-/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
-   readers do not read off random characters that represent icons */
-.fa-glass:before {
-  content: "\f000";
-}
-.fa-music:before {
-  content: "\f001";
-}
-.fa-search:before {
-  content: "\f002";
-}
-.fa-envelope-o:before {
-  content: "\f003";
-}
-.fa-heart:before {
-  content: "\f004";
-}
-.fa-star:before {
-  content: "\f005";
-}
-.fa-star-o:before {
-  content: 

[02/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/src/site/markdown/configuration-parameters.md
--
diff --git a/src/site/markdown/configuration-parameters.md 
b/src/site/markdown/configuration-parameters.md
deleted file mode 100644
index 774734a..000
--- a/src/site/markdown/configuration-parameters.md
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-# Configuring CarbonData
- This tutorial guides you through the advanced configurations of CarbonData :
- 
- * [System Configuration](#system-configuration)
- * [Performance Configuration](#performance-configuration)
- * [Miscellaneous Configuration](#miscellaneous-configuration)
- * [Spark Configuration](#spark-configuration)
- 
- 
-##  System Configuration
-This section provides the details of all the configurations required for the 
CarbonData System.
-
-System Configuration in carbon.properties
-
-| Property | Default Value | Description |
-||-|--|
-| carbon.storelocation | /user/hive/warehouse/carbon.store | Location where 
CarbonData will create the store, and write the data in its own format. NOTE: 
Store location should be in HDFS. |
-| carbon.ddl.base.hdfs.url | hdfs://hacluster/opt/data | This property is used 
to configure the HDFS relative path, the path configured in 
carbon.ddl.base.hdfs.url will be appended to the HDFS path configured in 
fs.defaultFS. If this path is configured, then user need not pass the complete 
path while dataload. For example: If absolute path of the csv file is 
hdfs://10.18.101.155:54310/data/cnbc/2016/xyz.csv, the path 
"hdfs://10.18.101.155:54310" will come from property fs.defaultFS and user can 
configure the /data/cnbc/ as carbon.ddl.base.hdfs.url. Now while dataload user 
can specify the csv path as /2016/xyz.csv. |
-| carbon.badRecords.location | /opt/Carbon/Spark/badrecords | Path where the 
bad records are stored. |
-| carbon.kettle.home | $SPARK_HOME/carbonlib/carbonplugins | Configuration for 
loading the data with kettle. |
-| carbon.data.file.version | 2 | If this parameter value is set to 1, then 
CarbonData will support the data load which is in old format(0.x version). If 
the value is set to 2(1.x onwards version), then CarbonData will support the 
data load of new format only.|
-
-##  Performance Configuration
-This section provides the details of all the configurations required for 
CarbonData Performance Optimization.
-
-Performance Configuration in carbon.properties
-
-* **Data Loading Configuration**
-
-| Parameter | Default Value | Description | Range |
-|--|---|--|---|
-| carbon.sort.file.buffer.size | 20 | File read buffer size used during 
sorting. This value is expressed in MB. | Min=1 and Max=100 |
-| carbon.graph.rowset.size | 10 | Rowset size exchanged between data load 
graph steps. | Min=500 and Max=100 |
-| carbon.number.of.cores.while.loading | 6 | Number of cores to be used while 
loading data. |  |
-| carbon.sort.size | 50 | Record count to sort and write intermediate 
files to temp. |  |
-| carbon.enableXXHash | true | Algorithm for hashmap for hashkey calculation. 
|  |
-| carbon.number.of.cores.block.sort | 7 | Number of cores to use for block 
sort while loading data. |  |
-| carbon.max.driver.lru.cache.size | -1 | Max LRU cache size upto which data 
will be loaded at the driver side. This value is expressed in MB. Default value 
of -1 means there is no memory limit for caching. Only integer values greater 
than 0 are accepted. |  |
-| carbon.max.executor.lru.cache.size | -1 | Max LRU cache size upto which data 
will be loaded at the executor side. This value is expressed in MB. Default 
value of -1 means there is no memory limit for caching. Only integer values 
greater than 0 are accepted. If this parameter is not configured, then the 
carbon.max.driver.lru.cache.size value will be considered. |  |
-| 

[15/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Regular.svg
--
diff --git a/content/fonts/OpenSans-Regular.svg 
b/content/fonts/OpenSans-Regular.svg
deleted file mode 100644
index b34ed42..000
--- a/content/fonts/OpenSans-Regular.svg
+++ /dev/null
@@ -1,958 +0,0 @@
-
-http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd; >
-http://www.w3.org/2000/svg;>
-
-This is a custom SVG webfont generated by Font Squirrel.
-Copyright   : Digitized data copyright  20102011 Google Corporation
-Foundry : Ascender Corporation
-Foundry URL : httpwwwascendercorpcom
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Regular.ttf
--
diff --git a/content/fonts/OpenSans-Regular.ttf 
b/content/fonts/OpenSans-Regular.ttf
deleted file mode 100644
index a135120..000
Binary files a/content/fonts/OpenSans-Regular.ttf and /dev/null differ




[32/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/css/bootstrap.css
--
diff --git a/content/bootstrap/css/bootstrap.css 
b/content/bootstrap/css/bootstrap.css
deleted file mode 100644
index 42c79d6..000
--- a/content/bootstrap/css/bootstrap.css
+++ /dev/null
@@ -1,6760 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
-html {
-  font-family: sans-serif;
-  -webkit-text-size-adjust: 100%;
-  -ms-text-size-adjust: 100%;
-}
-body {
-  margin: 0;
-}
-article,
-aside,
-details,
-figcaption,
-figure,
-footer,
-header,
-hgroup,
-main,
-menu,
-nav,
-section,
-summary {
-  display: block;
-}
-audio,
-canvas,
-progress,
-video {
-  display: inline-block;
-  vertical-align: baseline;
-}
-audio:not([controls]) {
-  display: none;
-  height: 0;
-}
-[hidden],
-template {
-  display: none;
-}
-a {
-  background-color: transparent;
-}
-a:active,
-a:hover {
-  outline: 0;
-}
-abbr[title] {
-  border-bottom: 1px dotted;
-}
-b,
-strong {
-  font-weight: bold;
-}
-dfn {
-  font-style: italic;
-}
-h1 {
-  margin: .67em 0;
-  font-size: 2em;
-}
-mark {
-  color: #000;
-  background: #ff0;
-}
-small {
-  font-size: 80%;
-}
-sub,
-sup {
-  position: relative;
-  font-size: 75%;
-  line-height: 0;
-  vertical-align: baseline;
-}
-sup {
-  top: -.5em;
-}
-sub {
-  bottom: -.25em;
-}
-img {
-  border: 0;
-}
-svg:not(:root) {
-  overflow: hidden;
-}
-figure {
-  margin: 1em 40px;
-}
-hr {
-  height: 0;
-  -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
-  box-sizing: content-box;
-}
-pre {
-  overflow: auto;
-}
-code,
-kbd,
-pre,
-samp {
-  font-family: monospace, monospace;
-  font-size: 1em;
-}
-button,
-input,
-optgroup,
-select,
-textarea {
-  margin: 0;
-  font: inherit;
-  color: inherit;
-}
-button {
-  overflow: visible;
-}
-button,
-select {
-  text-transform: none;
-}
-button,
-html input[type="button"],
-input[type="reset"],
-input[type="submit"] {
-  -webkit-appearance: button;
-  cursor: pointer;
-}
-button[disabled],
-html input[disabled] {
-  cursor: default;
-}
-button::-moz-focus-inner,
-input::-moz-focus-inner {
-  padding: 0;
-  border: 0;
-}
-input {
-  line-height: normal;
-}
-input[type="checkbox"],
-input[type="radio"] {
-  -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
-  box-sizing: border-box;
-  padding: 0;
-}
-input[type="number"]::-webkit-inner-spin-button,
-input[type="number"]::-webkit-outer-spin-button {
-  height: auto;
-}
-input[type="search"] {
-  -webkit-box-sizing: content-box;
- -moz-box-sizing: content-box;
-  box-sizing: content-box;
-  -webkit-appearance: textfield;
-}
-input[type="search"]::-webkit-search-cancel-button,
-input[type="search"]::-webkit-search-decoration {
-  -webkit-appearance: none;
-}
-fieldset {
-  padding: .35em .625em .75em;
-  margin: 0 2px;
-  border: 1px solid #c0c0c0;
-}
-legend {
-  padding: 0;
-  border: 0;
-}
-textarea {
-  overflow: auto;
-}
-optgroup {
-  font-weight: bold;
-}
-table {
-  border-spacing: 0;
-  border-collapse: collapse;
-}
-td,
-th {
-  padding: 0;
-}
-/*! Source: 
https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
-@media print {
-  *,
-  *:before,
-  *:after {
-color: #000 !important;
-text-shadow: none !important;
-background: transparent !important;
--webkit-box-shadow: none !important;
-box-shadow: none !important;
-  }
-  a,
-  a:visited {
-text-decoration: underline;
-  }
-  a[href]:after {
-content: " (" attr(href) ")";
-  }
-  abbr[title]:after {
-content: " (" attr(title) ")";
-  }
-  a[href^="#"]:after,
-  a[href^="javascript:"]:after {
-content: "";
-  }
-  pre,
-  blockquote {
-border: 1px solid #999;
-
-page-break-inside: avoid;
-  }
-  thead {
-display: table-header-group;
-  }
-  tr,
-  img {
-page-break-inside: avoid;
-  }
-  img {
-max-width: 100% !important;
-  }
-  p,
-  h2,
-  h3 {
-orphans: 3;
-widows: 3;
-  }
-  h2,
-  h3 {
-page-break-after: avoid;
-  }
-  .navbar {
-display: none;
-  }
-  .btn > .caret,
-  .dropup > .btn > .caret {
-border-top-color: #000 !important;
-  }
-  .label {
-border: 1px solid #000;
-  }
-  .table {
-border-collapse: collapse !important;
-  }
-  .table td,
-  .table th {
-background-color: #fff !important;
-  }
-  .table-bordered th,
-  .table-bordered td {
-border: 1px solid #ddd !important;
-  }
-}
-@font-face {
-  font-family: 'Glyphicons Halflings';
-
-  src: url('../fonts/glyphicons-halflings-regular.eot');
-  src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') 
format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') 
format('woff2'), 

[29/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/css/bootstrap.min.css.map
--
diff --git a/content/bootstrap/css/bootstrap.min.css.map 
b/content/bootstrap/css/bootstrap.min.css.map
deleted file mode 100644
index 5f49bb3..000
--- a/content/bootstrap/css/bootstrap.min.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["less/normalize.less","less/print.less","bootstrap.css","dist/css/bootstrap.css","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","le
 
ss/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/mixins/reset-text.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"4EAQA,KACE,YAAA,WACA,yBAAA,KACA,qBAAA,KAOF,KACE,OAAA,EAaF,QAAA,MAAA,QAAA,WAAA,OAAA,OAAA,OAAA,OAAA,KAAA,KAAA,IAAA,QAAA,QAaE,QAAA,MAQF,MAAA,OAAA,SAAA,MAIE,QAAA,aACA,eAAA,SAQF,sBACE,QAAA,KACA,OAAA,EAQF,SAAA,SAEE,QAAA,KAUF,EACE,iBAAA,YAQF,SAAA,QAEE,QAAA,EAUF,YAC
 
E,cAAA,IAAA,OAOF,EAAA,OAEE,YAAA,IAOF,IACE,WAAA,OAQF,GACE,OAAA,MAAA,EACA,UAAA,IAOF,KACE,MAAA,KACA,WAAA,KAOF,MACE,UAAA,IAOF,IAAA,IAEE,SAAA,SACA,UAAA,IACA,YAAA,EACA,eAAA,SAGF,IACE,IAAA,MAGF,IACE,OAAA,OAUF,IACE,OAAA,EAOF,eACE,SAAA,OAUF,OACE,OAAA,IAAA,KAOF,GACE,OAAA,EAAA,mBAAA,YAAA,gBAAA,YACA,WAAA,YAOF,IACE,SAAA,KAOF,KAAA,IAAA,IAAA,KAIE,YAAA,UAAA,UACA,UAAA,IAkBF,OAAA,MAAA,SAAA,OAAA,SAKE,OAAA,EACA,KAAA,QACA,MAAA,QAOF,OACE,SAAA,QAUF,OAAA,OAEE,eAAA,KAWF,OAAA,wBAAA,kBAAA,mBAIE,mBAAA,OACA,OAAA,QAOF,iBAAA,qBAEE,OAAA,QAOF,yBAAA,wBAEE,QAAA,EACA,OAAA,EAQF,MACE,YAAA,OAWF,qBAAA,kBAEE,mBAAA,WAAA,gBAAA,WAAA,WAAA,WACA,QAAA,EASF,8CAAA,8CAEE,OAAA,KAQF,mBACE,mBAAA,YACA,gBAAA,YAAA,WAAA,YAAA,mBAAA,UASF,iDAAA,8CAEE,mBAAA,KAOF,SACE,QAAA,MAAA,OAAA,MACA,OAAA,EAAA,IACA,OAAA,IAAA,MAAA,OAQF,OACE,QAAA,EACA,OAAA,EAOF,SACE,SAAA,KAQF,SACE,YAAA,IAUF,MACE,eAAA,EACA,gBAAA,SAGF,GAAA,GAEE,QAAA,uFCjUF,aA7FI,EAAA,OAAA,QAGI,MAAA,eACA,YAAA,eACA,WAAA,cAAA,mBAAA,eACA,WAAA,eAGJ,EAAA,UAEI,gBAAA,UAGJ,cACI,QAAA,KAAA,WAAA,IAGJ,kBACI
 
,QAAA,KAAA,YAAA,IAKJ,6BAAA,mBAEI,QAAA,GAGJ,WAAA,IAEI,OAAA,IAAA,MAAA,KC4KL,kBAAA,MDvKK,MC0KL,QAAA,mBDrKK,IE8KN,GDLC,kBAAA,MDrKK,ICwKL,UAAA,eCUD,GF5KM,GE2KN,EF1KM,QAAA,ECuKL,OAAA,ECSD,GF3KM,GCsKL,iBAAA,MD/JK,QCkKL,QAAA,KCSD,YFtKU,oBCiKT,iBAAA,eD7JK,OCgKL,OAAA,IAAA,MAAA,KD5JK,OC+JL,gBAAA,mBCSD,UFpKU,UC+JT,iBAAA,eDzJS,mBEkKV,mBDLC,OAAA,IAAA,MAAA,gBEjPD,WACA,YAAA,uBFsPD,IAAA,+CE7OC,IAAK,sDAAuD,4BAA6B,iDAAkD,gBAAiB,gDAAiD,eAAgB,+CAAgD,mBAAoB,2EAA4E,cAE7W,WACA,SAAA,SACA,IAAA,IACA,QAAA,aACA,YAAA,uBACA,WAAA,OACA,YAAA,IACA,YAAA,EAIkC,uBAAA,YAAW,wBAAA,UACX,2BAAW,QAAA,QAEX,uBDuPlC,QAAS,QCtPyB,sBFiPnC,uBEjP8C,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,2BAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,wBAAW,QAAA,QACX,yBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX,6BAAW,QAAA,QACX,uBAAW,QAAA,QACX,uBAAW,QAAA,QACX,2BAAW,QAAA,QACX,qBAAW,QAAA,QACX,0BAAW,QAAA,QACX,qBAAW,QAAA,QACX,yBAAW,QAAA,QACX,0BAAW,QAAA,QACX,2BAAW,QAAA,QACX,sBAAW,QAAA,QACX,yBAAW,QAAA,QACX,sBAAW,QAAA,QACX,wBAAW,QAAA,QACX,uBAAW,QAAA,QACX
 

[10/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/js/bootstrap.min.js
--
diff --git a/content/js/bootstrap.min.js b/content/js/bootstrap.min.js
deleted file mode 100644
index 9bcd2fc..000
--- a/content/js/bootstrap.min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap v3.3.7 (http://getbootstrap.com)
- * Copyright 2011-2016 Twitter, Inc.
- * Licensed under the MIT license
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" 
")[0].split(".");if(b[0]<2&[1]<9||1==b[0]&&9==b[1]&[2]<1||b[0]>3)throw new 
Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but 
lower than version 4")}(jQuery),+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){if(a(b
 .target).is(this))return 
b.handleObj.handler.apply(this,arguments)}})})}(jQuery),+function(a){"use 
strict";function b(b){return this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==typeof b&[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.7",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function
 c(){g.detach().trigger("closed.bs.alert").remove()}var 
e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&(/.*(?=#[^\s]*$)/,""));var
 
g=a("#"===f?[]:f);b&(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c
 ,d.prototype.close)}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&(b)})}var 
c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.7",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c).prop(c,!0)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c).prop(c,!1))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeCla
 
ss("active"),this.$element.addClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&("change")}else
 
this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 
a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var
 
d=a(c.target).closest(".btn");b.call(d,"toggle"),a(c.target).is('input[type="radio"],
 
input[type="checkbox"]')||(c.preventDefault(),d.is("input,button")?d.trigger("focus"):d.find("input:visible,button:visible").first().trigger("focus"))}).on("focus.bs.button.data-api
 
blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"us
 e strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=a.extend({},c.DEFAULTS,d.data(),"object"==typeof
 b&),g="string"==typeof b?b:f.slide;e||d.data("bs.carousel",e=new 
c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&().cycle()})}var 

[41/54] incubator-carbondata-site git commit: removed .idea files and updated gitignore

2017-04-12 Thread chenliang613
removed .idea files and updated gitignore


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/2ab3cdbc
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/2ab3cdbc
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/2ab3cdbc

Branch: refs/heads/asf-site
Commit: 2ab3cdbc50bfa87e721184dfcbee28c9ddf071c4
Parents: e206c92
Author: PallaviSingh1992 
Authored: Wed Apr 5 17:46:03 2017 +0530
Committer: PallaviSingh1992 
Committed: Wed Apr 5 17:46:03 2017 +0530

--
 .gitignore  |   1 +
 .idea/.name |   1 -
 .idea/compiler.xml  |  32 --
 .idea/copyright/profiles_settings.xml   |   3 -
 .idea/encodings.xml |   7 -
 .../Maven__com_typesafe_config_1_3_1.xml|  13 -
 .../Maven__commons_codec_commons_codec_1_9.xml  |  13 -
 ...ven__commons_logging_commons_logging_1_2.xml |  13 -
 ...g_apache_httpcomponents_httpclient_4_5_3.xml |  13 -
 ...org_apache_httpcomponents_httpcore_4_4_6.xml |  13 -
 ...ven__org_scala_lang_scala_library_2_12_1.xml |  21 -
 .../Maven__org_slf4j_slf4j_api_1_7_25.xml   |  13 -
 .../Maven__org_slf4j_slf4j_simple_1_7_25.xml|  13 -
 .idea/misc.xml  |  39 --
 .idea/modules.xml   |   8 -
 .idea/scala_compiler.xml|   6 -
 .idea/vcs.xml   |   6 -
 .idea/workspace.xml | 388 ---
 src/main/scala/FileOperationMain.scala  |   3 -
 19 files changed, 1 insertion(+), 605 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.gitignore
--
diff --git a/.gitignore b/.gitignore
index eb5a316..2f5a8f4 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
+.idea/
 target

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.idea/.name
--
diff --git a/.idea/.name b/.idea/.name
deleted file mode 100644
index d97e100..000
--- a/.idea/.name
+++ /dev/null
@@ -1 +0,0 @@
-site
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.idea/compiler.xml
--
diff --git a/.idea/compiler.xml b/.idea/compiler.xml
deleted file mode 100644
index f4b39f8..000
--- a/.idea/compiler.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-  
-
-
-  
-  
-  
-  
-  
-  
-  
-  
-  
-
-
-  
-
-  
-  
-
-
-
-
-
-  
-
-
-  
-
-  
-
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.idea/copyright/profiles_settings.xml
--
diff --git a/.idea/copyright/profiles_settings.xml 
b/.idea/copyright/profiles_settings.xml
deleted file mode 100644
index e7bedf3..000
--- a/.idea/copyright/profiles_settings.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
-  
-
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.idea/encodings.xml
--
diff --git a/.idea/encodings.xml b/.idea/encodings.xml
deleted file mode 100644
index c0bce70..000
--- a/.idea/encodings.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-  
-
-
-  
-
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml
--
diff --git a/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml 
b/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml
deleted file mode 100644
index cf2bc37..000
--- a/.idea/libraries/Maven__com_typesafe_config_1_3_1.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-
-  
-
-  
-
-
-  
-
-
-  
-
-  
-
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/2ab3cdbc/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml
--
diff --git a/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml 
b/.idea/libraries/Maven__commons_codec_commons_codec_1_9.xml
deleted file mode 100644
index a66d039..000
--- 

[50/54] incubator-carbondata-site git commit: added properties in configuration files

2017-04-12 Thread chenliang613
added properties in configuration files


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/54e179b0
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/54e179b0
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/54e179b0

Branch: refs/heads/asf-site
Commit: 54e179b0b75f64312abcc7e19cc4b5753a024368
Parents: b357108
Author: PallaviSingh1992 
Authored: Thu Apr 6 18:31:59 2017 +0530
Committer: PallaviSingh1992 
Committed: Thu Apr 6 18:31:59 2017 +0530

--
 src/main/scala/FileModification.scala   |  1 +
 src/main/scala/FileOperationMain.scala  |  4 ++--
 .../webapp/dml-operation-on-carbondata.html |  9 ---
 src/main/webapp/index.html  | 25 ++--
 src/main/webapp/mainpage.html   |  4 ++--
 src/main/webapp/troubleshooting.html|  4 ++--
 6 files changed, 14 insertions(+), 33 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/54e179b0/src/main/scala/FileModification.scala
--
diff --git a/src/main/scala/FileModification.scala 
b/src/main/scala/FileModification.scala
index e7b3e8f..2cbfd73 100644
--- a/src/main/scala/FileModification.scala
+++ b/src/main/scala/FileModification.scala
@@ -12,6 +12,7 @@ class FileModification {
   val outputFileExtension = ".html"
 
   import scala.io.Source
+
   val headerContent: String = 
Source.fromFile(ConfigFactory.load().getString("headerPath")).mkString
   val footerContent: String = 
Source.fromFile(ConfigFactory.load().getString("footerPath")).mkString
 

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/54e179b0/src/main/scala/FileOperationMain.scala
--
diff --git a/src/main/scala/FileOperationMain.scala 
b/src/main/scala/FileOperationMain.scala
index bf14f86..2dd027e 100644
--- a/src/main/scala/FileOperationMain.scala
+++ b/src/main/scala/FileOperationMain.scala
@@ -5,8 +5,8 @@ class FileOperationMain
 object FileOperationMain {
   def main(args: Array[String]) {
 val logger = LoggerFactory.getLogger(classOf[FileOperationMain])
-val fileObject=new FileModification
-val status =fileObject.convertToHtml()
+val fileObject = new FileModification
+val status = fileObject.convertToHtml()
 logger.info(s"File Conversion to html : $status")
   }
 }

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/54e179b0/src/main/webapp/dml-operation-on-carbondata.html
--
diff --git a/src/main/webapp/dml-operation-on-carbondata.html 
b/src/main/webapp/dml-operation-on-carbondata.html
index c53811f..c05e461 100644
--- a/src/main/webapp/dml-operation-on-carbondata.html
+++ b/src/main/webapp/dml-operation-on-carbondata.html
@@ -308,14 +308,6 @@ column2:dictionaryFilePath2')
 NOTE: Date formats are specified by date pattern strings. The date pattern 
letters in CarbonData are same as in JAVA. Refer to http://docs.oracle.com/javase/7/docs/api/java/text/SimpleDateFormat.html; 
target=_blank>SimpleDateFormat.
 
 
-USE_KETTLE: This option is used to specify whether to use 
kettle for loading data or not. By default kettle is not used for data 
loading.
-
-OPTIONS('USE_KETTLE'='FALSE')
-
-
-Note :  It is recommended to set the value for this option as false.
-
-
 SINGLE_PASS: Single Pass Loading enables single job to 
finish data loading with dictionary generation on the fly. It enhances 
performance in the scenarios where the subsequent data loading after initial 
load involves fewer incremental updates on the dictionary.
 
 This option specifies whether to use single pass for loading data or not. 
By default this option is set to FALSE.
@@ -345,7 +337,6 @@ options('DELIMITER'=',', 'QUOTECHAR'='"','COMMENTCHAR'='#',
 'MULTILINE'='true','ESCAPECHAR'='\','COMPLEX_DELIMITER_LEVEL_1'='$',
 'COMPLEX_DELIMITER_LEVEL_2'=':',
 'ALL_DICTIONARY_PATH'='/opt/alldictionary/data.dictionary',
-'USE_KETTLE'='FALSE',
 'SINGLE_PASS'='TRUE'
 )
 

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/54e179b0/src/main/webapp/index.html
--
diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html
index 1251041..5c482b9 100644
--- a/src/main/webapp/index.html
+++ b/src/main/webapp/index.html
@@ -423,21 +423,10 @@
 
 https://twitter.com/search?q=%23CarbonData; target="_blank"> 
-

[36/54] incubator-carbondata-site git commit: added video link and page

2017-04-12 Thread chenliang613
added video link and page


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/8676aaae
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/8676aaae
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/8676aaae

Branch: refs/heads/asf-site
Commit: 8676aaaec231fce46df4981162a20826efd79481
Parents: 35f5810
Author: PallaviSingh1992 
Authored: Wed Apr 5 12:51:02 2017 +0530
Committer: PallaviSingh1992 
Committed: Wed Apr 5 12:51:02 2017 +0530

--
 src/main/scala/html/header.html |   3 +-
 src/main/webapp/configuration-parameters.html   |   3 +-
 src/main/webapp/css/youtube.css | 182 ++
 src/main/webapp/data-management.html|   3 +-
 .../webapp/ddl-operation-on-carbondata.html |   3 +-
 .../webapp/dml-operation-on-carbondata.html |   3 +-
 src/main/webapp/faq.html|   3 +-
 .../webapp/file-structure-of-carbondata.html|   3 +-
 src/main/webapp/images/video-play.png   | Bin 0 -> 1716 bytes
 src/main/webapp/index.html  |   1 +
 src/main/webapp/installation-guide.html |   3 +-
 src/main/webapp/js/youtube.js   |  31 +++
 src/main/webapp/mainpage.html   |   1 +
 src/main/webapp/quick-start-guide.html  |   3 +-
 src/main/webapp/security.html   |   1 +
 .../supported-data-types-in-carbondata.html |   3 +-
 src/main/webapp/troubleshooting.html|   3 +-
 src/main/webapp/useful-tips-on-carbondata.html  |   3 +-
 src/main/webapp/videogallery.html   | 246 +++
 19 files changed, 486 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/8676aaae/src/main/scala/html/header.html
--
diff --git a/src/main/scala/html/header.html b/src/main/scala/html/header.html
index ee6f9aa..15842c4 100644
--- a/src/main/scala/html/header.html
+++ b/src/main/scala/html/header.html
@@ -81,9 +81,10 @@
 
 https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
target="_blank">CarbonData Meetups
-Apache 
CarbonData Security
+Apache CarbonData 
Security
 https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
 Jira
+CarbonData Videos 

 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/8676aaae/src/main/webapp/configuration-parameters.html
--
diff --git a/src/main/webapp/configuration-parameters.html 
b/src/main/webapp/configuration-parameters.html
index 8a632df..84eba9a 100644
--- a/src/main/webapp/configuration-parameters.html
+++ b/src/main/webapp/configuration-parameters.html
@@ -81,9 +81,10 @@
 
 https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
target="_blank">CarbonData Meetups
-Apache 
CarbonData Security
+Apache CarbonData 
Security
 https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
 Jira
+CarbonData Videos 

 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/8676aaae/src/main/webapp/css/youtube.css
--
diff --git a/src/main/webapp/css/youtube.css b/src/main/webapp/css/youtube.css
new file mode 100644
index 000..f04c53e
--- /dev/null
+++ b/src/main/webapp/css/youtube.css
@@ -0,0 +1,182 @@
+#videoList {
+margin: 0px auto;
+text-align: left;
+
+}
+
+/* EOF demo */
+#videoList .videobox {
+border: 1px solid #fff;
+color: #fff;
+display: inline-table;
+font-weight: bold;
+height: 160px;
+line-height: 160px;
+margin: 10px 5px;
+text-align: center;
+text-decoration: none;
+width: 300px;
+background: #fff;
+padding: 10px;
+-webkit-box-shadow: 0px 1px 2px #aaa;
+-moz-box-shadow: 0px 1px 2px #aaa;
+box-shadow: 0px 1px 2px #aaa;
+}
+
+
+.videothumb{ }
+
+
+.videothumblink {
+width: 100%;
+height: 100%;
+display: block;

[51/54] incubator-carbondata-site git commit: fixed some minor linking issues

2017-04-12 Thread chenliang613
fixed some minor linking issues


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/b00a58bf
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/b00a58bf
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/b00a58bf

Branch: refs/heads/asf-site
Commit: b00a58bfd9bc8b801d1e0e8f8ead4d3581c194c3
Parents: 54e179b
Author: PallaviSingh1992 
Authored: Fri Apr 7 16:47:38 2017 +0530
Committer: PallaviSingh1992 
Committed: Fri Apr 7 16:47:38 2017 +0530

--
 src/main/scala/FileModification.scala   |  9 ++--
 src/main/scala/MdFilehandler.scala  | 14 +
 .../webapp/ddl-operation-on-carbondata.html | 56 
 src/main/webapp/installation-guide.html |  4 +-
 src/main/webapp/mainpage.html   | 51 +-
 src/main/webapp/quick-start-guide.html  | 30 +--
 6 files changed, 115 insertions(+), 49 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b00a58bf/src/main/scala/FileModification.scala
--
diff --git a/src/main/scala/FileModification.scala 
b/src/main/scala/FileModification.scala
index 2cbfd73..3d8c969 100644
--- a/src/main/scala/FileModification.scala
+++ b/src/main/scala/FileModification.scala
@@ -28,18 +28,21 @@ class FileModification {
 val listOfFiles = readListOfFiles()
 val statusList = listOfFiles.map { file =>
   val fileURLContent = scala.io.Source.fromURL(url + file + 
inputFileExtension).mkString
-  val getFileData = fileReadObject.getFileContent(fileURLContent)
+  val getFileData: Option[String] = 
fileReadObject.getFileContent(fileURLContent)
   getFileData match {
 case Some(data: String) => val fileData = 
fileReadObject.ConvertMdExtension(data)
-  logger.info("Begin writing [" + file + "." + outputFileExtension + 
"] at " + location)
+  logger.info("Begin writing [" + file + outputFileExtension + "] at " 
+ location)
   writeToFile(location + file + outputFileExtension, fileData)
-  logger.info("Successfully written [" + file + "." + 
outputFileExtension + "] at " + location)
+  logger.info("Successfully written [" + file  + outputFileExtension + 
"] at " + location)
   "Success"
 case None => logger.error(s"$file Conversion failed ")
   "Failure"
   }
 }
 
+fileReadObject.ConvertReadMeExtension()
+logger.info("Restored back the ReadMe.md file extension in Installation 
Guide")
+
 if (statusList.contains("Failure"))
   "Some Files Failed To Convert"
 else

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b00a58bf/src/main/scala/MdFilehandler.scala
--
diff --git a/src/main/scala/MdFilehandler.scala 
b/src/main/scala/MdFilehandler.scala
index afb427a..d7cb193 100644
--- a/src/main/scala/MdFilehandler.scala
+++ b/src/main/scala/MdFilehandler.scala
@@ -1,3 +1,5 @@
+import java.io.{File, PrintWriter}
+
 import com.typesafe.config.ConfigFactory
 import org.apache.http.HttpResponse
 import org.apache.http.client.methods.HttpPost
@@ -35,6 +37,18 @@ class MdFilehandler {
 contentAfterReplacingFileLink
   }
 
+  def ConvertReadMeExtension(): String = {
+val location = ConfigFactory.load().getString("outputFileLocation")
+val outputFileExtension = ".html"
+val modifyMdPattern = new Regex("(README)(.html)")
+val fileURLContent = 
scala.io.Source.fromFile("src/main/webapp/installation-guide.html").mkString
+val writer = new PrintWriter(new File(location + "installation-guide" + 
outputFileExtension))
+val fileContent = modifyMdPattern replaceAllIn(fileURLContent, "$1.md")
+writer.write(fileContent)
+writer.close()
+fileContent
+  }
+
   /**
 * gets content of the file through rest call
 *

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/b00a58bf/src/main/webapp/ddl-operation-on-carbondata.html
--
diff --git a/src/main/webapp/ddl-operation-on-carbondata.html 
b/src/main/webapp/ddl-operation-on-carbondata.html
index 5923a67..4de5a4a 100644
--- a/src/main/webapp/ddl-operation-on-carbondata.html
+++ b/src/main/webapp/ddl-operation-on-carbondata.html
@@ -173,6 +173,7 @@
 DROP TABLE
 COMPACTION
 BUCKETING
+TABLE RENAME
 
 
 
@@ -506,6 +507,61 @@ of columns is used.
   'BUCKETNUMBER'='4',
   'BUCKETCOLUMNS'='productName')
 
+
+
+TABLE RENAME
+
+This command is used to rename the existing table.
+
+

[45/54] incubator-carbondata-site git commit: Merge pull request #7 from kamleshknoldus/feature/MDtextstyle

2017-04-12 Thread chenliang613
Merge pull request #7 from kamleshknoldus/feature/MDtextstyle

Added font and text styling to sync with git styling 

Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/d5665146
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/d5665146
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/d5665146

Branch: refs/heads/asf-site
Commit: d5665146a5071e463cf707ff034302e240d43ade
Parents: ceb4985 5896abb
Author: Pallavi Singh 
Authored: Thu Apr 6 13:29:41 2017 +0530
Committer: GitHub 
Committed: Thu Apr 6 13:29:41 2017 +0530

--
 src/main/webapp/css/style.css | 81 +-
 1 file changed, 79 insertions(+), 2 deletions(-)
--




[26/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/js/bootstrap.min.js
--
diff --git a/content/bootstrap/js/bootstrap.min.js 
b/content/bootstrap/js/bootstrap.min.js
deleted file mode 100644
index e79c065..000
--- a/content/bootstrap/js/bootstrap.min.js
+++ /dev/null
@@ -1,7 +0,0 @@
-/*!
- * Bootstrap v3.3.6 (http://getbootstrap.com)
- * Copyright 2011-2015 Twitter, Inc.
- * Licensed under the MIT license
- */
-if("undefined"==typeof jQuery)throw new Error("Bootstrap's JavaScript requires 
jQuery");+function(a){"use strict";var b=a.fn.jquery.split(" 
")[0].split(".");if(b[0]<2&[1]<9||1==b[0]&&9==b[1]&[2]<1||b[0]>2)throw new 
Error("Bootstrap's JavaScript requires jQuery version 1.9.1 or higher, but 
lower than version 3")}(jQuery),+function(a){"use strict";function b(){var 
a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd
 otransitionend",transition:"transitionend"};for(var c in b)if(void 
0!==a.style[c])return{end:b[c]};return!1}a.fn.emulateTransitionEnd=function(b){var
 c=!1,d=this;a(this).one("bsTransitionEnd",function(){c=!0});var 
e=function(){c||a(d).trigger(a.support.transition.end)};return 
setTimeout(e,b),this},a(function(){a.support.transition=b(),a.support.transition&&(a.event.special.bsTransitionEnd={bindType:a.support.transition.end,delegateType:a.support.transition.end,handle:function(b){return
  a(b.target).is(this)?b.handleObj.handler.apply(this,arguments):void 
0}})})}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var 
c=a(this),e=c.data("bs.alert");e||c.data("bs.alert",e=new 
d(this)),"string"==typeof b&[b].call(c)})}var 
c='[data-dismiss="alert"]',d=function(b){a(b).on("click",c,this.close)};d.VERSION="3.3.6",d.TRANSITION_DURATION=150,d.prototype.close=function(b){function
 c(){g.detach().trigger("closed.bs.alert").remove()}var 
e=a(this),f=e.attr("data-target");f||(f=e.attr("href"),f=f&(/.*(?=#[^\s]*$)/,""));var
 
g=a(f);b&(),g.length||(g=e.closest(".alert")),g.trigger(b=a.Event("close.bs.alert")),b.isDefaultPrevented()||(g.removeClass("in"),a.support.transition&("fade")?g.one("bsTransitionEnd",c).emulateTransitionEnd(d.TRANSITION_DURATION):c())};var
 
e=a.fn.alert;a.fn.alert=b,a.fn.alert.Constructor=d,a.fn.alert.noConflict=function(){return
 a.fn.alert=e,this},a(document).on("click.bs.alert.data-api",c,d.prot
 otype.close)}(jQuery),+function(a){"use strict";function b(b){return 
this.each(function(){var d=a(this),e=d.data("bs.button"),f="object"==typeof 
b&e||d.data("bs.button",e=new 
c(this,f)),"toggle"==b?e.toggle():b&(b)})}var 
c=function(b,d){this.$element=a(b),this.options=a.extend({},c.DEFAULTS,d),this.isLoading=!1};c.VERSION="3.3.6",c.DEFAULTS={loadingText:"loading..."},c.prototype.setState=function(b){var
 
c="disabled",d=this.$element,e=d.is("input")?"val":"html",f=d.data();b+="Text",null==f.resetText&("resetText",d[e]()),setTimeout(a.proxy(function(){d[e](null==f[b]?this.options[b]:f[b]),"loadingText"==b?(this.isLoading=!0,d.addClass(c).attr(c,c)):this.isLoading&&(this.isLoading=!1,d.removeClass(c).removeAttr(c))},this),0)},c.prototype.toggle=function(){var
 a=!0,b=this.$element.closest('[data-toggle="buttons"]');if(b.length){var 
c=this.$element.find("input");"radio"==c.prop("type")?(c.prop("checked")&&(a=!1),b.find(".active").removeClass("active"),this.$element.ad
 
dClass("active")):"checkbox"==c.prop("type")&&(c.prop("checked")!==this.$element.hasClass("active")&&(a=!1),this.$element.toggleClass("active")),c.prop("checked",this.$element.hasClass("active")),a&("change")}else
 
this.$element.attr("aria-pressed",!this.$element.hasClass("active")),this.$element.toggleClass("active")};var
 
d=a.fn.button;a.fn.button=b,a.fn.button.Constructor=c,a.fn.button.noConflict=function(){return
 
a.fn.button=d,this},a(document).on("click.bs.button.data-api",'[data-toggle^="button"]',function(c){var
 
d=a(c.target);d.hasClass("btn")||(d=d.closest(".btn")),b.call(d,"toggle"),a(c.target).is('input[type="radio"]')||a(c.target).is('input[type="checkbox"]')||c.preventDefault()}).on("focus.bs.button.data-api
 
blur.bs.button.data-api",'[data-toggle^="button"]',function(b){a(b.target).closest(".btn").toggleClass("focus",/^focus(in)?$/.test(b.type))})}(jQuery),+function(a){"use
 strict";function b(b){return this.each(function(){var 
d=a(this),e=d.data("bs.carousel"),f=
 a.extend({},c.DEFAULTS,d.data(),"object"==typeof b&),g="string"==typeof 
b?b:f.slide;e||d.data("bs.carousel",e=new c(this,f)),"number"==typeof 
b?e.to(b):g?e[g]():f.interval&().cycle()})}var 

[04/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/src/main/webapp/file-structure-of-carbondata.html
--
diff --git a/src/main/webapp/file-structure-of-carbondata.html 
b/src/main/webapp/file-structure-of-carbondata.html
new file mode 100644
index 000..6e389a1
--- /dev/null
+++ b/src/main/webapp/file-structure-of-carbondata.html
@@ -0,0 +1,208 @@
+
+
+
+
+
+
+
+
+CarbonData
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Toggle navigation
+
+
+
+
+
+
+
+
+
+
+ 
+
+Home
+
+ Download 
+
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
+   target="_blank">Apache CarbonData 
1.0.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
+   target="_blank">Apache CarbonData 
0.2.0
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
+   target="_blank">Apache CarbonData 
0.1.1
+
+https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
+   target="_blank">Apache CarbonData 
0.1.0
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
+   target="_blank">Release Archive
+
+
+Documentation
+
+Community 
+
+
+https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
+   target="_blank">Contributing to 
CarbonData
+
+https://cwiki.apache.org/confluence/display/CARBONDATA/PPMC+and+Committers+member+list;
+   target="_blank">Project PPMC and 
Committers
+
+https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
+   target="_blank">CarbonData Meetups
+Apache 
CarbonData Security
+https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
+Jira
+
+
+
+http://www.apache.org/; class="apache_link 
hidden-xs dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+http://www.apache.org/; class="hidden-lg 
hidden-md hidden-sm dropdown-toggle"
+   data-toggle="dropdown" role="button" 
aria-haspopup="true" aria-expanded="false">Apache
+
+http://www.apache.org/; 
target="_blank">Apache Homepage
+http://www.apache.org/licenses/; 
target="_blank">License
+http://www.apache.org/foundation/sponsorship.html;
+   target="_blank">Sponsorship
+http://www.apache.org/foundation/thanks.html; 
target="_blank">Thanks
+
+
+
+
+
+
+
+
+
+
+
+http://www.google.com/search;>
+
+
+
+
+
+
+   

[44/54] incubator-carbondata-site git commit: Regex Added for target blank

2017-04-12 Thread chenliang613
Regex Added for target blank


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/21475904
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/21475904
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/21475904

Branch: refs/heads/asf-site
Commit: 214759049f2f0c0cd33a1a14c2886cace890c21a
Parents: e206c92
Author: jatin 
Authored: Thu Apr 6 12:19:49 2017 +0530
Committer: jatin 
Committed: Thu Apr 6 12:19:49 2017 +0530

--
 src/main/scala/MdFilehandler.scala |   4 +-
 src/main/webapp/quick-start-guide.html | 322 
 2 files changed, 3 insertions(+), 323 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/21475904/src/main/scala/MdFilehandler.scala
--
diff --git a/src/main/scala/MdFilehandler.scala 
b/src/main/scala/MdFilehandler.scala
index df423cd..7522ab3 100644
--- a/src/main/scala/MdFilehandler.scala
+++ b/src/main/scala/MdFilehandler.scala
@@ -22,10 +22,12 @@ class MdFilehandler {
 val modifyContentPattern = new Regex("id=\"user-content-")
 val modifyMdPattern = new Regex(".md")
 val modifyImagePattern=new Regex("https://github.com/apache/incubator-carbondata/blob/master/docs;)
-contentAfterReplacingImage
+val contentAfterReplacingFileLink: String = modifyFileLink 
replaceAllIn(contentAfterReplacingImage, "$1://$2$3 target=_blank")
+contentAfterReplacingFileLink
   }
 
   /**

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/21475904/src/main/webapp/quick-start-guide.html
--
diff --git a/src/main/webapp/quick-start-guide.html 
b/src/main/webapp/quick-start-guide.html
deleted file mode 100644
index 97b2240..000
--- a/src/main/webapp/quick-start-guide.html
+++ /dev/null
@@ -1,322 +0,0 @@
-
-
-
-
-
-
-
-
-CarbonData
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Toggle navigation
-
-
-
-
-
-
-
-
-
-
- 
-
-Home
-
- Download 
-
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
-   target="_blank">Apache CarbonData 
1.0.0
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
-   target="_blank">Apache CarbonData 
0.2.0
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
-   target="_blank">Apache CarbonData 
0.1.1
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
-   target="_blank">Apache CarbonData 
0.1.0
-
-https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
-   target="_blank">Release Archive
-
-
-Documentation
-
-Community 
-
-
-https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
-   target="_blank">Contributing to 
CarbonData
-
-https://cwiki.apache.org/confluence/display/CARBONDATA/PPMC+and+Committers+member+list;
-   target="_blank">Project PPMC and 
Committers
-
-https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=66850609;
-   target="_blank">CarbonData Meetups
-Apache CarbonData 
Security
-https://issues.apache.org/jira/browse/CARBONDATA; target="_blank">Apache
-Jira
-CarbonData Videos 

-
-
-   

[08/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/js/mdNavigation.js
--
diff --git a/content/js/mdNavigation.js b/content/js/mdNavigation.js
deleted file mode 100644
index ce34ca5..000
--- a/content/js/mdNavigation.js
+++ /dev/null
@@ -1,51 +0,0 @@
-//Purpose of this JS
-  function loadContentUsingIdAttr(listOfLinks){
-for(var i = 0; i < listOfLinks.length; i++){
- var idAttr = $(listOfLinks[i]).attr("id");
- if(idAttr == undefined){
-var hrefLink = $(listOfLinks[i]).attr("href");
-if(hrefLink.indexOf("http") !== 0){
-$(listOfLinks[i]).click(function(e){
-   $("#viewpage").load($(e.currentTarget).attr("href"));
-   if($(this).is('a:not([href^="#"])')) {
-   }else{
-  $('a').off('click')
-   }
-   return false
-  })
- $("#viewpage a").attr("target", '_blank');
-  }
-  }
-  }
-   }
-
-
-//Purpose of this JS
-setTimeout(function(){ 
- var contentLinks = $("#viewpage a");
-   loadContentUsingIdAttr(contentLinks);
-  if($(this).is('a:not([href^="#"])')) {
-   }else{
-  $('#viewpage>li>a').off('click');
-   }
- }, 500);
-
-//Purpose of this JS
-  $('a[href*="#"]:not([href="#"])').click(function() {
-   if (location.pathname.replace(/^\/ /, '') == this.pathname.replace(/^\/ 
/, '') && location.hostname == this.hostname) {
-var target = $(this.hash);
-target = target.length ? target : $('[name=' + this.hash.slice(1) + 
']');
-if (target.length)
-{ $('html, body').animate({scrollTop: target.offset().top - 52 }, 
500);
-  return false;
-}
- }
-  });
-
-//Documentation page print
-function divPrint() {
-$("#viewpage").addClass("printable");
-  window.print();
-} 
-
-

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/meetup.html
--
diff --git a/content/meetup.html b/content/meetup.html
deleted file mode 100644
index b3d1776..000
--- a/content/meetup.html
+++ /dev/null
@@ -1,285 +0,0 @@
-
-
-
-
-
-
-
-
-CarbonData:Meetup
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-Toggle navigation
-
-
-
-
-
-
-
-
-
-
- 
-Home
-
-Download 

-
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/1.0.0-incubating;
-   target="_blank">Apache CarbonData 
1.0.0
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.2.0-incubating;
-   target="_blank">Apache CarbonData 
0.2.0
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.1-incubating;
-   target="_blank">Apache CarbonData 
0.1.1
-
-https://www.apache.org/dyn/closer.lua/incubator/carbondata/0.1.0-incubating;
-   target="_blank">Apache CarbonData 
0.1.0
-
-https://cwiki.apache.org/confluence/display/CARBONDATA/Releases;
-   target="_blank">Release Archive
-
-
-Documentation
-
-Community 
-
-
-https://github.com/apache/incubator-carbondata/blob/master/docs/How-to-contribute-to-Apache-CarbonData.md;
-   target="_blank">Contributing to 
CarbonData
-
-
-https://cwiki.apache.org/confluence/display/CARBONDATA/Committers;
-   target="_blank">Project Committers
-CarbonData Meetups 

-Apache CarbonData 
Security
-
-
-
-http://www.apache.org/;
-   class="apache_link hidden-xs dropdown-toggle" 
data-toggle="dropdown"
-   role="button" 

[33/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/bootstrap/css/bootstrap-theme.css.map
--
diff --git a/content/bootstrap/css/bootstrap-theme.css.map 
b/content/bootstrap/css/bootstrap-theme.css.map
deleted file mode 100644
index 21e1910..000
--- a/content/bootstrap/css/bootstrap-theme.css.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["bootstrap-theme.css","less/theme.less","less/mixins/vendor-prefixes.less","less/mixins/gradients.less","less/mixins/reset-filter.less"],"names":[],"mappings":"GAIG;ACeH;;EAME,yCAAA;EC2CA,4FAAA;EACQ,oFAAA;CFvDT;ACgBCECsCA,yDAAA;EACQ,iDAAA;CFxCT;ACMC;;ECiCA,yBAAA;EACQ,iBAAA;CFnBT;AC/BD;;EAuBI,kBAAA;CDgBH;ACyBC;;EAEE,uBAAA;CDvBH;AC4BD;EErEI,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;EAuC2C,0BAAA;EAA2B,mBAAA;CDjBvE;ACpBC;;EAEE,0BAAA;EACA,6BAAA;CDsBH;ACnBC;;EAEE,0BAAA;EACA,sBAAA;CDqBH;ACfG;;EAME,0BAAA;EACA,uBAAA;CD6BL;ACbD;EEtEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8DD;AC5DC;;EAEE,0BAAA;EACA,6BAAA;CD8DH;AC3DC;;EAEE,0BAAA;EACA,sBAAA;CD6DH;ACvDG;;EAME,0BAAA;EACA,uBAAA;CDqEL;ACpDD;EEvEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsGD;ACpGC;;EAEE,0BAAA;EACA,6B
 
AAA;CDsGH;ACnGC;;EAEE,0BAAA;EACA,sBAAA;CDqGH;AC/FG;;EAME,0BAAA;EACA,uBAAA;CD6GL;AC3FD;EExEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ID;AC5IC;;EAEE,0BAAA;EACA,6BAAA;CD8IH;AC3IC;;EAEE,0BAAA;EACA,sBAAA;CD6IH;ACvIG;;EAME,0BAAA;EACA,uBAAA;CDqJL;AClID;EEzEI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CDsLD;ACpLC;;EAEE,0BAAA;EACA,6BAAA;CDsLH;ACnLC;;EAEE,0BAAA;EACA,sBAAA;CDqLH;AC/KG;;EAME,0BAAA;EACA,uBAAA;CD6LL;ACzKD;EE1EI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EAEA,uHAAA;ECnBF,oEAAA;EH4CA,4BAAA;EACA,sBAAA;CD8ND;AC5NC;;EAEE,0BAAA;EACA,6BAAA;CD8NH;AC3NC;;EAEE,0BAAA;EACA,sBAAA;CD6NH;ACvNG;;EAME,0BAAA;EACA,uBAAA;CDqOL;AC1MD;;EClCE,mDAAA;EACQ,2CAAA;CFgPT;ACrMD;;EE3FI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF0FF,0BAAA;CD2MD;ACzMD;;;EEhGI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFgGF,0BAAA;CD+MD;ACtMD;EE
 
7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EH+HA,mBAAA;ECjEA,4FAAA;EACQ,oFAAA;CF8QT;ACjND;;EE7GI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,yDAAA;EACQ,iDAAA;CFwRT;AC9MD;;EAEE,+CAAA;CDgND;AC5MD;EEhII,sEAAA;EACA,iEAAA;EACA,2FAAA;EAAA,oEAAA;EACA,4BAAA;EACA,uHAAA;ECnBF,oEAAA;EHkJA,mBAAA;CDkND;ACrND;;EEhII,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;ED2CF,wDAAA;EACQ,gDAAA;CF+ST;AC/ND;;EAYI,0CAAA;CDuNH;AClND;;;EAGE,iBAAA;CDoND;AC/LD;EAfI;;;IAGE,YAAA;IE7JF,yEAAA;IACA,oEAAA;IACA,8FAAA;IAAA,uEAAA;IACA,4BAAA;IACA,uHAAA;GH+WD;CACF;AC3MD;EACE,8CAAA;EC3HA,2FAAA;EACQ,mFAAA;CFyUT;ACnMD;EEtLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+MD;AC1MD;EEvLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CDuND;ACjND;EExLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8KF,sBAAA;CD+ND;ACxND;EEzLI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EF8K
 
F,sBAAA;CDuOD;ACxND;EEjMI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH4ZH;ACrND;EE3MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHmaH;AC3ND;EE5MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH0aH;ACjOD;EE7MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHibH;ACvOD;EE9MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHwbH;AC7OD;EE/MI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH+bH;AChPD;EElLI,8MAAA;EACA,yMAAA;EACA,sMAAA;CHqaH;AC5OD;EACE,mBAAA;EC9KA,mDAAA;EACQ,2CAAA;CF6ZT;AC7OD;;;EAGE,8BAAA;EEnOE,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFiOF,sBAAA;CDmPD;ACxPD;;;EAQI,kBAAA;CDqPH;AC3OD;ECnME,kDAAA;EACQ,0CAAA;CFibT;ACrOD;EE5PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHoeH;AC3OD;EE7PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CH2eH;ACjPD;EE9PI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHkfH;ACvPD;EE/PI,yEAA
 
A;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHyfH;AC7PD;EEhQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHggBH;ACnQD;EEjQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;CHugBH;ACnQD;EExQI,yEAAA;EACA,oEAAA;EACA,8FAAA;EAAA,uEAAA;EACA,4BAAA;EACA,uHAAA;EFsQF,sBAAA;EC3NA,0FAAA;EACQ,kFAAA;CFqeT","file":"bootstrap-theme.css","sourcesContent":["/*!\n
 * Bootstrap v3.3.6 (http://getbootstrap.com)\n * Copyright 2011-2015 Twitter, 
Inc.\n * Licensed under MIT 
(https://github.com/twbs/bootstrap/blob/master/LICENSE)\n 

[53/54] incubator-carbondata-site git commit: updated the regex

2017-04-12 Thread chenliang613
updated the regex


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/3fe908aa
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/3fe908aa
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/3fe908aa

Branch: refs/heads/asf-site
Commit: 3fe908aaf53cd5513d7450e7267ed9b31836d82b
Parents: 87b20f3
Author: PallaviSingh1992 
Authored: Mon Apr 10 14:36:10 2017 +0530
Committer: PallaviSingh1992 
Committed: Mon Apr 10 14:36:10 2017 +0530

--
 src/main/resources/application.conf |  3 +++
 src/main/scala/MdFilehandler.scala  | 21 +---
 .../webapp/ddl-operation-on-carbondata.html |  4 ++--
 src/main/webapp/quick-start-guide.html  |  4 
 4 files changed, 23 insertions(+), 9 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/3fe908aa/src/main/resources/application.conf
--
diff --git a/src/main/resources/application.conf 
b/src/main/resources/application.conf
index fe8f999..b321170 100644
--- a/src/main/resources/application.conf
+++ b/src/main/resources/application.conf
@@ -9,6 +9,9 @@ fileList=["configuration-parameters",
   "troubleshooting",
   "useful-tips-on-carbondata"
   ]
+fileListToRetain=["quick-start-guide",
+  "installation-guide"
+]
 headerPath="src/main/scala/html/header.html"
 footerPath="src/main/scala/html/footer.html"
 outputFileLocation="src/main/webapp/"

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/3fe908aa/src/main/scala/MdFilehandler.scala
--
diff --git a/src/main/scala/MdFilehandler.scala 
b/src/main/scala/MdFilehandler.scala
index d7cb193..2d065f9 100644
--- a/src/main/scala/MdFilehandler.scala
+++ b/src/main/scala/MdFilehandler.scala
@@ -8,6 +8,7 @@ import org.apache.http.util.EntityUtils
 import org.slf4j.LoggerFactory
 
 import scala.util.matching.Regex
+import scala.collection.JavaConverters._
 
 /**
   * Created by pallavi on 4/4/17.
@@ -37,16 +38,22 @@ class MdFilehandler {
 contentAfterReplacingFileLink
   }
 
-  def ConvertReadMeExtension(): String = {
+  def ConvertReadMeExtension(): List[String] = {
+val listOfFiles = 
ConfigFactory.load().getStringList("fileListToRetain").asScala.toList
+logger.info(s"List of files to retain .md extensions : $listOfFiles")
 val location = ConfigFactory.load().getString("outputFileLocation")
 val outputFileExtension = ".html"
 val modifyMdPattern = new Regex("(README)(.html)")
-val fileURLContent = 
scala.io.Source.fromFile("src/main/webapp/installation-guide.html").mkString
-val writer = new PrintWriter(new File(location + "installation-guide" + 
outputFileExtension))
-val fileContent = modifyMdPattern replaceAllIn(fileURLContent, "$1.md")
-writer.write(fileContent)
-writer.close()
-fileContent
+
+listOfFiles.map { file =>
+  val fileURLContent = scala.io.Source.fromFile("src/main/webapp/" + file 
+ outputFileExtension).mkString
+  val writer = new PrintWriter(new File(location + file + 
outputFileExtension))
+  val fileContent = modifyMdPattern replaceAllIn(fileURLContent, "$1.md")
+  writer.write(fileContent)
+  writer.close()
+  fileContent
+}
+
   }
 
   /**

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/3fe908aa/src/main/webapp/ddl-operation-on-carbondata.html
--
diff --git a/src/main/webapp/ddl-operation-on-carbondata.html 
b/src/main/webapp/ddl-operation-on-carbondata.html
index 4de5a4a..24346a0 100644
--- a/src/main/webapp/ddl-operation-on-carbondata.html
+++ b/src/main/webapp/ddl-operation-on-carbondata.html
@@ -449,8 +449,8 @@ of columns is used.
CREATE TABLE [IF NOT EXISTS] [db_name.]table_name
 [(col_name data_type, ...)]
STORED BY 'carbondata'
-   TBLPROPERTIES(?BUCKETNUMBER?=?noOfBuckets?,
-   ?BUCKETCOLUMNS?=??columnname?)
+   TBLPROPERTIES('BUCKETNUMBER'='noOfBuckets',
+   'BUCKETCOLUMNS'='columnname')
 
 
 

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/3fe908aa/src/main/webapp/quick-start-guide.html
--
diff --git a/src/main/webapp/quick-start-guide.html 
b/src/main/webapp/quick-start-guide.html
index 08b896b..0c58684 100644
--- a/src/main/webapp/quick-start-guide.html
+++ b/src/main/webapp/quick-start-guide.html
@@ -195,6 +195,8 @@ EOF
 ./bin/spark-shell --jars carbondata assembly jar path
 
 
+NOTE: Assembly jar will be available after 

[49/54] incubator-carbondata-site git commit: Merge pull request #9 from jatin9896/feature/WithNewTool

2017-04-12 Thread chenliang613
Merge pull request #9 from jatin9896/feature/WithNewTool

Added links to application.conf

Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/b3571086
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/b3571086
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/b3571086

Branch: refs/heads/asf-site
Commit: b3571086a94ab5d02e8cbe2927d94c47e428285c
Parents: 6e0e899 641e61b
Author: Pallavi Singh 
Authored: Thu Apr 6 17:53:53 2017 +0530
Committer: GitHub 
Committed: Thu Apr 6 17:53:53 2017 +0530

--
 src/main/resources/application.conf   |  7 ++-
 src/main/scala/FileModification.scala | 17 ++---
 src/main/scala/MdFilehandler.scala| 17 ++---
 3 files changed, 26 insertions(+), 15 deletions(-)
--




[16/54] incubator-carbondata-site git commit: Wip for Automating Documentation for Website

2017-04-12 Thread chenliang613
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Light.woff
--
diff --git a/content/fonts/OpenSans-Light.woff 
b/content/fonts/OpenSans-Light.woff
deleted file mode 100644
index 937323d..000
Binary files a/content/fonts/OpenSans-Light.woff and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Light.woff2
--
diff --git a/content/fonts/OpenSans-Light.woff2 
b/content/fonts/OpenSans-Light.woff2
deleted file mode 100644
index d0b43e0..000
Binary files a/content/fonts/OpenSans-Light.woff2 and /dev/null differ

http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/4f8753c1/content/fonts/OpenSans-Regular.eot
--
diff --git a/content/fonts/OpenSans-Regular.eot 
b/content/fonts/OpenSans-Regular.eot
deleted file mode 100644
index 7ac1753..000
Binary files a/content/fonts/OpenSans-Regular.eot and /dev/null differ



[39/54] incubator-carbondata-site git commit: Merge pull request #3 from shivangi1015/feature/WithNewTool

2017-04-12 Thread chenliang613
Merge pull request #3 from shivangi1015/feature/WithNewTool

Documentation for the backend tool added.

Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/commit/e206c923
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/tree/e206c923
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/diff/e206c923

Branch: refs/heads/asf-site
Commit: e206c923e64de0f4ad23cfdff0e3e9d4ca6a6916
Parents: 4cfdd9e f2f4f96
Author: Pallavi Singh 
Authored: Wed Apr 5 17:21:07 2017 +0530
Committer: GitHub 
Committed: Wed Apr 5 17:21:07 2017 +0530

--
 .idea/.name |   1 +
 .idea/compiler.xml  |  32 ++
 .idea/copyright/profiles_settings.xml   |   3 +
 .idea/encodings.xml |   7 +
 .../Maven__com_typesafe_config_1_3_1.xml|  13 +
 .../Maven__commons_codec_commons_codec_1_9.xml  |  13 +
 ...ven__commons_logging_commons_logging_1_2.xml |  13 +
 ...g_apache_httpcomponents_httpclient_4_5_3.xml |  13 +
 ...org_apache_httpcomponents_httpcore_4_4_6.xml |  13 +
 ...ven__org_scala_lang_scala_library_2_12_1.xml |  21 +
 .../Maven__org_slf4j_slf4j_api_1_7_25.xml   |  13 +
 .../Maven__org_slf4j_slf4j_simple_1_7_25.xml|  13 +
 .idea/misc.xml  |  39 ++
 .idea/modules.xml   |   8 +
 .idea/scala_compiler.xml|   6 +
 .idea/vcs.xml   |   6 +
 .idea/workspace.xml | 388 +++
 site.iml|  22 ++
 src/main/scala/FileModification.scala   |  14 +
 src/main/scala/FileOperationMain.scala  |   1 +
 src/main/scala/MdFilehandler.scala  |  12 +
 21 files changed, 651 insertions(+)
--




[2/2] incubator-carbondata git commit: [CARBONDATA-816] Added Example for Hive Integration This closes #751

2017-04-12 Thread chenliang613
[CARBONDATA-816] Added Example for Hive Integration This closes #751


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/eda44753
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/eda44753
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/eda44753

Branch: refs/heads/hive
Commit: eda4475308d80de72192e3fec707f386e945fda0
Parents: 3397dc3 f315a25
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 14:18:35 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 14:18:35 2017 +0530

--
 integration/hive/pom.xml|  69 ++-
 .../hive/server/HiveEmbeddedServer2.java| 159 
 integration/hive/src/main/resources/data.csv|   3 +
 .../hive/src/main/resources/log4j.properties|  11 ++
 .../carbondata/hiveexample/HiveExample.scala| 182 +++
 5 files changed, 422 insertions(+), 2 deletions(-)
--




[1/2] incubator-carbondata git commit: fix some spelling mistakes in SegmentProperties.java

2017-04-11 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 58dc3aa64 -> aea9ed608


fix some spelling mistakes in SegmentProperties.java

fix some spelling mistakes in SegmentProperties.java


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/81ccec2a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/81ccec2a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/81ccec2a

Branch: refs/heads/master
Commit: 81ccec2ab75c7504d7b5689c7098cf925acb54b9
Parents: 58dc3aa
Author: CGF <cgf1...@foxmail.com>
Authored: Tue Apr 11 19:42:30 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 00:42:56 2017 +0530

--
 .../core/datastore/block/SegmentProperties.java | 24 ++--
 1 file changed, 12 insertions(+), 12 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/81ccec2a/core/src/main/java/org/apache/carbondata/core/datastore/block/SegmentProperties.java
--
diff --git 
a/core/src/main/java/org/apache/carbondata/core/datastore/block/SegmentProperties.java
 
b/core/src/main/java/org/apache/carbondata/core/datastore/block/SegmentProperties.java
index 6c7d014..3bc208d 100644
--- 
a/core/src/main/java/org/apache/carbondata/core/datastore/block/SegmentProperties.java
+++ 
b/core/src/main/java/org/apache/carbondata/core/datastore/block/SegmentProperties.java
@@ -372,7 +372,7 @@ public class SegmentProperties {
   isComplexDimensionStarted = true;
   int previouseOrdinal = dimensonOrdinal;
   dimensonOrdinal =
-  readAllComplexTypeChildrens(dimensonOrdinal, 
columnSchema.getNumberOfChild(),
+  readAllComplexTypeChildren(dimensonOrdinal, 
columnSchema.getNumberOfChild(),
   columnsInTable, carbonDimension, complexTypeOrdinal);
   int numberOfChildrenDimensionAdded = dimensonOrdinal - 
previouseOrdinal;
   for (int i = 0; i < numberOfChildrenDimensionAdded; i++) {
@@ -418,25 +418,25 @@ public class SegmentProperties {
* @param parentDimension
* @return
*/
-  private int readAllComplexTypeChildrens(int dimensionOrdinal, int childCount,
+  private int readAllComplexTypeChildren(int dimensionOrdinal, int childCount,
   List listOfColumns, CarbonDimension parentDimension,
-  int complexDimensionOrdianl) {
+  int complexDimensionOrdinal) {
 for (int i = 0; i < childCount; i++) {
   ColumnSchema columnSchema = listOfColumns.get(dimensionOrdinal);
   if (columnSchema.isDimensionColumn()) {
 if (columnSchema.getNumberOfChild() > 0) {
   CarbonDimension complexDimension =
   new CarbonDimension(columnSchema, dimensionOrdinal++, -1, -1,
-  complexDimensionOrdianl++);
+  complexDimensionOrdinal++);
   
complexDimension.initializeChildDimensionsList(columnSchema.getNumberOfChild());
   parentDimension.getListOfChildDimensions().add(complexDimension);
   dimensionOrdinal =
-  readAllComplexTypeChildrens(dimensionOrdinal, 
columnSchema.getNumberOfChild(),
-  listOfColumns, complexDimension, complexDimensionOrdianl);
+  readAllComplexTypeChildren(dimensionOrdinal, 
columnSchema.getNumberOfChild(),
+  listOfColumns, complexDimension, complexDimensionOrdinal);
 } else {
   parentDimension.getListOfChildDimensions().add(
   new CarbonDimension(columnSchema, dimensionOrdinal++, -1, -1,
-  complexDimensionOrdianl++));
+  complexDimensionOrdinal++));
 }
   }
 }
@@ -447,18 +447,18 @@ public class SegmentProperties {
* Read all primitive/complex children and set it as list of child carbon 
dimension to parent
* dimension
*/
-  private int assignComplexOrdinal(CarbonDimension parentDimension, int 
complexDimensionOrdianl) {
+  private int assignComplexOrdinal(CarbonDimension parentDimension, int 
complexDimensionOrdinal) {
 for (int i = 0; i < parentDimension.getNumberOfChild(); i++) {
   CarbonDimension dimension = 
parentDimension.getListOfChildDimensions().get(i);
   if (dimension.getNumberOfChild() > 0) {
-dimension.setComplexTypeOridnal(++complexDimensionOrdianl);
-complexDimensionOrdianl = assignComplexOrdinal(dimension, 
complexDimensionOrdianl);
+dimension.setComplexTypeOridnal(++complexDimensionOrdinal);
+complexDimensionOrdinal = assignComplexOrdinal(dimension, 
complexDimensionOrdinal);
   } else {
 parentDimension.getListOfChildDimensions().get(i)
-.setComplexTypeOri

[2/2] incubator-carbondata git commit: [CARBONDATA-901] Fix some spelling mistakes This closes #782

2017-04-11 Thread chenliang613
[CARBONDATA-901] Fix some spelling mistakes This closes #782


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/aea9ed60
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/aea9ed60
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/aea9ed60

Branch: refs/heads/master
Commit: aea9ed608f75454267561df30324cd4b850fd32b
Parents: 58dc3aa 81ccec2
Author: chenliang613 <chenliang...@huawei.com>
Authored: Wed Apr 12 00:44:28 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Wed Apr 12 00:44:28 2017 +0530

--
 .../core/datastore/block/SegmentProperties.java | 24 ++--
 1 file changed, 12 insertions(+), 12 deletions(-)
--




[1/2] incubator-carbondata git commit: FIxed testcase in hadoop 2.7.2

2017-04-10 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 065381995 -> d51387b81


FIxed testcase in hadoop 2.7.2


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/bb95dc64
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/bb95dc64
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/bb95dc64

Branch: refs/heads/master
Commit: bb95dc64344fe49169a4c2d6ec2011ea785b1580
Parents: 0653819
Author: ravipesala 
Authored: Mon Apr 10 18:55:52 2017 +0530
Committer: ravipesala 
Committed: Mon Apr 10 18:55:52 2017 +0530

--
 .../org/apache/carbondata/hadoop/ft/CarbonInputMapperTest.java| 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/bb95dc64/hadoop/src/test/java/org/apache/carbondata/hadoop/ft/CarbonInputMapperTest.java
--
diff --git 
a/hadoop/src/test/java/org/apache/carbondata/hadoop/ft/CarbonInputMapperTest.java
 
b/hadoop/src/test/java/org/apache/carbondata/hadoop/ft/CarbonInputMapperTest.java
index 0d751fc..6e6f2bd 100644
--- 
a/hadoop/src/test/java/org/apache/carbondata/hadoop/ft/CarbonInputMapperTest.java
+++ 
b/hadoop/src/test/java/org/apache/carbondata/hadoop/ft/CarbonInputMapperTest.java
@@ -135,7 +135,7 @@ public class CarbonInputMapperTest extends TestCase {
 return 0;
   }
 
-  public static class Map extends Mapper {
+  public static class Map extends Mapper {
 
 private BufferedWriter fileWriter;
 
@@ -161,6 +161,7 @@ public class CarbonInputMapperTest extends TestCase {
 @Override public void cleanup(Context context) throws IOException, 
InterruptedException {
   super.cleanup(context);
   fileWriter.close();
+  context.write(new Text(), new Text());
 }
   }
 



[1/2] incubator-carbondata git commit: Added assembly jar information in Quick Start guide

2017-04-09 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 75a1db4ba -> 490901d9d


Added assembly jar information in Quick Start guide


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/c3af07ef
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/c3af07ef
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/c3af07ef

Branch: refs/heads/master
Commit: c3af07efc2484d07b12d27d2d2b7adfa002c6f47
Parents: 75a1db4
Author: Sanoj MG 
Authored: Sun Apr 9 12:30:41 2017 +0400
Committer: Sanoj MG 
Committed: Sun Apr 9 12:30:41 2017 +0400

--
 docs/quick-start-guide.md | 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/c3af07ef/docs/quick-start-guide.md
--
diff --git a/docs/quick-start-guide.md b/docs/quick-start-guide.md
index 5eec075..a3911fa 100644
--- a/docs/quick-start-guide.md
+++ b/docs/quick-start-guide.md
@@ -45,6 +45,7 @@ Start Spark shell by running the following command in the 
Spark directory:
 ```
 ./bin/spark-shell --jars 
 ```
+**NOTE**: Assembly jar will be available after [building 
CarbonData](https://github.com/apache/incubator-carbondata/blob/master/build/README.md)
 and can be copied from `./assembly/target/scala-2.1x/carbondata_xxx.jar`
 
 In this shell, SparkSession is readily available as `spark` and Spark context 
is readily available as `sc`.
 
@@ -96,6 +97,7 @@ Start Spark shell by running the following command in the 
Spark directory:
 ```
 ./bin/spark-shell --jars 
 ```
+**NOTE**: Assembly jar will be available after [building 
CarbonData](https://github.com/apache/incubator-carbondata/blob/master/build/README.md)
 and can be copied from `./assembly/target/scala-2.1x/carbondata_xxx.jar`
 
 **NOTE**: In this shell, SparkContext is readily available as `sc`.
 



[2/2] incubator-carbondata git commit: Refactor integration/presto by optimizing some name definition This closes #766

2017-04-08 Thread chenliang613
Refactor integration/presto by optimizing some name definition This closes #766


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/ca0ecbd5
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/ca0ecbd5
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/ca0ecbd5

Branch: refs/heads/presto
Commit: ca0ecbd50d7af13e3b4ee2881736eca14c0bd578
Parents: 3bdda74 d3bbc70
Author: chenliang613 <chenliang...@huawei.com>
Authored: Sat Apr 8 15:11:47 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Sat Apr 8 15:11:47 2017 +0530

--
 .../presto/CarbondataConnectorFactory.java  | 12 --
 .../carbondata/presto/CarbondataMetadata.java   | 34 -
 .../presto/CarbondataRecordSetProvider.java | 12 +++---
 .../presto/impl/CarbonTableReader.java  | 40 +---
 4 files changed, 37 insertions(+), 61 deletions(-)
--




[2/2] incubator-carbondata git commit: [CARBONDATA-885] Fixed inconsistent usage in queries in ddl operations This closes #758

2017-04-07 Thread chenliang613
[CARBONDATA-885] Fixed inconsistent usage in queries in ddl operations This 
closes #758


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/33544d32
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/33544d32
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/33544d32

Branch: refs/heads/master
Commit: 33544d32e2e9e35f739b59b819b895681bf548cb
Parents: 914d61e 98e6bcb
Author: chenliang613 <chenliang...@huawei.com>
Authored: Fri Apr 7 18:41:02 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Fri Apr 7 18:41:02 2017 +0530

--
 docs/ddl-operation-on-carbondata.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--




[2/2] incubator-carbondata git commit: [CARBONDATA-856] Alter Table - TABLE RENAME feature documentation This closes #756

2017-04-07 Thread chenliang613
[CARBONDATA-856] Alter Table - TABLE RENAME feature documentation This closes 
#756


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/914d61e3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/914d61e3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/914d61e3

Branch: refs/heads/master
Commit: 914d61e32f6bcb3b61e9da1957c95bfcee142fb4
Parents: cfefb74 b2950b4
Author: chenliang613 <chenliang...@huawei.com>
Authored: Fri Apr 7 15:06:05 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Fri Apr 7 15:06:05 2017 +0530

--
 docs/ddl-operation-on-carbondata.md | 29 +
 1 file changed, 29 insertions(+)
--




[1/2] incubator-carbondata git commit: [CARBONDATA-856] Alter Table - TABLE RENAME feature documentation

2017-04-07 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master cfefb7418 -> 914d61e32


[CARBONDATA-856] Alter Table - TABLE RENAME feature documentation

The documentation for Table rename as part of the alter table feature.

Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/b2950b44
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/b2950b44
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/b2950b44

Branch: refs/heads/master
Commit: b2950b44482bfdf51e3ae4879f081a3bb9f93e28
Parents: cfefb74
Author: srigopalmohanty <knowledge.gatherer@gmail.com>
Authored: Fri Apr 7 13:10:36 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Fri Apr 7 15:02:50 2017 +0530

--
 docs/ddl-operation-on-carbondata.md | 29 +
 1 file changed, 29 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/b2950b44/docs/ddl-operation-on-carbondata.md
--
diff --git a/docs/ddl-operation-on-carbondata.md 
b/docs/ddl-operation-on-carbondata.md
index 215cff8..392bb39 100644
--- a/docs/ddl-operation-on-carbondata.md
+++ b/docs/ddl-operation-on-carbondata.md
@@ -28,6 +28,7 @@ The following DDL operations are supported in CarbonData :
 * [DROP TABLE](#drop-table)
 * [COMPACTION](#compaction)
 * [BUCKETING](#bucketing)
+* [TABLE RENAME](#table-rename)
 
 ## CREATE TABLE
   This command can be used to create a CarbonData table by specifying the list 
of fields along with the table properties.
@@ -229,3 +230,31 @@ of columns is used.
   'BUCKETCOLUMNS'='productName')
  ```
 
+## TABLE RENAME
+  This command is used to rename the existing table.
+
+### Syntax
+```
+   ALTER TABLE [db_name.]table_name RENAME TO new_table_name;
+```
+
+### Parameter Description
+
+| Parameter | Description | 
+|---|---|
+| db_name | Name of the database. If this parameter is left unspecified, the 
current database is selected. | 
+| table_name | Name of the existing table.|
+|new_table_name | New table name for the existing table. | 
+
+### Usage Guidelines
+Following conditions must be met for successful rename operation:
+* Queries running in parallel which requires the formation of path using the 
table name for reading carbon store files might fail during this operation.
+* Secondary index table rename is not permitted.
+
+### Example:
+```
+ALTER TABLE carbon RENAME TO carbondata;
+
+   ALTER TABLE test_db.carbon RENAME TO test_db.carbondata;
+```
+



[2/2] incubator-carbondata git commit: [CARBONDATA-862] Removed Use Kettle From Documentation This closes #731

2017-04-06 Thread chenliang613
[CARBONDATA-862] Removed Use Kettle From Documentation This closes #731


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/bbade2aa
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/bbade2aa
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/bbade2aa

Branch: refs/heads/master
Commit: bbade2aa855ada21777139c22088788bc8b397d1
Parents: 1624c5f 97d2789
Author: chenliang613 <chenliang...@huawei.com>
Authored: Thu Apr 6 16:51:52 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 16:51:52 2017 +0530

--
 docs/dml-operation-on-carbondata.md | 9 -
 1 file changed, 9 deletions(-)
--




[2/2] incubator-carbondata git commit: changes in release-guide.md file This closes #748

2017-04-06 Thread chenliang613
changes in release-guide.md file This closes #748


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/413cb93a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/413cb93a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/413cb93a

Branch: refs/heads/master
Commit: 413cb93a10ecb6940a9226d22e8944516d5d6917
Parents: 631be31 60ac23d
Author: chenliang613 <chenliang...@huawei.com>
Authored: Thu Apr 6 16:39:15 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 16:39:15 2017 +0530

--
 docs/release-guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--




[1/2] incubator-carbondata git commit: changes in release-guide.md

2017-04-06 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 631be3147 -> 413cb93a1


changes in release-guide.md


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/60ac23d3
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/60ac23d3
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/60ac23d3

Branch: refs/heads/master
Commit: 60ac23d32d015a5e8ba01bf3e6a4ad7427ae16e6
Parents: 631be31
Author: swati <swati@knoldus.com>
Authored: Thu Apr 6 13:26:23 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 16:38:39 2017 +0530

--
 docs/release-guide.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/60ac23d3/docs/release-guide.md
--
diff --git a/docs/release-guide.md b/docs/release-guide.md
index 50a0e8a..6d55192 100644
--- a/docs/release-guide.md
+++ b/docs/release-guide.md
@@ -67,7 +67,7 @@ Determine your Apache GPG key and key ID, as follows:
 gpg --list-keys
 ```
 
-This will list your GPG keys. One of these should reflect your Apache account, 
for exemple:
+This will list your GPG keys. One of these should reflect your Apache account, 
for example:
 
 ```
 pub   2048R/845E6689 2016-02-23
@@ -401,7 +401,7 @@ _Checklist to proceed to the final step:_
 
 Any issue identified during the community review and vote should be fixed in 
this step.
 
-To fully cacel a vote:
+To fully cancel a vote:
 
 * Cancel the current release and verify the version is back to the correct 
SNAPSHOT:
 



[1/2] incubator-carbondata git commit: changes in troubleshooting.md

2017-04-06 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 1b20c2dfd -> 631be3147


changes in troubleshooting.md


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/951c5074
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/951c5074
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/951c5074

Branch: refs/heads/master
Commit: 951c50741947b300a2631f35e1511cfa7e1e8cf8
Parents: 1b20c2d
Author: vandana <vandana.yadav...@gmail.com>
Authored: Thu Apr 6 13:12:05 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 16:35:55 2017 +0530

--
 docs/troubleshooting.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/951c5074/docs/troubleshooting.md
--
diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index 9181d83..c9d2095 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -226,7 +226,7 @@ who are building, deploying, and using CarbonData.
 
   **Procedure**
 
-  Worker must wait for the query execution to complete and the table to 
release the lock for another query execution to succeed..
+  Worker must wait for the query execution to complete and the table to 
release the lock for another query execution to succeed.
 
 ## Failed to create a table with a single numeric column.
 
@@ -240,7 +240,7 @@ who are building, deploying, and using CarbonData.
 
   **Possible Cause**
 
-  Behavior not supported.
+  Behaviour not supported.
 
   **Procedure**
 



[1/2] incubator-carbondata git commit: revert pom

2017-04-06 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/hive 8e753a85b -> 3397dc3d9


revert pom


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/8b4adfdc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/8b4adfdc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/8b4adfdc

Branch: refs/heads/hive
Commit: 8b4adfdc3306c6fbc2d77b546cdf3e7587fd0268
Parents: 8e753a8
Author: QiangCai 
Authored: Thu Apr 6 14:30:11 2017 +0530
Committer: QiangCai 
Committed: Thu Apr 6 14:30:11 2017 +0530

--
 pom.xml | 19 +--
 1 file changed, 1 insertion(+), 18 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/8b4adfdc/pom.xml
--
diff --git a/pom.xml b/pom.xml
index 6005c0f..11cbb61 100644
--- a/pom.xml
+++ b/pom.xml
@@ -147,12 +147,6 @@
   
   
 org.apache.hadoop
-hadoop-yarn-api
-${hadoop.version}
-${hadoop.deps.scope}
-  
-  
-org.apache.hadoop
 hadoop-mapreduce-client-core
 ${hadoop.version}
 ${hadoop.deps.scope}
@@ -311,7 +305,6 @@
 2.10
 2.10.4
 true
-1.2.1
 1.1.4
   
   
@@ -319,7 +312,6 @@
 integration/spark
 examples/spark
 integration/spark2
-integration/hive
 examples/spark2
 examples/flink
   
@@ -387,15 +379,6 @@
   
 
 
-  hive-1.2
-  
-1.2.1
-  
-  
-integration/hive
-  
-
-
   findbugs
   
 
@@ -461,4 +444,4 @@
 
   
 
-
+
\ No newline at end of file



[2/2] incubator-carbondata git commit: revert pom.xml for hive branch

2017-04-06 Thread chenliang613
revert pom.xml for hive branch


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/3397dc3d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/3397dc3d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/3397dc3d

Branch: refs/heads/hive
Commit: 3397dc3d9589cf8c76df67a909cc3d6ec4cc281e
Parents: 8e753a8 8b4adfd
Author: chenliang613 <chenliang...@huawei.com>
Authored: Thu Apr 6 15:11:31 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 15:11:31 2017 +0530

--
 pom.xml | 19 +--
 1 file changed, 1 insertion(+), 18 deletions(-)
--




[2/2] incubator-carbondata git commit: [CARBONDATA-866] remove kettle from configuration parameter file This closes #743

2017-04-06 Thread chenliang613
[CARBONDATA-866] remove kettle from configuration parameter file This closes 
#743


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/69edde1d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/69edde1d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/69edde1d

Branch: refs/heads/master
Commit: 69edde1d0ffedbb62bce42134ae240478223ea6e
Parents: 81cebdb 0ef41ae
Author: chenliang613 <chenliang...@huawei.com>
Authored: Thu Apr 6 12:29:11 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 12:29:11 2017 +0530

--
 docs/configuration-parameters.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
--




[1/2] incubator-carbondata git commit: remove kettle from configuration file

2017-04-06 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 81cebdb45 -> 69edde1d0


remove kettle from configuration file


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/0ef41ae2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/0ef41ae2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/0ef41ae2

Branch: refs/heads/master
Commit: 0ef41ae2bc21f2b19f4b7d8efa34d32e4aca6b99
Parents: 81cebdb
Author: Vinod Rohilla <vi...@knoldus.in>
Authored: Thu Apr 6 11:47:11 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 12:28:32 2017 +0530

--
 docs/configuration-parameters.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/0ef41ae2/docs/configuration-parameters.md
--
diff --git a/docs/configuration-parameters.md b/docs/configuration-parameters.md
index 774734a..4f454e6 100644
--- a/docs/configuration-parameters.md
+++ b/docs/configuration-parameters.md
@@ -36,8 +36,7 @@ This section provides the details of all the configurations 
required for the Car
 | carbon.storelocation | /user/hive/warehouse/carbon.store | Location where 
CarbonData will create the store, and write the data in its own format. NOTE: 
Store location should be in HDFS. |
 | carbon.ddl.base.hdfs.url | hdfs://hacluster/opt/data | This property is used 
to configure the HDFS relative path, the path configured in 
carbon.ddl.base.hdfs.url will be appended to the HDFS path configured in 
fs.defaultFS. If this path is configured, then user need not pass the complete 
path while dataload. For example: If absolute path of the csv file is 
hdfs://10.18.101.155:54310/data/cnbc/2016/xyz.csv, the path 
"hdfs://10.18.101.155:54310" will come from property fs.defaultFS and user can 
configure the /data/cnbc/ as carbon.ddl.base.hdfs.url. Now while dataload user 
can specify the csv path as /2016/xyz.csv. |
 | carbon.badRecords.location | /opt/Carbon/Spark/badrecords | Path where the 
bad records are stored. |
-| carbon.kettle.home | $SPARK_HOME/carbonlib/carbonplugins | Configuration for 
loading the data with kettle. |
-| carbon.data.file.version | 2 | If this parameter value is set to 1, then 
CarbonData will support the data load which is in old format(0.x version). If 
the value is set to 2(1.x onwards version), then CarbonData will support the 
data load of new format only.|
+| carbon.data.file.version | 2 | If this parameter value is set to 1, then 
CarbonData will support the data load which is in old format(0.x version). If 
the value is set to 2(1.x onwards version), then CarbonData will support the 
data load of new format only.|
 
 ##  Performance Configuration
 This section provides the details of all the configurations required for 
CarbonData Performance Optimization.



[2/2] incubator-carbondata git commit: [CARBONDATA-865] Remove configurations for Kettle from installation-guide.md This closes #734

2017-04-06 Thread chenliang613
[CARBONDATA-865] Remove configurations for Kettle from installation-guide.md 
This closes #734


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/81cebdb4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/81cebdb4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/81cebdb4

Branch: refs/heads/master
Commit: 81cebdb459884abd7fbb8b057df06f1327dfbb6c
Parents: 65e6791 1fc3851
Author: chenliang613 <chenliang...@huawei.com>
Authored: Thu Apr 6 12:16:22 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 12:16:22 2017 +0530

--
 docs/installation-guide.md | 30 +-
 1 file changed, 9 insertions(+), 21 deletions(-)
--




[1/2] incubator-carbondata git commit: Remove configurations for Kettle from installation-guide.md

2017-04-06 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 65e679187 -> 81cebdb45


Remove configurations for Kettle from installation-guide.md


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/1fc38510
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/1fc38510
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/1fc38510

Branch: refs/heads/master
Commit: 1fc38510c8ec78405c8040ea043e262637ca9ec1
Parents: 65e6791
Author: Manoj <ma...@knoldus.com>
Authored: Wed Apr 5 17:42:50 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 12:15:12 2017 +0530

--
 docs/installation-guide.md | 30 +-
 1 file changed, 9 insertions(+), 21 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/1fc38510/docs/installation-guide.md
--
diff --git a/docs/installation-guide.md b/docs/installation-guide.md
index c5bf6df..2fb6766 100644
--- a/docs/installation-guide.md
+++ b/docs/installation-guide.md
@@ -50,29 +50,23 @@ followed by :
 
 4. Copy the `./conf/carbon.properties.template` file from CarbonData 
repository to `$SPARK_HOME/conf/` folder and rename the file to 
`carbon.properties`.
 
-5. Copy the `./processing/carbonplugins` folder from CarbonData repository to 
`$SPARK_HOME/carbonlib/` folder.
-
-**NOTE**: carbonplugins will contain .kettle folder.
-
-6. Repeat Step 2 to Step 5 in all the nodes of the cluster.
+5. Repeat Step 2 to Step 5 in all the nodes of the cluster.
 
-7. In Spark node[master], configure the properties mentioned in the following 
table in `$SPARK_HOME/conf/spark-defaults.conf` file.
+6. In Spark node[master], configure the properties mentioned in the following 
table in `$SPARK_HOME/conf/spark-defaults.conf` file.
 
| Property | Value | Description |

|-|-|-|
-   | carbon.kettle.home | `$SPARK_HOME/carbonlib/carbonplugins` | Path that 
will be used by CarbonData internally to create graph for loading the data |
| spark.driver.extraJavaOptions | 
`-Dcarbon.properties.filepath=$SPARK_HOME/conf/carbon.properties` | A string of 
extra JVM options to pass to the driver. For instance, GC settings or other 
logging. |
| spark.executor.extraJavaOptions | 
`-Dcarbon.properties.filepath=$SPARK_HOME/conf/carbon.properties` | A string of 
extra JVM options to pass to executors. For instance, GC settings or other 
logging. **NOTE**: You can enter multiple values separated by space. |
 
-8. Add the following properties in `$SPARK_HOME/conf/carbon.properties` file:
+7. Add the following properties in `$SPARK_HOME/conf/carbon.properties` file:
 
| Property | Required | Description 
   | Example
 | Remark  |

|--|--||-|-|
| carbon.storelocation | NO   | Location where data CarbonData will 
create the store and write the data in its own format. | 
hdfs://HOSTNAME:PORT/Opt/CarbonStore  | Propose to set HDFS directory |
-   | carbon.kettle.home   | YES  | Path that will be used by CarbonData 
internally to create graph for loading the data. | 
`$SPARK_HOME/carbonlib/carbonplugins` | |
 
 
-9. Verify the installation. For example:
+8. Verify the installation. For example:
 
```
./spark-shell --master spark://HOSTNAME:PORT --total-executor-cores 2
@@ -100,13 +94,9 @@ To get started with CarbonData : [Quick 
Start](quick-start-guide.md), [DDL Opera
 
 **NOTE**: Create the carbonlib folder if it does not exists inside 
`$SPARK_HOME` path.
 
-2. Copy the `./processing/carbonplugins` folder from CarbonData repository to 
`$SPARK_HOME/carbonlib/` folder.
-
-**NOTE**: carbonplugins will contain .kettle folder.
+2. Copy the `./conf/carbon.properties.template` file from CarbonData 
repository to `$SPARK_HOME/conf/` folder and rename the file to 
`carbon.properties`.
 
-3. Copy the `./conf/carbon.properties.template` file from CarbonData 
repository to `$SPARK_HOME/conf/` folder and rename the file to 
`carbon.properties`.
-
-4. Create `tar,gz` file of carbonlib folder and move it inside the carbonlib 
folder.
+3. Create `tar,gz` file of carbonlib folder and move it inside the ca

[1/2] incubator-carbondata git commit: add hive integration for carbon

2017-04-05 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/hive 4d0d2d600 -> 8e753a85b


add hive integration for carbon

add hive integration to assembly

alter CarbonInputFormat to implement mapred.InputFormat

add a hive serde for carbon

add hive integration to assembly

fix error in getQueryModel

add debug info

add debug info

add debug info

add debug info

fix error in CarbonRecordReader

use ArrayWritable for CarbonRecordReader

fix error in initializing CarbonRecordReader

fix error in initializing CarbonRecordReader

fix error in initializing CarbonRecordReader

fix error in initializing CarbonRecordReader

修改InputFormat的返回值

把需要查的列设置到carbon里去

fix nullpoint exception

add catalyst depedency

add catalyst depedency

add catalyst depedency

fix error in intializing carbon error

add a new hive carbon recordreader

添加把object序列化成ArrayWritable的代码

short/int等数据类型在Carbon当中实际上是Long类型

use right inspector

use right inspector

fix long can't cast int error

fix decimal cast error

column size is not equal to column type

column size is not equal to column type

column size is not equal to column type

column size is not equal to column type

fix ObjInspector error

fix ObjInspector error

fix ObjInspector error

add a new hive input split

should not combine path

add support for timestamp

clean codes

remove unused codes

support Date and TimeStamp type

add basic hive integration

alter code style

alter code style

alter code style

alter code style

change create table statement

alter CarbonSerde test case

alter CarbonSerde test case

add carbondata-hive to test classpath

add carbondata-hive to test classpath

use hive compatible schema

exclude kryo

exclude kryo

make a new profile for hive 1.2.1

remove carbon-hive from parent and assembly pom

use groupId to apache hive in pom.xml

remote hadoop-yarn-api, but HadoopFileExample will throw exception when 
debugging in IDEA

change profile name

add quick start guide for basic hive integration module

add private for properties

add some params for hive to read subdirectories recursively


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/96aeee85
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/96aeee85
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/96aeee85

Branch: refs/heads/hive
Commit: 96aeee85ddd1c5cc8a792d8cd749cfe7ff72d6b8
Parents: 4d0d2d6
Author: cenyuhai <cenyu...@didichuxing.com>
Authored: Sun Mar 12 23:17:40 2017 +0800
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 10:48:48 2017 +0530

--
 dev/java-code-format-template.xml   |   2 +-
 .../carbondata/hadoop/CarbonInputFormat.java|   2 +-
 .../carbondata/hadoop/CarbonRecordReader.java   |   8 +-
 integration/hive/hive-guide.md  | 106 +++
 integration/hive/pom.xml| 114 
 .../carbondata/hive/CarbonArrayInspector.java   | 192 
 .../carbondata/hive/CarbonHiveInputSplit.java   | 290 +++
 .../carbondata/hive/CarbonHiveRecordReader.java | 249 
 .../apache/carbondata/hive/CarbonHiveSerDe.java | 231 +++
 .../carbondata/hive/CarbonObjectInspector.java  | 221 ++
 .../hive/CarbonStorageFormatDescriptor.java |  47 +++
 .../hive/MapredCarbonInputFormat.java   |  99 +++
 .../hive/MapredCarbonOutputFormat.java  |  49 
 ...he.hadoop.hive.ql.io.StorageFormatDescriptor |   1 +
 .../apache/carbondata/hive/TestCarbonSerde.java | 133 +
 pom.xml |  17 ++
 16 files changed, 1755 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/96aeee85/dev/java-code-format-template.xml
--
diff --git a/dev/java-code-format-template.xml 
b/dev/java-code-format-template.xml
index d117313..b39ef1e 100644
--- a/dev/java-code-format-template.xml
+++ b/dev/java-code-format-template.xml
@@ -34,8 +34,8 @@
   
 
   
-  
   
+  
   
   
   

http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/96aeee85/hadoop/src/main/java/org/apache/carbondata/hadoop/CarbonInputFormat.java
--
diff --git 
a/hadoop/src/main/java/org/apache/carbondata/hadoop/CarbonInputFormat.java 
b/hadoop/src/main/java/org/apache/carbondata/hadoop/CarbonInputFormat.java
index b330f12..40f5f2c 100644
--- a/hadoop/src/main/java/org/apache/carbondata/hadoop/CarbonInputFormat.java
+++ b/hadoop/src/main/java/org/apache/ca

[2/2] incubator-carbondata git commit: [CARBONDATA-815] add hive integration for carbon This closes #740

2017-04-05 Thread chenliang613
[CARBONDATA-815] add hive integration for carbon This closes #740


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/8e753a85
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/8e753a85
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/8e753a85

Branch: refs/heads/hive
Commit: 8e753a85b8d5373e8907368d70f2aff2a0084882
Parents: 4d0d2d6 96aeee8
Author: chenliang613 <chenliang...@huawei.com>
Authored: Thu Apr 6 10:56:48 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Thu Apr 6 10:56:48 2017 +0530

--
 dev/java-code-format-template.xml   |   2 +-
 .../carbondata/hadoop/CarbonInputFormat.java|   2 +-
 .../carbondata/hadoop/CarbonRecordReader.java   |   8 +-
 integration/hive/hive-guide.md  | 106 +++
 integration/hive/pom.xml| 114 
 .../carbondata/hive/CarbonArrayInspector.java   | 192 
 .../carbondata/hive/CarbonHiveInputSplit.java   | 290 +++
 .../carbondata/hive/CarbonHiveRecordReader.java | 249 
 .../apache/carbondata/hive/CarbonHiveSerDe.java | 231 +++
 .../carbondata/hive/CarbonObjectInspector.java  | 221 ++
 .../hive/CarbonStorageFormatDescriptor.java |  47 +++
 .../hive/MapredCarbonInputFormat.java   |  99 +++
 .../hive/MapredCarbonOutputFormat.java  |  49 
 ...he.hadoop.hive.ql.io.StorageFormatDescriptor |   1 +
 .../apache/carbondata/hive/TestCarbonSerde.java | 133 +
 pom.xml |  17 ++
 16 files changed, 1755 insertions(+), 6 deletions(-)
--




[incubator-carbondata] Git Push Summary

2017-04-04 Thread chenliang613
Repository: incubator-carbondata
Updated Tags:  refs/tags/apache-carbondata-1.1.0-incubating-rc1 [deleted] 
ce85fe762


[1/2] incubator-carbondata git commit: makes trivial change for sync up apache git to github

2017-04-04 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/master 5c4868e0d -> 9e721a81b


makes trivial change for sync up apache git to github


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/2c2c7c96
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/2c2c7c96
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/2c2c7c96

Branch: refs/heads/master
Commit: 2c2c7c9660e1deef13b9aae71d94f2a439340ed7
Parents: 5c4868e
Author: chenliang613 <chenliang...@huawei.com>
Authored: Tue Apr 4 20:42:44 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Tue Apr 4 20:42:44 2017 +0530

--
 .../scala/org/apache/carbondata/examples/AllDictionaryExample.scala | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/2c2c7c96/examples/spark/src/main/scala/org/apache/carbondata/examples/AllDictionaryExample.scala
--
diff --git 
a/examples/spark/src/main/scala/org/apache/carbondata/examples/AllDictionaryExample.scala
 
b/examples/spark/src/main/scala/org/apache/carbondata/examples/AllDictionaryExample.scala
index df5ee01..9012dcf 100644
--- 
a/examples/spark/src/main/scala/org/apache/carbondata/examples/AllDictionaryExample.scala
+++ 
b/examples/spark/src/main/scala/org/apache/carbondata/examples/AllDictionaryExample.scala
@@ -14,6 +14,7 @@
  * See the License for the specific language governing permissions and
  * limitations under the License.
  */
+
 package org.apache.carbondata.examples
 
 import org.apache.carbondata.core.constants.CarbonCommonConstants



[2/2] incubator-carbondata git commit: makes trivial change for sync up apache git to github

2017-04-04 Thread chenliang613
makes trivial change for sync up apache git to github


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/9e721a81
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/9e721a81
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/9e721a81

Branch: refs/heads/master
Commit: 9e721a81beb970c72f64c14615d8d5bddbf74de2
Parents: 5c4868e 2c2c7c9
Author: chenliang613 <chenliang...@huawei.com>
Authored: Tue Apr 4 20:44:09 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Tue Apr 4 20:44:09 2017 +0530

--
 .../scala/org/apache/carbondata/examples/AllDictionaryExample.scala | 1 +
 1 file changed, 1 insertion(+)
--




[1/2] incubator-carbondata git commit: Fixed Carbondata-848

2017-04-04 Thread chenliang613
Repository: incubator-carbondata
Updated Branches:
  refs/heads/presto 1797aa4ab -> f39ea5bbe


Fixed Carbondata-848

remove Presto module '


Project: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-carbondata/commit/aab73cb4
Tree: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/tree/aab73cb4
Diff: http://git-wip-us.apache.org/repos/asf/incubator-carbondata/diff/aab73cb4

Branch: refs/heads/presto
Commit: aab73cb4c9eb678ce5879a405d90a336a3237d79
Parents: 1797aa4
Author: Bhavya <bha...@knoldus.com>
Authored: Tue Apr 4 14:19:49 2017 +0530
Committer: chenliang613 <chenliang...@huawei.com>
Committed: Tue Apr 4 18:30:43 2017 +0530

--
 .../carbondata/presto/CarbondataRecordSetProvider.java  | 12 
 1 file changed, 8 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/incubator-carbondata/blob/aab73cb4/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataRecordSetProvider.java
--
diff --git 
a/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataRecordSetProvider.java
 
b/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataRecordSetProvider.java
index 85c53ad..63b926f 100755
--- 
a/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataRecordSetProvider.java
+++ 
b/integration/presto/src/main/java/org/apache/carbondata/presto/CarbondataRecordSetProvider.java
@@ -77,18 +77,22 @@ public class CarbondataRecordSetProvider implements 
ConnectorRecordSetProvider {
 checkType(split, CarbondataSplit.class, "split is not class 
CarbondataSplit");
 checkArgument(cdSplit.getConnectorId().equals(connectorId), "split is not 
for this connector");
 
+String targetCols = "";
 // Convert all columns handles
 ImmutableList.Builder handles = 
ImmutableList.builder();
 for (ColumnHandle handle : columns) {
   handles.add(checkType(handle, CarbondataColumnHandle.class, "handle"));
+  targetCols += ((CarbondataColumnHandle) handle).getColumnName() + ",";
 }
 
 // Build column projection(check the column order)
-String targetCols = "";
-for (ColumnHandle col : columns) {
-  targetCols += ((CarbondataColumnHandle) col).getColumnName() + ",";
+if (targetCols.length() > 0) {
+  targetCols = targetCols.substring(0, targetCols.length() - 1);
+}
+else
+{
+  targetCols = null;
 }
-targetCols = targetCols.substring(0, targetCols.length() - 1);
 //String cols = String.join(",", columns.stream().map(a -> 
((CarbondataColumnHandle)a).getColumnName()).collect(Collectors.toList()));
 
 CarbonTableCacheModel tableCacheModel =



  1   2   3   4   5   6   7   8   >