You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ts...@apache.org on 2015/01/07 22:01:09 UTC

drill git commit: External data file for blog authors

Repository: drill
Updated Branches:
  refs/heads/gh-pages d2b11b1b3 -> f0d2fda32


External data file for blog authors


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

Branch: refs/heads/gh-pages
Commit: f0d2fda32cb41444139a083098c710f7e3c83315
Parents: d2b11b1
Author: Tomer Shiran <ts...@gmail.com>
Authored: Wed Jan 7 13:00:49 2015 -0800
Committer: Tomer Shiran <ts...@gmail.com>
Committed: Wed Jan 7 13:00:49 2015 -0800

----------------------------------------------------------------------
 _data/authors.json                              | 32 ++++++++++++++++++++
 _layouts/post.html                              | 15 +++++++--
 blog/_posts/2014-11-13-sql-on-mongodb.md        |  2 +-
 .../2014-12-03-drill-top-level-project.md       |  2 +-
 ...14-12-09-running-sql-queries-on-amazon-s3.md |  2 +-
 blog/_posts/2014-12-16-whats-coming-in-2015.md  |  2 +-
 blog/_posts/2014-12-23-drill-0.7-released.md    |  2 +-
 7 files changed, 50 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/_data/authors.json
----------------------------------------------------------------------
diff --git a/_data/authors.json b/_data/authors.json
new file mode 100644
index 0000000..a684216
--- /dev/null
+++ b/_data/authors.json
@@ -0,0 +1,32 @@
+{
+  "tshiran": {
+    "name": "Tomer Shiran",
+    "title": "Founder, PMC Member and Committer",
+    "org": "Apache Drill",
+    "email": "tshiran@apache.org"
+  },
+  "jnadeau": {
+    "name": "Jacques Nadeau",
+    "title": "PMC Chair and Committer",
+    "org": "Apache Drill",
+    "email": "jacques@apache.org"
+  },
+  "namato": {
+    "name": "Nick Amato",
+    "title": "Director, Technical Marketing",
+    "org": "MapR Technologies",
+    "email": "namato@mapr.com"
+  },
+  "akumar": {
+    "name": "Anil Kumar Batchu",
+    "title": "SSE",
+    "org": "Intuit India (IDC)",
+    "email": "akumarb2010@gmail.com"
+  },
+  "kbhallamudi": {
+    "name": "Kamesh Bhallamudi",
+    "title": "SSE",
+    "org": "Intuit India (IDC)",
+    "email": "kamesh.hadoop@gmail.com"
+  }
+}
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/_layouts/post.html
----------------------------------------------------------------------
diff --git a/_layouts/post.html b/_layouts/post.html
index 1f2783f..070bf62 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -6,8 +6,19 @@ layout: default
   <header class="post-header">
     <h1 class="post-title">{{ page.title }}</h1>
     <p class="post-meta">
-{% if page.author %}<strong>Author:</strong> {{ page.author }}{% endif %}
-{% if page.authors %}<strong>Authors:</strong> {{ page.authors | join: '; '}}{% endif %}
+    {% if page.authors.size > 1 %}
+    <strong>Authors:</strong>
+    <ul>
+      {% for alias in page.authors %}
+        {% assign author = site.data.authors[alias] %}
+        <li>{{ author.name }} ({{ author.title}}, {{ author.org}})</li>
+      {% endfor %}
+    </ul>
+    {% else %}
+      {% assign alias = page.authors[0] %}
+      {% assign author = site.data.authors[alias] %}
+      <strong>Author:</strong> {{ author.name }} ({{ author.title}}, {{ author.org}})
+    {% endif %}
 {% unless page.nodate %}<br/><strong>Date:</strong> {{ page.date | date: "%b %-d, %Y" }}{% endunless %}
 {% if page.meta %}{{ page.meta }}{% endif %}</p>
   </header>

http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/blog/_posts/2014-11-13-sql-on-mongodb.md
----------------------------------------------------------------------
diff --git a/blog/_posts/2014-11-13-sql-on-mongodb.md b/blog/_posts/2014-11-13-sql-on-mongodb.md
index 8508214..1a96535 100644
--- a/blog/_posts/2014-11-13-sql-on-mongodb.md
+++ b/blog/_posts/2014-11-13-sql-on-mongodb.md
@@ -4,7 +4,7 @@ title: "SQL on MongoDB"
 code: sql-on-mongodb
 excerpt: The MongoDB storage plugin for Drill enables analytical queries on MongoDB databases. Drill's schema-free JSON data model is a natural fit for MongoDB's data model.
 date: 2014-11-19 13:50:01
-authors: ["Anil Kumar Batchu, SSE, Intuit India (IDC)", "Kamesh Bhallamudi, SSE, Intuit India (IDC)"]
+authors: ["akumar", "kbhallamudi"]
 ---
 One of the many interesting and unique features about Drill is its ability to support multiple query languages, data formats, and data sources, as well as cross-platform querying (such as joining HBase tables with your Mongo collections) using ANSI SQL.
 

