Repository: drill-site
Updated Branches:
refs/heads/asf-site 97b253d4d -> 2e7cda7aa
http://git-wip-us.apache.org/repos/asf/drill-site/blob/2e7cda7a/feed.xml
----------------------------------------------------------------------
diff --git a/feed.xml b/feed.xml
index 9058144..291fdbc 100644
--- a/feed.xml
+++ b/feed.xml
@@ -6,9 +6,9 @@
</description>
<link>/</link>
<atom:link href="/feed.xml" rel="self" type="application/rss+xml"/>
- <pubDate>Wed, 17 Jun 2015 14:43:08 -0700</pubDate>
- <lastBuildDate>Wed, 17 Jun 2015 14:43:08 -0700</lastBuildDate>
- <generator>Jekyll v2.5.2</generator>
+ <pubDate>Thu, 18 Jun 2015 12:09:30 -0700</pubDate>
+ <lastBuildDate>Thu, 18 Jun 2015 12:09:30 -0700</lastBuildDate>
+ <generator>Jekyll v2.5.3</generator>
<item>
<title>The Apache Software Foundation Announces Apache Drill 1.0</title>
@@ -444,8 +444,9 @@ Tomer Shiran</p>
<item>
<title>Apache Drill Q&A Panelist Spotlight</title>
- <description><p><script type="text/javascript"
src="//addthisevent.com/libs/1.5.8/ate.min.js"></script>
-<a href="/blog/2014/12/11/apache-drill-qa-panelist-spotlight/" title="Add
to Calendar" class="addthisevent">
+ <description><script type="text/javascript" src="//addthisevent.com/libs/1.5.8/ate.min.js"></script>
+
+<p><a href="/blog/2014/12/11/apache-drill-qa-panelist-spotlight/"
title="Add to Calendar" class="addthisevent">
Add to Calendar
<span class="_start">12-17-2014 11:30:00</span>
<span class="_end">12-17-2014 12:30:00</span>
http://git-wip-us.apache.org/repos/asf/drill-site/blob/2e7cda7a/js/script.js
----------------------------------------------------------------------
diff --git a/js/script.js b/js/script.js
index b6b7352..3258a19 100644
--- a/js/script.js
+++ b/js/script.js
@@ -1,107 +1,107 @@
-var reelPointer = null;
-$(document).ready(function(e) {
-
- $(".aLeft").click(function() {
- moveReel("prev");
- });
- $(".aRight").click(function() {
- moveReel("next");
- });
-
- if ($("#header .scroller .item").length == 1) {
-
- } else {
-
- $("#header .dots, .aLeft, .aRight").css({ display: 'block' });
- $("#header .scroller .item").each(function(i) {
- $("#header .dots").append("<div class='dot'></div>");
- $("#header .dots .dot").eq(i).click(function() {
- var index = $(this).prevAll(".dot").length;
- moveReel(index);
- });
- });
-
- reelPointer = setTimeout(function() { moveReel(1); },5000);
- }
-
- $("#menu ul li").each(function(index, element) {
- if ($(this).find("ul").length) {
- $(this).addClass("parent");
- }
- });
-
- $("#header .dots .dot:eq(0)").addClass("sel");
-
- resized();
-
- $(window).scroll(onScroll);
-
- var pathname = window.location.pathname;
- var pathSlashesReplaced = pathname.replace(/\//g, " ");
- var pathSlashesReplacedNoFirstDash = pathSlashesReplaced.replace(" ","");
- var newClass = pathSlashesReplacedNoFirstDash.replace(/(\.[\s\S]+)/ig, "");
- $("body").addClass(newClass);
- if ( $("body").attr("class") == "")
- {
- $("body").addClass("class");
- }
-});
-
-var reel_currentIndex = 0;
-function resized() {
-
- var WW = parseInt($(window).width(),10);
- var IW = (WW < 999) ? 999 : WW;
- var IH = parseInt($("#header .scroller .item").css("height"),10);
- var IN = $("#header .scroller .item").length;
-
- $("#header .scroller").css({ width: (IN * IW)+"px", marginLeft: -(reel_currentIndex * IW)+"px"
});
- $("#header .scroller .item").css({ width: IW+"px" });
-
-
- $("#header .scroller .item").each(function(i) {
- var th = parseInt($(this).find(".tc").height(),10);
- var d = IH - th + 25;
- $(this).find(".tc").css({ top: Math.round(d/2)+"px" });
- });
-
- if (WW < 999) $("#menu").addClass("r");
- else $("#menu").removeClass("r");
-
- onScroll();
-
-}
-
-function moveReel(direction) {
-
- if (reelPointer) clearTimeout(reelPointer);
-
- var IN = $("#header .scroller .item").length;
- var IW = $("#header .scroller .item").width();
- if (direction == "next") reel_currentIndex++;
- else if (direction == "prev") reel_currentIndex--;
- else reel_currentIndex = direction;
-
- if (reel_currentIndex >= IN) reel_currentIndex = 0;
- if (reel_currentIndex < 0) reel_currentIndex = IN-1;
-
- $("#header .dots .dot").removeClass("sel");
- $("#header .dots .dot").eq(reel_currentIndex).addClass("sel");
-
- $("#header .scroller").stop(false,true,false).animate({ marginLeft: -(reel_currentIndex
* IW)+"px" }, 1000, "easeOutQuart");
-
- reelPointer = setTimeout(function() { moveReel(1); },5000);
-
-}
-
-function onScroll() {
- var ST = document.body.scrollTop || document.documentElement.scrollTop;
- //if ($("#menu.r").length) {
- // $("#menu.r").css({ top: ST+"px" });
- //} else {
- // $("#menu").css({ top: "0px" });
- //}
-
- if (ST > 400) $("#subhead").addClass("show");
- else $("#subhead").removeClass("show");
-}
+var reelPointer = null;
+$(document).ready(function(e) {
+
+ $(".aLeft").click(function() {
+ moveReel("prev");
+ });
+ $(".aRight").click(function() {
+ moveReel("next");
+ });
+
+ if ($("#header .scroller .item").length == 1) {
+
+ } else {
+
+ $("#header .dots, .aLeft, .aRight").css({ display: 'block' });
+ $("#header .scroller .item").each(function(i) {
+ $("#header .dots").append("<div class='dot'></div>");
+ $("#header .dots .dot").eq(i).click(function() {
+ var index = $(this).prevAll(".dot").length;
+ moveReel(index);
+ });
+ });
+
+ reelPointer = setTimeout(function() { moveReel(1); },5000);
+ }
+
+ $("#menu ul li").each(function(index, element) {
+ if ($(this).find("ul").length) {
+ $(this).addClass("parent");
+ }
+ });
+
+ $("#header .dots .dot:eq(0)").addClass("sel");
+
+ resized();
+
+ $(window).scroll(onScroll);
+
+ var pathname = window.location.pathname;
+ var pathSlashesReplaced = pathname.replace(/\//g, " ");
+ var pathSlashesReplacedNoFirstDash = pathSlashesReplaced.replace(" ","");
+ var newClass = pathSlashesReplacedNoFirstDash.replace(/(\.[\s\S]+)/ig, "");
+ $("body").addClass(newClass);
+ if ( $("body").attr("class") == "")
+ {
+ $("body").addClass("class");
+ }
+});
+
+var reel_currentIndex = 0;
+function resized() {
+
+ var WW = parseInt($(window).width(),10);
+ var IW = (WW < 999) ? 999 : WW;
+ var IH = parseInt($("#header .scroller .item").css("height"),10);
+ var IN = $("#header .scroller .item").length;
+
+ $("#header .scroller").css({ width: (IN * IW)+"px", marginLeft: -(reel_currentIndex * IW)+"px"
});
+ $("#header .scroller .item").css({ width: IW+"px" });
+
+
+ $("#header .scroller .item").each(function(i) {
+ var th = parseInt($(this).find(".tc").height(),10);
+ var d = IH - th + 25;
+ $(this).find(".tc").css({ top: Math.round(d/2)+"px" });
+ });
+
+ if (WW < 999) $("#menu").addClass("r");
+ else $("#menu").removeClass("r");
+
+ onScroll();
+
+}
+
+function moveReel(direction) {
+
+ if (reelPointer) clearTimeout(reelPointer);
+
+ var IN = $("#header .scroller .item").length;
+ var IW = $("#header .scroller .item").width();
+ if (direction == "next") reel_currentIndex++;
+ else if (direction == "prev") reel_currentIndex--;
+ else reel_currentIndex = direction;
+
+ if (reel_currentIndex >= IN) reel_currentIndex = 0;
+ if (reel_currentIndex < 0) reel_currentIndex = IN-1;
+
+ $("#header .dots .dot").removeClass("sel");
+ $("#header .dots .dot").eq(reel_currentIndex).addClass("sel");
+
+ $("#header .scroller").stop(false,true,false).animate({ marginLeft: -(reel_currentIndex
* IW)+"px" }, 1000, "easeOutQuart");
+
+ reelPointer = setTimeout(function() { moveReel(1); },5000);
+
+}
+
+function onScroll() {
+ var ST = document.body.scrollTop || document.documentElement.scrollTop;
+ //if ($("#menu.r").length) {
+ // $("#menu.r").css({ top: ST+"px" });
+ //} else {
+ // $("#menu").css({ top: "0px" });
+ //}
+
+ if (ST > 400) $("#subhead").addClass("show");
+ else $("#subhead").removeClass("show");
+}
http://git-wip-us.apache.org/repos/asf/drill-site/blob/2e7cda7a/team/index.html
----------------------------------------------------------------------
diff --git a/team/index.html b/team/index.html
index affbdbd..99c747c 100644
--- a/team/index.html
+++ b/team/index.html
@@ -130,8 +130,8 @@
</tr>
</thead><tbody>
<tr>
-<td><strong>Jacques Nadeau (PMC Chair and VP Apache Drill)</strong></td>
-<td><strong>jacques</strong></td>
+<td>Jacques Nadeau</td>
+<td>jacques</td>
</tr>
<tr>
<td>Tomer Shiran</td>
http://git-wip-us.apache.org/repos/asf/drill-site/blob/2e7cda7a/toc/index.html
----------------------------------------------------------------------
diff --git a/toc/index.html b/toc/index.html
index 1ef106f..6c2e5d1 100644
--- a/toc/index.html
+++ b/toc/index.html
@@ -483,6 +483,10 @@
+
+
+
+
</ul>
@@ -974,6 +978,10 @@
+
+
+
+
</ul>
@@ -1420,6 +1428,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/tutorials-introduction/">Tutorials
Introduction</a></li>
@@ -1894,6 +1906,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/about-the-mapr-sandbox/">About
the MapR Sandbox</a></li>
@@ -2604,6 +2620,10 @@
+
+
+
+
</ul>
@@ -3081,6 +3101,10 @@
+
+
+
+
</ul>
@@ -3383,6 +3407,10 @@
+
+
+
+
</ul>
@@ -3937,6 +3965,10 @@
+
+
+
+
</ul>
@@ -4434,6 +4466,10 @@
+
+
+
+
</ul>
@@ -4836,6 +4872,10 @@
+
+
+
+
</ul>
@@ -5424,6 +5464,10 @@
+
+
+
+
</ul>
@@ -5808,6 +5852,10 @@
+
+
+
+
</ul>
@@ -6015,6 +6063,13 @@
+ <li class="toctree-l2"><a class="reference internal" href="/docs/using-the-jdbc-driver/">Using
the JDBC Driver</a></li>
+
+
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/using-jdbc-with-squirrel-on-windows/">Using
JDBC with SQuirreL on Windows</a></li>
@@ -6239,6 +6294,8 @@
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/installing-the-driver-on-linux/">Installing
the Driver on Linux</a></li>
@@ -6496,6 +6553,8 @@
+
+
</ul>
@@ -6708,6 +6767,8 @@
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/odbc-configuration-reference/">ODBC
Configuration Reference</a></li>
@@ -6977,6 +7038,8 @@
+
+
</ul>
@@ -7207,6 +7270,8 @@
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/drill-explorer-introduction/">Drill
Explorer Introduction</a></li>
@@ -7454,6 +7519,8 @@
+
+
</ul>
@@ -7690,6 +7757,8 @@
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/using-drill-with-bi-tools-introduction/">Using
Drill with BI Tools Introduction</a></li>
@@ -7714,6 +7783,10 @@
+ <li class="toctree-l3"><a class="reference internal" href="/docs/configuring-jreport-with-drill/">Configuring
JReport with Drill</a></li>
+
+
+
@@ -8201,6 +8274,8 @@
+
+
</ul>
@@ -8485,6 +8560,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/query-data-introduction/">Query
Data Introduction</a></li>
@@ -8787,6 +8866,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/querying-a-file-system-introduction/">Querying
a File System Introduction</a></li>
@@ -9285,6 +9368,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/querying-complex-data-introduction/">Querying
Complex Data Introduction</a></li>
@@ -9910,6 +9997,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/performance-tuning-introduction/">Performance
Tuning Introduction</a></li>
@@ -10194,6 +10285,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/query-plans-and-tuning-introduction/">Query
Plans and Tuning Introduction</a></li>
@@ -10671,6 +10766,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/query-plans/">Query
Plans</a></li>
@@ -11150,6 +11249,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/query-profile-column-descriptions/">Query
Profile Column Descriptions</a></li>
@@ -12073,6 +12176,10 @@
+
+
+
+
</ul>
@@ -12419,6 +12526,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/sql-reference-introduction/">SQL
Reference Introduction</a></li>
@@ -12789,6 +12900,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/supported-data-types/">Supported
Data Types</a></li>
@@ -13344,6 +13459,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/about-sql-function-examples/">About
SQL Function Examples</a></li>
@@ -13771,6 +13890,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/nested-data-limitations/">Nested
Data Limitations</a></li>
@@ -14269,6 +14392,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/supported-sql-commands/">Supported
SQL Commands</a></li>
@@ -14832,6 +14959,10 @@
+
+
+
+
<li class="toctree-l3"><a class="reference internal" href="/docs/case/">CASE</a></li>
@@ -15493,6 +15624,10 @@
+
+
+
+
</ul>
@@ -15994,6 +16129,10 @@
+
+
+
+
</ul>
@@ -16611,6 +16750,10 @@
+
+
+
+
</ul>
@@ -17086,6 +17229,10 @@
+
+
+
+
</ul>
@@ -17567,6 +17714,10 @@
+
+
+
+
</ul>
@@ -17897,6 +18048,10 @@
+
+
+
+
</ul>
@@ -18219,6 +18374,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/apache-drill-0-5-0-release-notes/">Apache
Drill 0.5.0 Release Notes</a></li>
@@ -18753,6 +18912,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/aol-search/">AOL
Search</a></li>
@@ -19385,6 +19548,10 @@
+
+
+
+
</ul>
@@ -19667,6 +19834,10 @@
+
+
+
+
<li class="toctree-l2"><a class="reference internal" href="/docs/2014-q1-drill-report/">2014
Q1 Drill Report</a></li>
@@ -20292,6 +20463,10 @@
+
+
+
+
</ul>
</div>
|