Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 449DB200C1F for ; Sat, 4 Feb 2017 03:39:35 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 435AE160B69; Sat, 4 Feb 2017 02:39:35 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id E8426160B64 for ; Sat, 4 Feb 2017 03:39:32 +0100 (CET) Received: (qmail 21467 invoked by uid 500); 4 Feb 2017 02:39:32 -0000 Mailing-List: contact commits-help@carbondata.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@carbondata.incubator.apache.org Delivered-To: mailing list commits@carbondata.incubator.apache.org Received: (qmail 21436 invoked by uid 99); 4 Feb 2017 02:39:32 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Feb 2017 02:39:32 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id 68BB91A05E6 for ; Sat, 4 Feb 2017 02:39:31 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -4.906 X-Spam-Level: X-Spam-Status: No, score=-4.906 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-2.999, URI_HEX=1.313] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id Qhb8OizeOIi4 for ; Sat, 4 Feb 2017 02:39:18 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with SMTP id 3D7E660CF4 for ; Sat, 4 Feb 2017 02:39:16 +0000 (UTC) Received: (qmail 18088 invoked by uid 99); 4 Feb 2017 02:38:00 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Feb 2017 02:38:00 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 53E24F16C8; Sat, 4 Feb 2017 02:38:00 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: chenliang613@apache.org To: commits@carbondata.incubator.apache.org Date: Sat, 04 Feb 2017 02:38:08 -0000 Message-Id: <0e35977a34ff443494d6455b58584301@git.apache.org> In-Reply-To: <0a8e5777281f4050b09e8d2c4f6be5c5@git.apache.org> References: <0a8e5777281f4050b09e8d2c4f6be5c5@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/35] incubator-carbondata-site git commit: Updated website for CarbonData release 1.0.0 archived-at: Sat, 04 Feb 2017 02:39:35 -0000 http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/installingcarbondataDoc.html ---------------------------------------------------------------------- diff --git a/content/installingcarbondataDoc.html b/content/installingcarbondataDoc.html deleted file mode 100644 index f02a4f1..0000000 --- a/content/installingcarbondataDoc.html +++ /dev/null @@ -1,237 +0,0 @@ - - - - - - - - CarbonData - - - - - - - - - - - -
- -
- -
- -
- -
- - - - - - - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/js/custom.js ---------------------------------------------------------------------- diff --git a/content/js/custom.js b/content/js/custom.js new file mode 100644 index 0000000..81b82ba --- /dev/null +++ b/content/js/custom.js @@ -0,0 +1,67 @@ + +// mobile menu drop down style +/*-----------------------------------------------------------*/ +$(document).ready(function(){ + + if ($(window).width() > 767){ + $('ul.nav li.dropdown').hover(function() { + $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(500); + }, function() { + $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut(500); + }); + } +}); + + +// Documentation page perticular links from landing page +/*-----------------------------------------------------------*/ + +function getParameterByName(name, url) { + if (!url) { + url = window.location.href; + } + name = name.replace(/[\[\]]/g, "\\$&"); + var regex = new RegExp("[?&]" + name + "(=([^&#]*)|&|#|$)"), + results = regex.exec(url); + if (!results) return null; + if (!results[2]) return ''; + return decodeURIComponent(results[2].replace(/\+/g, " ")); +} + +// conditional loading of documentation page from landing page +$(document).ready(function(){ + var pagelink; + var pageLoad = getParameterByName("page", window.location.href); + console.log(pageLoad); + switch(pageLoad) { + + case "userguide": + pagelink ="user-guide-toc.html" + break; + + case "uniqueData": + pagelink ="overview-of-carbondata.html" + break; + + case "quickStart": + pagelink ="quick-start-guide.html" + break; + + case "dml": + pagelink ="dml-operation-on-carbondata.html" + break; + + case "ddl": + pagelink ="ddl-operation-on-carbondata.html" + break; + + case "dm": + pagelink ="data-management.html" + break; + + } + $("#viewpage").load(pagelink); + + }); + + http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/js/custon.js ---------------------------------------------------------------------- diff --git a/content/js/custon.js b/content/js/custon.js deleted file mode 100644 index 218cd8a..0000000 --- a/content/js/custon.js +++ /dev/null @@ -1,48 +0,0 @@ -/* -$(window).resize(function(){ - if ($(window).width() < 767){ - - $('ul.nav li.dropdown').hover(function() { - $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(500); - }, function() { - $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut(500); - }); - } -});*/ - -$(document).ready(function(){ - $('ul.nav li.dropdown').hover(function() { - $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeIn(500); - }, function() { - $(this).find('.dropdown-menu').stop(true, true).delay(100).fadeOut(500); - }); - -}); - - - - $(document).ready(function(){ - $('iframe').load( function() { - $('iframe').contents().find("head") - .append($("")); - }); - }); - -//* Link*/ - -$(function () { - $("#Unique-link").on("click", function () { - alert("working"); - $("#target-iframe").load("overDoc.html#features"); - }); - $("#nav_page_b").on("click", function () { - $("#main").load("PageB.html"); - }); -}); - - - - /* print page*/ - - - http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/js/mdNavigation.js ---------------------------------------------------------------------- diff --git a/content/js/mdNavigation.js b/content/js/mdNavigation.js new file mode 100644 index 0000000..ce34ca5 --- /dev/null +++ b/content/js/mdNavigation.js @@ -0,0 +1,51 @@ +//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/0d4cdb1c/content/meetup.html ---------------------------------------------------------------------- diff --git a/content/meetup.html b/content/meetup.html new file mode 100644 index 0000000..8e6c74a --- /dev/null +++ b/content/meetup.html @@ -0,0 +1,215 @@ + + + + + + + + + CarbonData:Meetup + + + + + + + + + + + +
+ +
+ +
+ +
+
+ CarbonData banner +
+ +
+
+
+

ComingUp Meetups + +

+

+ Venue + To be Scheduled +

+ + +
+
+
+
+ +
+
+
+
+

Premiure Events + +

+
+
+
+

Oscon - Austin TXMay 2016

+ +

The agenda for the meetup was 'Carbondata : A New Hadoop File Format for Faster Data Analysis'. It focused on the inception and introduction of CarbonData to the open source community.

+
+
+
+ + + + +
+
+
+
+
+
+
+

BeijingOct 2016

+ +

The agenda for the meetup was 'CarbonData : An Indexed Columnar File Format for Interactive query'. It detailedly introduced the architecture and techniques of Apache CarbonData ,followed by a tutorial session and open discussion about future plans of Apache Carbondata.

+
+
+
+ + + + + + +
+
+
+
+
+
+
+
+ + + + + + + + + + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/overDoc.html ---------------------------------------------------------------------- diff --git a/content/overDoc.html b/content/overDoc.html deleted file mode 100644 index cb6e744..0000000 --- a/content/overDoc.html +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - CarbonData - - - - - - - - - - - -
- -
- -
- -
- -
- - - - - - - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/pageinprogress.html ---------------------------------------------------------------------- diff --git a/content/pageinprogress.html b/content/pageinprogress.html deleted file mode 100644 index 62f0433..0000000 --- a/content/pageinprogress.html +++ /dev/null @@ -1,187 +0,0 @@ - - - - - - - - CarbonData - - - - - - - - - - - -
- -
- -
- -
-
- -
-
- - - - - - - - - - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/pdf/maven-pdf-plugin.pdf ---------------------------------------------------------------------- diff --git a/content/pdf/maven-pdf-plugin.pdf b/content/pdf/maven-pdf-plugin.pdf new file mode 100644 index 0000000..e1adecf Binary files /dev/null and b/content/pdf/maven-pdf-plugin.pdf differ http://git-wip-us.apache.org/repos/asf/incubator-carbondata-site/blob/0d4cdb1c/content/quickstartDoc.html ---------------------------------------------------------------------- diff --git a/content/quickstartDoc.html b/content/quickstartDoc.html deleted file mode 100644 index f5d7f83..0000000 --- a/content/quickstartDoc.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - CarbonData - - - - - - - - - - - - - -
- -
- -
- -
- -
- - - - - - - - - \ No newline at end of file