http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/blog/_posts/2014-12-03-drill-top-level-project.md
----------------------------------------------------------------------
diff --git a/blog/_posts/2014-12-03-drill-top-level-project.md b/blog/_posts/2014-12-03-drill-top-level-project.md
index 142ceb7..80b3d0c 100644
--- a/blog/_posts/2014-12-03-drill-top-level-project.md
+++ b/blog/_posts/2014-12-03-drill-top-level-project.md
@@ -4,7 +4,7 @@ title: "Apache Drill Graduates to a Top-Level Project"
 code: drill-top-level-project
 excerpt: Drill has graduated to a Top-Level Project at Apache. This marks a significant accomplishment for the Drill community, which now includes dozens of developers working at a variety of companies.
 date: 2014-12-02 08:00
-authors: ["Tomer Shiran, Apache Drill Founder, PMC Member and Committer"]
+authors: ["tshiran"]
 ---
 The Apache Software Foundation has just announced that it has promoted Drill to a top-level project at Apache, similar to other well-known projects like Apache Hadoop and httpd (the world's most popular Web server). This marks a significant accomplishment for the Drill community, and I wanted to personally thank everyone who has contributed to the project. It takes many people, and countless hours, to develop something as complex and innovative as Drill.
 

http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/blog/_posts/2014-12-09-running-sql-queries-on-amazon-s3.md
----------------------------------------------------------------------
diff --git a/blog/_posts/2014-12-09-running-sql-queries-on-amazon-s3.md b/blog/_posts/2014-12-09-running-sql-queries-on-amazon-s3.md
index 57f6646..c58b4c2 100644
--- a/blog/_posts/2014-12-09-running-sql-queries-on-amazon-s3.md
+++ b/blog/_posts/2014-12-09-running-sql-queries-on-amazon-s3.md
@@ -4,7 +4,7 @@ title: "Running SQL Queries on Amazon S3"
 code: running-sql-queries-on-amazon-s3
 excerpt: Drill enables you to run SQL queries directly on data in S3. There's no need to ingest the data into a managed cluster or transform the data. This is a step-by-step tutorial on how to use Drill with S3.
 date: 2014-12-9 18:50:01
-author: ["Nick Amato, MapR Technologies"]
+authors: ["namato"]
 ---
 The functionality and sheer usefulness of Drill is growing fast.  If you're a user of some of the popular BI tools out there like Tableau or SAP Lumira, now is a good time to take a look at how Drill can make your life easier, especially if  you're faced with the task of quickly getting a handle on large sets of unstructured data.  With schema generated on the fly, you can save a lot of time and headaches by running SQL queries on the data where it rests without knowing much about columns or formats.  There's even more good news:  Drill also works with data stored in the cloud.  With a few simple steps, you can configure the S3 storage plugin for Drill and be off to the races running queries.  In this post we'll look at how to configure Drill to access data stored in an S3 bucket.
 

http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/blog/_posts/2014-12-16-whats-coming-in-2015.md
----------------------------------------------------------------------
diff --git a/blog/_posts/2014-12-16-whats-coming-in-2015.md b/blog/_posts/2014-12-16-whats-coming-in-2015.md
index 182f821..27351bc 100644
--- a/blog/_posts/2014-12-16-whats-coming-in-2015.md
+++ b/blog/_posts/2014-12-16-whats-coming-in-2015.md
@@ -3,7 +3,7 @@ layout: post
 title: "What's Coming in 2015?"
 code: whats-coming-in-2015
 excerpt: Drill is now a top-level project, and the community is expanding rapidly. Find out more about some of the new features planned for 2015.
-authors: ["Tomer Shiran, Apache Drill Founder, PMC Member and Committer"]
+authors: ["tshiran"]
 ---
 2014 was an exciting year for the Drill community. In August we made Drill available for downloads, and last week the Apache Software Foundation promoted Drill to a top-level project. Many of you have asked me what's coming next, so I decided to sit down and outline some of the interesting initiatives that the Drill community is currently working on:
 

http://git-wip-us.apache.org/repos/asf/drill/blob/f0d2fda3/blog/_posts/2014-12-23-drill-0.7-released.md
----------------------------------------------------------------------
diff --git a/blog/_posts/2014-12-23-drill-0.7-released.md b/blog/_posts/2014-12-23-drill-0.7-released.md
index e5194a4..699356a 100644
--- a/blog/_posts/2014-12-23-drill-0.7-released.md
+++ b/blog/_posts/2014-12-23-drill-0.7-released.md
@@ -3,7 +3,7 @@ layout: post
 title: "Drill 0.7 Released"
 code: drill-0.7-released
 excerpt: The community has just released Drill 0.7, which includes 228 resolved JIRAs and numerous enhancements.
-authors: ["Jacques Nadeau, Apache Drill PMC Chair"]
+authors: ["jnadeau"]
 ---
 I'm excited to announce that the community has just released Drill 0.7, which includes [228 resolved JIRAs](https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12313820&version=12327473) and numerous enhancements such as: