zeppelin git commit: [ZEPPELIN-1313] NullPointerException when using Clone notebook REST API

2016-08-31 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master f1a247130 -> 83469be5b


[ZEPPELIN-1313] NullPointerException when using Clone notebook REST API

### What is this PR for?
This fixes when the input json is empty for the clone notebook REST API and for 
this case the default name will be populated.

### What type of PR is it?
Bug Fix

### Todos
NA

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1313

### How should this be tested?
When the input json is empty for the clone notebook REST API, the response 
should be 201 with the default name populated.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Kavin 
Author: Kavin Kumar 

Closes #1348 from kavinkumarks/zeppelin-1313-fix-NPE-clone-notebook and 
squashes the following commits:

941e13b [Kavin] Removed note.id() and replaced the references with note.getId()
11a2903 [Kavin Kumar] Fixed NPE when the input json is empty for clone notebook 
REST API and set the default name for the case.Added test cases too.


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

Branch: refs/heads/master
Commit: 83469be5bac23dbde81f511afb5bb014fce50489
Parents: f1a2471
Author: Kavin 
Authored: Tue Aug 23 12:33:56 2016 +0530
Committer: AhyoungRyu 
Committed: Thu Sep 1 11:56:23 2016 +0900

--
 .../apache/zeppelin/rest/NotebookRestApi.java   |  9 ++-
 .../apache/zeppelin/socket/NotebookServer.java  | 62 +++
 .../zeppelin/rest/InterpreterRestApiTest.java   |  2 +-
 .../zeppelin/rest/NotebookRestApiTest.java  | 27 +++
 .../zeppelin/rest/ZeppelinSparkClusterTest.java | 14 ++--
 .../java/org/apache/zeppelin/notebook/Note.java |  8 +-
 .../org/apache/zeppelin/notebook/NoteInfo.java  |  2 +-
 .../org/apache/zeppelin/notebook/Notebook.java  | 24 +++---
 .../org/apache/zeppelin/notebook/Paragraph.java |  8 +-
 .../zeppelin/notebook/repo/S3NotebookRepo.java  |  2 +-
 .../zeppelin/notebook/repo/VFSNotebookRepo.java |  2 +-
 .../repo/zeppelinhub/ZeppelinHubRepo.java   |  2 +-
 .../helium/HeliumApplicationFactoryTest.java| 12 +--
 .../apache/zeppelin/notebook/NotebookTest.java  | 82 +++-
 .../repo/zeppelinhub/ZeppelinHubRepoTest.java   |  2 +-
 15 files changed, 148 insertions(+), 110 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/83469be5/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
--
diff --git 
a/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java 
b/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
index 6a286a4..db0cbec 100644
--- 
a/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
+++ 
b/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
@@ -319,7 +319,10 @@ public class NotebookRestApi {
   throws IOException, CloneNotSupportedException, IllegalArgumentException 
{
 LOG.info("clone notebook by JSON {}", message);
 NewNotebookRequest request = gson.fromJson(message, 
NewNotebookRequest.class);
-String newNoteName = request.getName();
+String newNoteName = null;
+if (request != null) {
+  newNoteName = request.getName();
+}
 AuthenticationInfo subject = new 
AuthenticationInfo(SecurityUtils.getPrincipal());
 Note newNote = notebook.cloneNote(notebookId, newNoteName, subject);
 notebookServer.broadcastNote(newNote);
@@ -669,7 +672,7 @@ public class NotebookRestApi {
 Map config = note.getConfig();
 config.put("cron", request.getCronString());
 note.setConfig(config);
-notebook.refreshCron(note.id());
+notebook.refreshCron(note.getId());
 
 return new JsonResponse<>(Status.OK).build();
   }
@@ -697,7 +700,7 @@ public class NotebookRestApi {
 Map config = note.getConfig();
 config.put("cron", null);
 note.setConfig(config);
-notebook.refreshCron(note.id());
+notebook.refreshCron(note.getId());
 
 return new JsonResponse<>(Status.OK).build();
   }

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/83469be5/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
--
diff --git 
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java 
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
index 694f081..19bfba1 100644
--- 
a/zepp

zeppelin git commit: [ZEPPELIN-1398] Use relative path for search_data.json

2016-09-06 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master f9bc7a9fc -> 20f0e5bac


[ZEPPELIN-1398] Use relative path for search_data.json

### What is this PR for?
Use relative path for search_data.json

### What type of PR is it?
[Bug Fix]

### What is the Jira issue?
* [ZEPPELIN-1398](https://issues.apache.org/jira/browse/ZEPPELIN-1398)

Author: AhyoungRyu 
Author: Luciano Resende 

Closes #1387 from lresende/search and squashes the following commits:

005f8dc [AhyoungRyu] [ZEPPELIN-1398] Fix wrong path in searched docs link
f081b87 [AhyoungRyu] [ZEPPELIN-1398] Make screenshots.md not searchable
84b1b2b [Luciano Resende] [ZEPPELIN-1398] Use relative path for search_data.json


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

Branch: refs/heads/master
Commit: 20f0e5bacb9cfce98162dcf4e37602db24ae3331
Parents: f9bc7a9
Author: AhyoungRyu 
Authored: Thu Sep 1 17:22:04 2016 +0900
Committer: AhyoungRyu 
Committed: Tue Sep 6 18:22:57 2016 +0900

--
 docs/assets/themes/zeppelin/js/search.js | 6 --
 docs/screenshots.md  | 4 ++--
 2 files changed, 6 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/20f0e5ba/docs/assets/themes/zeppelin/js/search.js
--
diff --git a/docs/assets/themes/zeppelin/js/search.js 
b/docs/assets/themes/zeppelin/js/search.js
index 469b66e..407c1f9 100644
--- a/docs/assets/themes/zeppelin/js/search.js
+++ b/docs/assets/themes/zeppelin/js/search.js
@@ -25,7 +25,7 @@ jQuery(function() {
 this.field('group');
   });
 
-  window.data = $.getJSON('/search_data.json');
+  window.data = $.getJSON('search_data.json');
   window.data.then(function(loaded_data){
 $.each(loaded_data, function(index, value){
   window.idx.add(
@@ -51,6 +51,8 @@ jQuery(function() {
   function display_search_results(results) {
 var $search_results = $("#search_results");
 var zeppelin_version = {{site.ZEPPELIN_VERSION | jsonify}};
+var base_url = {{site.JB.BASE_PATH | jsonify}};
+var prod_url = {{site.production_url | jsonify}};
 
 window.data.then(function(loaded_data) {
   if (results.length) {
@@ -59,7 +61,7 @@ jQuery(function() {
 
 results.forEach(function(result) {
   var item = loaded_data[result.ref];
-  var appendString = ''+item.title+''+'https://zeppelin.apache.org/docs/'+zeppelin_version+item.url+''+item.excerpt+'';
+  var appendString = ''+item.title+''+prod_url+base_url+item.url.trim()+''+item.excerpt+'';
 
   $search_results.append(appendString);
 });

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/20f0e5ba/docs/screenshots.md
--
diff --git a/docs/screenshots.md b/docs/screenshots.md
index 2cad21b..e7af542 100644
--- a/docs/screenshots.md
+++ b/docs/screenshots.md
@@ -1,7 +1,7 @@
 ---
 layout: page
-title: "Screenshots"
-description: ""
+title:
+description:
 ---
 

svn commit: r1760289 - in /zeppelin/site: ./ assets/themes/zeppelin/css/ assets/themes/zeppelin/img/ assets/themes/zeppelin/img/screenshots/

2016-09-11 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Sep 12 04:12:52 2016
New Revision: 1760289

URL: http://svn.apache.org/viewvc?rev=1760289&view=rev
Log:
Deploy to asf-zeppelin

Modified:
zeppelin/site/assets/themes/zeppelin/css/style.css
zeppelin/site/assets/themes/zeppelin/img/available_interpreters.png
zeppelin/site/assets/themes/zeppelin/img/screenshots/form_input.png

zeppelin/site/assets/themes/zeppelin/img/screenshots/homepage_notebook_id.png
zeppelin/site/atom.xml
zeppelin/site/index.html
zeppelin/site/rss.xml
zeppelin/site/screenshots.html
zeppelin/site/sitemap.txt

Modified: zeppelin/site/assets/themes/zeppelin/css/style.css
URL: 
http://svn.apache.org/viewvc/zeppelin/site/assets/themes/zeppelin/css/style.css?rev=1760289&r1=1760288&r2=1760289&view=diff
==
--- zeppelin/site/assets/themes/zeppelin/css/style.css (original)
+++ zeppelin/site/assets/themes/zeppelin/css/style.css Mon Sep 12 04:12:52 2016
@@ -11,12 +11,6 @@ body {
   letter-spacing: .2px;
 }
 
-.logopage_container {
-  display: inline-block;
-  vertical-align: middle;
-  margin: 10px 20px;
-}
-
 .jumbotron {
   background-color: #3071a9;
 }
@@ -27,7 +21,7 @@ body {
 }
 
 .jumbotron p {
-  font-size: 19px;
+  font-size: 19px; 
 }
 
 .jumbotron .btn {
@@ -142,6 +136,46 @@ body {
   background: #3071a9;
 }
 
+.scrollable-menu {
+  max-height: 500px;
+  overflow: auto;
+}
+
+.scrollable-menu::-webkit-scrollbar {
+  -webkit-appearance: none;
+  width: 7px;
+}  
+
+.scrollable-menu::-webkit-scrollbar-thumb {
+  border-radius: 3px;
+  background-color: gray; 
+}
+
+.index-header {
+  font-size: 16px;
+  font-style: italic;
+  margin-bottom: 15px;
+  margin-top: 15px;
+}
+
+.index-description {
+  line-height: 1.6;
+  padding: 10px;
+}
+
+@media (max-width: 768px) {
+  .navbar-collapse.in {
+box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.4);
+  }
+
+  .bigFingerButton {
+margin-top: 12px;
+display: block;
+margin-right: auto;
+margin-left: auto;
+  }
+}
+
 .bigFingerButton {
   margin-right: 10px;
 }
@@ -160,31 +194,6 @@ body {
   outline-width: 0;
 }
 
-/* SideMenu */
-
-.sideMenu li {
-  list-style: none;
-  border: 1px solid #c2c2c2;
-  border-bottom: none;
-  padding: 5px 10px;
-}
-
-.sideMenu li a {
-  text-decoration: none;
-  color: #3071a9;
-}
-
-.sideMenu li:first-of-type {
-  border-top-left-radius: 3px;
-  border-top-right-radius: 3px;
-}
-
-.sideMenu li:last-of-type {
-  border-bottom: 1px solid #c2c2c2;
-  border-bottom-left-radius: 3px;
-  border-bottom-right-radius: 3px;
-}
-
 /* CUSTOMIZE THE CAROUSEL
 -- */
 
@@ -220,6 +229,15 @@ body {
   margin-bottom: 0;
 }
 
+@media screen and (min-width: 768px) {
+  .carousel-indicators {
+margin-bottom: -60px;
+  }
+  .carousel-caption {
+padding-bottom: 60px;
+  }
+}
+
 /* screenshot img inside of doc */
 .screenshot {
   width: 800px;
@@ -238,14 +256,29 @@ body {
 /* Custom container */
 .content {
   word-wrap: break-word;
-  max-width: 1024px;
-  padding: 2rem 2rem;
-  margin: 0 auto;
 }
 .content :first-child {
   margin-top: 0;
 }
 
+@media screen and (min-width: 64em) {
+  .content {
+max-width: 64em;
+padding: 2rem 6rem;
+margin: 0 auto;
+  }
+}
+@media screen and (min-width: 42em) and (max-width: 64em) {
+  .content {
+padding: 2rem 4rem;
+  }
+}
+@media screen and (max-width: 42em) {
+  .content {
+padding: 2rem 1rem;
+  }
+}
+
 /*  */
 .content a {
   color: #4183C4;
@@ -261,7 +294,7 @@ a.anchor {
   position: absolute;
   top: 0;
   left: 0;
-  bottom: 0;
+  bottom: 0; 
 }
 
 /*  */
@@ -405,11 +438,12 @@ a.anchor {
 .content table {
   display: block;
   width: 100%;
-  overflow: auto;
   word-break: normal;
   word-break: keep-all;
   -webkit-overflow-scrolling: touch;
-  font-size: 90%;
+  font-size: 87%;
+  margin-top: 16px;
+  margin-bottom: 16px;
 }
 .content table th {
   font-weight: bold;
@@ -495,8 +529,9 @@ a.anchor {
 
 .navbar-brand small {
   font-size: 14px;
-  font-family: 'Helvetica Neue', Helvetica;
+  font-family: 'Open Sans', 'Helvetica Neue', Helvetica;
   color: white;
+  vertical-align: bottom;
 }
 
 .navbar-collapse.collapse {
@@ -517,6 +552,46 @@ a.anchor {
   background: #286090;
 }
 
+a.anchorjs-link:hover { text-decoration: none; }
+
+/* Table of Contents(TOC) */
+#toc {
+  padding-top: 12px;
+  padding-bottom: 12px;
+}
+
+#toc ul {
+  margin-left: -14px;
+}
+
+#toc ul ul {
+  margin-left: -18px;
+}
+
+/* Search Page */
+#search p {
+  font-size: 30px;
+  font-weight: bold;
+  color: black;
+}
+
+#search_results p {
+  font-size: 13px;
+  font-weight: 400;
+}
+
+#search_results a {
+  vertical-align: super;
+  font-size: 16px;
+  text-decoration: underline;
+}
+
+#search_results .link {
+  font-size: 13px;
+  color: #008000;
+  padding-bottom: 3px;
+}
+
 /* Custom, iPhone Retina */
 @media only screen and (max-width:

zeppelin git commit: [MINOR] Doc fix for spark interpreter

2016-09-19 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master b8755ebb2 -> ba12ea3ed


[MINOR] Doc fix for spark interpreter

### What is this PR for?
Several changes on doc of spark interpreter.

* %spark, %sql, %pyspark only works when spark is the default interpreter group 
of note. So I update the doc to use the full interpreter name.
* Add SparkSession for 2.0
* Also add comments inline with other changes to explain the reason.

### What type of PR is it?
[Documentation]

### Todos
* [ ] - Task

### What is the Jira issue?
* No jira created.

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: AhyoungRyu 
Author: Jeff Zhang 
Author: Jeff Zhang 

Closes #1398 from zjffdu/spark_doc_fix and squashes the following commits:

ac01f2b [Jeff Zhang] Merge pull request #1 from AhyoungRyu/spark_doc_fix/ahyoung
5fa523f [AhyoungRyu] Fix typos
3c0f678 [AhyoungRyu] Add 'R' and refine a sentence
2336900 [AhyoungRyu] Improve spark.md
40d4b11 [Jeff Zhang] [MINOR] Doc fix for spark interpreter


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

Branch: refs/heads/master
Commit: ba12ea3ed9930d46cdd4a4b7606e8d0cb383a879
Parents: b8755eb
Author: AhyoungRyu 
Authored: Tue Sep 13 17:55:57 2016 +0800
Committer: AhyoungRyu 
Committed: Tue Sep 20 10:27:47 2016 +0900

--
 docs/interpreter/spark.md | 105 +
 1 file changed, 53 insertions(+), 52 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/ba12ea3e/docs/interpreter/spark.md
--
diff --git a/docs/interpreter/spark.md b/docs/interpreter/spark.md
index 90ac9b0..035a01e 100644
--- a/docs/interpreter/spark.md
+++ b/docs/interpreter/spark.md
@@ -1,7 +1,7 @@
 ---
 layout: page
 title: "Apache Spark Interpreter for Apache Zeppelin"
-description: "Apache Spark is a fast and general-purpose cluster computing 
system. It provides high-level APIs in Java, Scala, Python and R, and an 
optimized engine that supports general execution graphs."
+description: "Apache Spark is a fast and general-purpose cluster computing 
system. It provides high-level APIs in Java, Scala, Python and R, and an 
optimized engine that supports general execution engine."
 group: interpreter
 ---
 

svn commit: r1761515 - /zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html

2016-09-19 Thread ahyoungryu
Author: ahyoungryu
Date: Tue Sep 20 02:21:35 2016
New Revision: 1761515

URL: http://svn.apache.org/viewvc?rev=1761515&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html?rev=1761515&r1=1761514&r2=1761515&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html Tue Sep 20 
02:21:35 2016
@@ -4,7 +4,7 @@
   
 
 Apache Zeppelin 0.7.0-SNAPSHOT Documentation: Apache Spark 
Interpreter for Apache Zeppelin
-
+
 
 
 
@@ -206,9 +206,8 @@ limitations under the License.
 Overview
 
 http://spark.apache.org";>Apache Spark is a fast and 
general-purpose cluster computing system.
-It provides high-level APIs in Java, Scala, Python and R, and an optimized 
engine that supports general execution graphs
-Apache Spark is supported in Zeppelin with
-Spark Interpreter group, which consists of five interpreters.
+It provides high-level APIs in Java, Scala, Python and R, and an optimized 
engine that supports general execution graphs.
+Apache Spark is supported in Zeppelin with Spark interpreter group which 
consists of below five interpreters.
 
 
   
@@ -219,25 +218,25 @@ Spark Interpreter group, which consists
   
 %spark
 SparkInterpreter
-Creates a SparkContext and provides a scala environment
+Creates a SparkContext and provides a Scala environment
   
   
-%pyspark
+%spark.pyspark
 PySparkInterpreter
-Provides a python environment
+Provides a Python environment
   
   
-%r
+%spark.r
 SparkRInterpreter
 Provides an R environment with SparkR support
   
   
-%sql
+%spark.sql
 SparkSQLInterpreter
 Provides a SQL environment
   
   
-%dep
+%spark.dep
 DepInterpreter
 Dependency loader
   
@@ -322,22 +321,22 @@ You can also set other Spark properties
 
 1. Export SPARK_HOME
 
-In conf/zeppelin-env.sh, export SPARK_HOME 
environment variable with your Spark installation path.
+In conf/zeppelin-env.sh, export SPARK_HOME 
environment variable with your Spark installation path.
 
-for example
+For example,
 export SPARK_HOME=/usr/lib/spark
 
-You can optionally export HADOOP_CONF_DIR and SPARK_SUBMIT_OPTIONS
+You can optionally export HADOOP_CONF_DIR and 
SPARK_SUBMIT_OPTIONS
 export HADOOP_CONF_DIR=/usr/lib/hadoop
 export SPARK_SUBMIT_OPTIONS="--packages com.databricks:spark-csv_2.10:1.2.0"
 
-For Windows, ensure you have winutils.exe in 
%HADOOP_HOME%\bin. For more details please see https://wiki.apache.org/hadoop/WindowsProblems";>Problems running Hadoop 
on Windows
+For Windows, ensure you have winutils.exe in 
%HADOOP_HOME%\bin. Please see https://wiki.apache.org/hadoop/WindowsProblems";>Problems running Hadoop 
on Windows for the details.
 
 2. Set master in Interpreter menu
 
 After start Zeppelin, go to Interpreter menu and edit 
master property in your Spark interpreter setting. The value 
may vary depending on your Spark cluster deployment type.
 
-for example,
+For example,
 
 
 local[*] in local mode
@@ -346,25 +345,27 @@ You can also set other Spark properties
 mesos://host:5050 in Mesos cluster
 
 
-That's it. Zeppelin will work with any version of Spark and any 
deployment type without rebuilding Zeppelin in this way. (Zeppelin 
0.5.6-incubating release works up to Spark 1.6.1 )
+That's it. Zeppelin will work with any version of Spark and any 
deployment type without rebuilding Zeppelin in this way. 
+For the further information about Spark & Zeppelin version compatibility, 
please refer to "Available Interpreters" section in https://zeppelin.apache.org/download.html";>Zeppelin download page.
 
 
 Note that without exporting SPARK_HOME, it's running in 
local mode with included version of Spark. The included version may vary 
depending on the build profile.
 
 
-SparkContext, SQLContext, ZeppelinContext
+SparkContext, SQLContext, SparkSession, ZeppelinContext
 
-SparkContext, SQLContext, ZeppelinContext are automatically created and 
exposed as variable names 'sc', 'sqlContext' and 'z', 
respectively, both in scala and python environments.
+SparkContext, SQLContext and ZeppelinContext are automatically created and 
exposed as variable names sc, sqlContext and 
z, respectively, in Scala, Python and R environments.
+Staring from 0.6.1 SparkSession is available as variable spark 
when you are using Spark 2.x.
 
 
-Note that scala / python environment shares the same SparkContext, 
SQLContext, ZeppelinContext instance.
+Note that Scala/Python/R environment shares the same SparkContext, 
SQLContext and ZeppelinContext instance.

zeppelin git commit: Rewrite of "Quick Start" page.

2016-09-25 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master e08ddf783 -> c2fc3f5bd


Rewrite of "Quick Start" page.

### What is this PR for?
A few sentences describing the overall goals of the pull request's commits.
First time? Check out the contributing guide - 
https://github.com/apache/zeppelin/blob/master/CONTRIBUTING.md

This is a rewrite of the "Quick Start" page, fixing syntax/grammar issues while 
trying to keep to the original content. I may look at other pages, but I wanted 
my first PR to be very small.

### What type of PR is it?
Documentation

### Todos
Verify the accuracy of the configuration settings section

### What is the Jira issue?
(Does this apply to documentation PRs?)

### How should this be tested?
Do documentation changes like this need to be tested?
If so, is the github preview sufficient for these changes? How is Zeppelin's 
markdown interpreter different than Github's?
If Github's MD preview isn't sufficient, is it possible to build the 
documentation locally?

### Screenshots (if appropriate)

### Questions:
* Since this is my first PR on the project, I limited the scope of my changes. 
Is there any desire to  change the content of these pages in any way? Do we 
have documentation conventions?

Author: Roger Filmyer 

Closes #1416 from rfilmyer/master and squashes the following commits:

f2c126b [Roger Filmyer] Rewrite of "Quick Start"


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

Branch: refs/heads/master
Commit: c2fc3f5bd9af2c72e0a840c8f7ed4d034d7735f3
Parents: e08ddf7
Author: Roger Filmyer 
Authored: Thu Sep 8 11:45:54 2016 -0700
Committer: AhyoungRyu 
Committed: Sun Sep 25 16:00:00 2016 +0900

--
 docs/install/install.md | 106 ++-
 1 file changed, 55 insertions(+), 51 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c2fc3f5b/docs/install/install.md
--
diff --git a/docs/install/install.md b/docs/install/install.md
index 4d81fe5..94a35cb 100644
--- a/docs/install/install.md
+++ b/docs/install/install.md
@@ -1,7 +1,7 @@
 ---
 layout: page
 title: "Quick Start"
-description: "This page will help you to get started and guide you through 
installation of Apache Zeppelin, running it in the command line and basic 
configuration options."
+description: "This page will help you get started and will guide you through 
installing Apache Zeppelin, running it in the command line and configuring 
options."
 group: install
 ---
 

svn commit: r1762157 - /zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html

2016-09-25 Thread ahyoungryu
Author: ahyoungryu
Date: Sun Sep 25 07:10:15 2016
New Revision: 1762157

URL: http://svn.apache.org/viewvc?rev=1762157&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html?rev=1762157&r1=1762156&r2=1762157&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html Sun Sep 25 07:10:15 
2016
@@ -4,7 +4,7 @@
   
 
 Apache Zeppelin 0.7.0-SNAPSHOT Documentation: Quick Start
-
+
 
 
 
@@ -201,14 +201,13 @@ limitations under the License.
 
 Quick Start
 
-Welcome to your first trial to explore Apache Zeppelin! 
-This page will help you to get started and here is the list of topics 
covered.
-
 
 
+Welcome to Apache Zeppelin! On this page are instructions to help you get 
started.
+
 Installation
 
-Apache Zeppelin officially supports and is tested on next environments.
+Apache Zeppelin officially supports and is tested on the following 
environments:
 
 
   
@@ -225,22 +224,21 @@ This page will help you to get started a
   
 
 
-There are two options to install Apache Zeppelin on your machine. One is downloading pre-built binary package 
from the archive. 
-You can download not only the latest stable version but also the older one if 
you need. 
-The other option is building from the 
source.
-Although it can be unstable somehow since it is on development status, you can 
explore newly added feature and change it as you want.
+To install Apache Zeppelin, you have two options:
+* You can download pre-built binary 
packages from the archive. This is usually easier than building from 
source, and you can download the latest stable version (or older versions, if 
necessary).
+* You can also build from source. This 
gives you a development version of Zeppelin, which is more unstable but has new 
features.
 
 Downloading Binary Package
 
-If you want to install Apache Zeppelin with a stable binary package, please 
visit http://zeppelin.apache.org/download.html";>Apache Zeppelin 
download Page. 
+Stable binary packages are available on the http://zeppelin.apache.org/download.html";>Apache Zeppelin Download 
Page. You can download a default package with all interpreters, or you can 
download the net-install package, which lets you choose which 
interpreters to install.
 
-If you have downloaded netinst binary, install additional 
interpreters before you start Zeppelin. Or simply run 
./bin/install-interpreter.sh --all.
+If you downloaded the default package, just unpack it in a directory of 
your choice and you're ready to go. If you downloaded the 
net-install package, you should manually install additional 
interpreters first. You can also install everything by running 
./bin/install-interpreter.sh --all.
 
-After unpacking, jump to Starting Apache Zeppelin 
with Command Line section.
+After unpacking, jump to the Starting Apache Zeppelin 
with Command Line.
 
 Building from Source
 
-If you want to build from the source, the software below needs to be 
installed on your system.
+If you want to build from source, you must first install the following 
dependencies:
 
 
   
@@ -249,7 +247,7 @@ Although it can be unstable somehow sinc
   
   
 Git
-
+(Any Version)
   
   
 Maven
@@ -257,17 +255,17 @@ Although it can be unstable somehow sinc
   
 
 
-If you don't have it installed yet, please check https://github.com/apache/zeppelin/blob/master/README.md#before-build";>Before
 Build section and follow step by step instructions from there.
+If you haven't installed Git and Maven yet, check the https://github.com/apache/zeppelin/blob/master/README.md#before-build";>Before
 Build section and follow the step by step instructions from there.
 
-1. Clone Apache Zeppelin repository
+1. Clone the Apache Zeppelin repository
 git clone https://github.com/apache/zeppelin.git
 
 2. Build source with options
 
-Each interpreters requires different build options. For the further 
information about options, please see https://github.com/apache/zeppelin#build";>Build section.
+Each interpreter requires different build options. For more information 
about build options, please see the https://github.com/apache/zeppelin#build";>Build section.
 mvn clean package -DskipTests [Options]
 
-Here are some examples with several options
+Here are some examples with several options:
 # build with spark-2.0, scala-2.11
 ./dev/change_scala_version.sh 2.11
 mvn clean package -Pspark-2.0 -Phadoop-2.4 -Pyarn -Ppyspark -Psparkr 
-Pscala-2.11
@@ -284,19 +282,21 @@ mvn clean package -Pspark-1.5 -Dhadoop.v
 # with MapR
 mvn clean package -Pspark-1.5 -Pmapr50 -DskipTests
 
-For the furth

zeppelin git commit: [Hot Fix] Add a newline for bullet list markdown rendering

2016-09-25 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 3021d4641 -> 2dc26f27b


[Hot Fix] Add a newline for bullet list markdown rendering

### What is this PR for?
After #1416 merged, the bullet list in 
https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/install/install.html#installation
 isn't properly rendered now. It needs an extra newline.

### What type of PR is it?
Hot Fix

### Screenshots (if appropriate)
 - Before
https://cloud.githubusercontent.com/assets/10060731/18813621/5e10c2dc-833b-11e6-8410-bb1d37d8228b.png";>

 - After
https://cloud.githubusercontent.com/assets/10060731/18813622/6705b744-833b-11e6-8fab-3a69d8585c7a.png";>

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1457 from AhyoungRyu/fix/install.md and squashes the following commits:

73c1a4f [AhyoungRyu] Add a newline for bullet list markdown rendering


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

Branch: refs/heads/master
Commit: 2dc26f27be8557b70b22941c30a529db6b011bb4
Parents: 3021d46
Author: AhyoungRyu 
Authored: Sun Sep 25 16:14:39 2016 +0900
Committer: AhyoungRyu 
Committed: Sun Sep 25 19:10:14 2016 +0900

--
 docs/install/install.md | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/2dc26f27/docs/install/install.md
--
diff --git a/docs/install/install.md b/docs/install/install.md
index 94a35cb..dc9cc37 100644
--- a/docs/install/install.md
+++ b/docs/install/install.md
@@ -45,6 +45,7 @@ Apache Zeppelin officially supports and is tested on the 
following environments:
 
 
 To install Apache Zeppelin, you have two options:
+
 * You can [download pre-built binary packages](#downloading-binary-package) 
from the archive. This is usually easier than building from source, and you can 
download the latest stable version (or older versions, if necessary).
 * You can also [build from source](#building-from-source). This gives you a 
development version of Zeppelin, which is more unstable but has new features.
 



svn commit: r1762176 - /zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html

2016-09-25 Thread ahyoungryu
Author: ahyoungryu
Date: Sun Sep 25 10:14:35 2016
New Revision: 1762176

URL: http://svn.apache.org/viewvc?rev=1762176&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html?rev=1762176&r1=1762175&r2=1762176&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html Sun Sep 25 10:14:35 
2016
@@ -224,9 +224,12 @@ limitations under the License.
   
 
 
-To install Apache Zeppelin, you have two options:
-* You can download pre-built binary 
packages from the archive. This is usually easier than building from 
source, and you can download the latest stable version (or older versions, if 
necessary).
-* You can also build from source. This 
gives you a development version of Zeppelin, which is more unstable but has new 
features.
+To install Apache Zeppelin, you have two options:
+
+
+You can download pre-built binary 
packages from the archive. This is usually easier than building from 
source, and you can download the latest stable version (or older versions, if 
necessary).
+You can also build from source. This 
gives you a development version of Zeppelin, which is more unstable but has new 
features.
+
 
 Downloading Binary Package
 




zeppelin git commit: [ZEPPELIN-1279] Zeppelin with CDH5.x docker document.

2016-09-29 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master b24491baf -> c7ce709f3


[ZEPPELIN-1279] Zeppelin with CDH5.x docker document.

### What is this PR for?
This PR is for the documentation of running zeppelin with CDH docker 
environment.
and This PR is the part of https://issues.apache.org/jira/browse/ZEPPELIN-1198.

Tested CDH5.7 on ubuntu.

### What type of PR is it?
Documentation

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1281

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: astroshim 
Author: AhyoungRyu 
Author: HyungSung 

Closes #1451 from astroshim/ZEPPELIN-1281 and squashes the following commits:

5dcb8c1 [astroshim] move configurations to right path and add excluding 
rat-plugin
09408e3 [HyungSung] Merge pull request #11 from AhyoungRyu/ZEPPELIN-1281-ahyoung
850119c [AhyoungRyu] Generate TOC & change some sentences
e687a53 [AhyoungRyu] Replace zeppelin_with_cdh.png to crop the url part
cc9a023 [AhyoungRyu] Remove main title link anchor
b525f68 [astroshim] separate cdh doc with spark_cluster_mode.md
e66993f [astroshim] fix doc
a7b5b2d [astroshim] cdh docker environment


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

Branch: refs/heads/master
Commit: c7ce709f356c5d007e12824ff9214e9e95905d84
Parents: b24491b
Author: astroshim 
Authored: Tue Sep 27 11:24:34 2016 +0900
Committer: AhyoungRyu 
Committed: Thu Sep 29 21:01:31 2016 +0900

--
 docs/_includes/themes/zeppelin/_navigation.html |   1 +
 .../img/docs-img/cdh_yarn_applications.png  | Bin 0 -> 124719 bytes
 .../zeppelin/img/docs-img/zeppelin_with_cdh.png | Bin 0 -> 41727 bytes
 docs/index.md   |   1 +
 docs/install/cdh.md | 100 +++
 pom.xml |   1 +
 .../cdh/hdfs_conf/core-site.xml |   6 ++
 .../cdh/hdfs_conf/hdfs-site.xml |  64 
 .../cdh/hdfs_conf/mapred-site.xml   |   6 ++
 .../cdh/hdfs_conf/yarn-site.xml |  26 +
 10 files changed, 205 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c7ce709f/docs/_includes/themes/zeppelin/_navigation.html
--
diff --git a/docs/_includes/themes/zeppelin/_navigation.html 
b/docs/_includes/themes/zeppelin/_navigation.html
index e86ffb7..4a7e75b 100644
--- a/docs/_includes/themes/zeppelin/_navigation.html
+++ b/docs/_includes/themes/zeppelin/_navigation.html
@@ -108,6 +108,7 @@
 Zeppelin
 on Spark Cluster Mode (Standalone)
 Zeppelin
 on Spark Cluster Mode (YARN)
 Zeppelin
 on Spark Cluster Mode (Mesos)
+Zeppelin on 
CDH
 
 Contibute
 Writing 
Zeppelin Interpreter

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c7ce709f/docs/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png
--
diff --git a/docs/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png 
b/docs/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png
new file mode 100644
index 000..980ea5b
Binary files /dev/null and 
b/docs/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png differ

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c7ce709f/docs/assets/themes/zeppelin/img/docs-img/zeppelin_with_cdh.png
--
diff --git a/docs/assets/themes/zeppelin/img/docs-img/zeppelin_with_cdh.png 
b/docs/assets/themes/zeppelin/img/docs-img/zeppelin_with_cdh.png
new file mode 100644
index 000..9dae220
Binary files /dev/null and 
b/docs/assets/themes/zeppelin/img/docs-img/zeppelin_with_cdh.png differ

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c7ce709f/docs/index.md
--
diff --git a/docs/index.md b/docs/index.md
index 8c2ce95..0f25750 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -172,6 +172,7 @@ Join to our [Mailing 
list](https://zeppelin.apache.org/community.html) and repor
   * [Zeppelin on Spark Cluster Mode (Standalone via 
Docker)](./install/spark_cluster_mode.html#spark-standalone-mode)
   * [Zeppelin on Spark Cluster Mode (YARN via 
Docker)](./install/spark_cluster_mode.html#spark-on-yarn-mode)
   * [Zeppelin on Spark Cluster Mode (Mesos via 
Docker)](./install/spark_cluster_mode.html#spark-

svn commit: r1762759 [2/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/img/docs-img/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ st

2016-09-29 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json?rev=1762759&r1=1762758&r2=1762759&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json Thu Sep 29 12:29:05 2016
@@ -4,7 +4,7 @@
 
 "/atom.xml": {
   "title": "Atom Feed",
-  "content"  : " Apache Zeppelin   2016-09-28T12:58:09+09:00 
http://zeppelin.apache.orgThe Apache Software Foundation   
d...@zeppelin.apache.org  ",
+  "content"  : " Apache Zeppelin   2016-09-29T21:23:46+09:00 
http://zeppelin.apache.orgThe Apache Software Foundation   
d...@zeppelin.apache.org  ",
   "url": " /atom.xml",
   "group": "",
   "excerpt": ""
@@ -91,6 +91,17 @@
   
   
 
+"/install/cdh.html": {
+  "title": "Apache Zeppelin on CDH",
+  "content"  : "Apache Zeppelin on CDH1. 
Import Cloudera QuickStart Docker imageCloudera has officially provided CDH 
Docker Hub in their own container. Please check this guide page for more 
information.You can import the Docker image by pulling it from Cloudera Docker 
Hub.docker pull cloudera/quickstart:latest2. Run dockerdocker run -it  -p 80:80 
 -p 4040:4040  -p 8020:8020  -p 8022:8022  -p 8030:8030  -p 8032:8032  -p 
8033:8033  -p 8040:8040  -p 
 8042:8042  -p 8088:8088  -p 8480:8480  -p 8485:8485  -p :  -p 
9083:9083  -p 10020:10020  -p 10033:10033  -p 18088:18088  -p 19888:19888  -p 
25000:25000  -p 25010:25010  -p 25020:25020  -p 50010:50010  -p 50020:50020  -p 
50070:50070  -p 50075:50075  -h quickstart.cloudera --privileged=true  
agitated_payne_backup /usr/bin/docker-quickstart;3. Verify running CDHTo verify 
the application is running well, check the web UI for HDFS on 
http://<hostname>:50070/ and YARN on 
http://<hostname>:8088/cluster.4. Configure Spark interpreter in 
ZeppelinSet following configurations to conf/zeppelin-env.sh.export 
MASTER=yarn-clientexport HADOOP_CONF_DIR=[your_hadoop_conf_path]export 
SPARK_HOME=[your_spark_home_path]HADOOP_CONF_DIR(Hadoop configuration path) is 
defined in /scripts/docker/spark-cluster-managers/cdh/hdfs_conf.Don't 
forget to set Spark master as yarn-client in Zeppelin Interpreters setting page 
like below.5. Run Zeppelin with Spark interpreterA
 fter running a single paragraph with Spark interpreter in Zeppelin,browse 
http://<hostname>:8088/cluster/apps to check Zeppelin application 
is running well or not.",
+  "url": " /install/cdh.html",
+  "group": "install",
+  "excerpt": "This document will guide you how you can build and configure 
the environment on CDH with Apache Zeppelin using docker scripts."
+}
+,
+
+  
+
 "/install/install.html": {
   "title": "Quick Start",
   "content"  : "Quick StartWelcome to Apache 
Zeppelin! On this page are instructions to help you get 
started.InstallationApache Zeppelin officially supports and is tested on the 
following environments:  NameValueOracle JDK1.7  (set 
JAVA_HOME)OSMac OSX  Ubuntu 14.X  CentOS 6.X  Windows 7 Pro SP1  To 
install Apache Zeppelin, you have two options:You can download pre-built binary 
packages from the archive. This is usua
 lly easier than building from source, and you can download the latest stable 
version (or older versions, if necessary).You can also build from source. This 
gives you a development version of Zeppelin, which is more unstable but has new 
features.Downloading Binary PackageStable binary packages are available on the 
Apache Zeppelin Download Page. You can download a default package with all 
interpreters, or you can download the net-install package, which lets you 
choose which interpreters to install.If you downloaded the default package, 
just unpack it in a directory of your cho

svn commit: r1762759 [1/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/img/docs-img/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ st

2016-09-29 Thread ahyoungryu
Author: ahyoungryu
Date: Thu Sep 29 12:29:05 2016
New Revision: 1762759

URL: http://svn.apache.org/viewvc?rev=1762759&view=rev
Log: (empty)

Added:

zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png
   (with props)

zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/zeppelin_with_cdh.png
   (with props)
zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontributewebsite.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelinapplication.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelininterpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/basicdisplaysystem.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/index.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/upgrade.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/yarn_install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/alluxio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/beam.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/cassandra.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/elasticsearch.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/flink.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hbase.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hdfs.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hive.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/lens.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/postgresql.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/python.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/r.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/shell.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dependencymanagement.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicinterpreterload.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterinstallation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreters.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rss.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/screenshots.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Added: 
zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png?rev=1762759&view=auto
==
Binary file - no diff available.

Propchange: 
zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/cdh_yarn_applications.png
--
svn:mime-type = application/octet-stream

Added: 
zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/zeppelin_with_cdh.png
URL: 
http://svn.apache.org/viewvc/zeppe

zeppelin git commit: [MINOR] Rearrange the contents in "About Zeppelin"

2016-10-06 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master a66b01998 -> de2d6e495


[MINOR] Rearrange the contents in "About Zeppelin"

### What is this PR for?
Just rearranged the placement of Zeppelin logo, title and text in "About 
Zeppelin". In the mobile screen as well.

### What type of PR is it?
Improvement

### What is the Jira issue?
No Jira issue for this

### How should this be tested?
To check this change in your local, build only `zeppelin-web` with `./grunt 
build` and then browse with `./grunt serve`.

### Screenshots (if appropriate)
- **Before**
  1. desktop & tablet screen
https://cloud.githubusercontent.com/assets/10060731/18860571/8aa85aec-84b9-11e6-9112-b6869291f8f0.png";
 width="500px">

  2. mobile screen
https://cloud.githubusercontent.com/assets/10060731/18860576/91f623a6-84b9-11e6-96ba-e34c43221143.png";
 width="300px">

- **After**
  1. desktop & tablet screen
https://cloud.githubusercontent.com/assets/10060731/19140869/b5ab79e0-8bcb-11e6-946f-df63045e6f1e.png";
 width="500px">

  2. mobile screen
https://cloud.githubusercontent.com/assets/10060731/19140879/c034b476-8bcb-11e6-977b-29deb6776f13.png";
 width="300px">

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1461 from AhyoungRyu/improve/aboutZeppelin and squashes the following 
commits:

16421c9 [AhyoungRyu] Add a newline
a8628c8 [AhyoungRyu] Apply responsive design
81ef021 [AhyoungRyu] Rearrange 'About Zeppelin'


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

Branch: refs/heads/master
Commit: de2d6e4956d5a6535628742c373e65c54891ee02
Parents: a66b019
Author: AhyoungRyu 
Authored: Thu Oct 6 13:51:10 2016 +0900
Committer: AhyoungRyu 
Committed: Thu Oct 6 18:32:53 2016 +0900

--
 zeppelin-web/src/app/home/home.css | 27 -
 zeppelin-web/src/components/navbar/navbar.html |  6 ++---
 2 files changed, 18 insertions(+), 15 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/de2d6e49/zeppelin-web/src/app/home/home.css
--
diff --git a/zeppelin-web/src/app/home/home.css 
b/zeppelin-web/src/app/home/home.css
index 8b37eb8..a2fe81c 100644
--- a/zeppelin-web/src/app/home/home.css
+++ b/zeppelin-web/src/app/home/home.css
@@ -804,24 +804,27 @@ This part should be removed when new version of bootstrap 
handles this issue.
   background: #3071a9;
 }
 
-.about{
+/* About Zeppelin */
+.about {
   height: 200px;
-  padding-top: 20px;
-  padding-left: 20px;
+  padding: 25px;
 }
 
 .about .logo {
-  width: 20%;
-  float: left;
+  padding-top: 30px;
 }
 
-.about .content{
-  float: left;
-  padding-left: 10px;
-  top: -30px;
-  position: relative;
+.about .logo img {
+  width: 95%;
 }
 
-.about .logo img{
-  width: 100%;
+.about .content {
+  text-align: center;
+}
+
+.about .content h3 {
+  font-family: 'Patua One';
+  color: #3071A9;
+  font-size: 30px;
+  margin: 0 auto;
 }

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/de2d6e49/zeppelin-web/src/components/navbar/navbar.html
--
diff --git a/zeppelin-web/src/components/navbar/navbar.html 
b/zeppelin-web/src/components/navbar/navbar.html
index 109e328..0e64ad4 100644
--- a/zeppelin-web/src/components/navbar/navbar.html
+++ b/zeppelin-web/src/components/navbar/navbar.html
@@ -114,11 +114,11 @@ limitations under the License.
   
   
 
-
-  
+
+  
 
   
-  
+  
 Apache Zeppelin
 
 Version



zeppelin git commit: [DOCS] Fix dead link in docs/datasource_authorization.md

2016-10-09 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 702666480 -> 821b61bb6


[DOCS] Fix dead link in docs/datasource_authorization.md

### What is this PR for?
A link for `the community interpreters` in 
[here](http://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html#please-note)
 is pointing to 
`../manual/interpreterinstallation.md#available-community-managed-interpreters` 
now. It should be 
`../manual/interpreterinstallation.html#available-community-managed-interpreters`.

### What type of PR is it?
Bug Fix & Documenation

### What is the Jira issue?
no Jira issue

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1498 from AhyoungRyu/fix/deadlink and squashes the following commits:

f8e8835 [AhyoungRyu] community interpreters -> community managed interpreters
0260d30 [AhyoungRyu] Fix deadlink in datasource_authorization.md


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

Branch: refs/heads/master
Commit: 821b61bb6bdc8ed0622aad04b3c6918ee73f52c5
Parents: 7026664
Author: AhyoungRyu 
Authored: Sun Oct 9 10:55:36 2016 +0900
Committer: AhyoungRyu 
Committed: Mon Oct 10 11:00:00 2016 +0900

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


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/821b61bb/docs/security/datasource_authorization.md
--
diff --git a/docs/security/datasource_authorization.md 
b/docs/security/datasource_authorization.md
index edf39fb..60bf086 100644
--- a/docs/security/datasource_authorization.md
+++ b/docs/security/datasource_authorization.md
@@ -57,5 +57,5 @@ You have to store the password information for users.
 
 ## Please note
 As a first step of data source authentication feature, 
[ZEPPELIN-828](https://issues.apache.org/jira/browse/ZEPPELIN-828) was proposed 
and implemented in Pull Request 
[#860](https://github.com/apache/zeppelin/pull/860).
-Currently, only customized 3rd party interpreters can use this feature. We are 
planning to apply this mechanism to [the community 
interpreters](../manual/interpreterinstallation.md#available-community-managed-interpreters)
 in the near future. 
+Currently, only customized 3rd party interpreters can use this feature. We are 
planning to apply this mechanism to [the community managed 
interpreters](../manual/interpreterinstallation.html#available-community-managed-interpreters)
 in the near future. 
 Please keep track 
[ZEPPELIN-1070](https://issues.apache.org/jira/browse/ZEPPELIN-1070). 



svn commit: r1764016 - /zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html

2016-10-09 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Oct 10 02:03:49 2016
New Revision: 1764016

URL: http://svn.apache.org/viewvc?rev=1764016&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html

Modified: 
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html?rev=1764016&r1=1764015&r2=1764016&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html 
Mon Oct 10 02:03:49 2016
@@ -80,6 +80,7 @@
 
 More
 Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
@@ -244,7 +245,7 @@ The interpret method takes the user stri
 Please note
 
 As a first step of data source authentication feature, https://issues.apache.org/jira/browse/ZEPPELIN-828";>ZEPPELIN-828 was 
proposed and implemented in Pull Request https://github.com/apache/zeppelin/pull/860";>#860.
-Currently, only customized 3rd party interpreters can use this feature. We are 
planning to apply this mechanism to the
 community interpreters in the near future. 
+Currently, only customized 3rd party interpreters can use this feature. We are 
planning to apply this mechanism to the
 community managed interpreters in the near future. 
 Please keep track https://issues.apache.org/jira/browse/ZEPPELIN-1070";>ZEPPELIN-1070. 

 
   




zeppelin git commit: [ZEPPELIN-1550] fixed 'add from URL' button

2016-10-16 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 3afd4449c -> e5f211b7b


[ZEPPELIN-1550] fixed 'add from URL' button

### What is this PR for?

fixed 'add from URL' button and disable backdrop function.

### What type of PR is it?
Bug Fix

### Todos
None

### What is the Jira issue?
[ZEPPELIN-1550](https://issues.apache.org/jira/browse/ZEPPELIN-1550)

### How should this be tested?
click 'Import note' -> click 'Add from URL' -> click 'x' button -> open the 
dialog again -> it shows the URL page not the initial page.

### Screenshots (if appropriate)

 - before
![import_note_window](https://cloud.githubusercontent.com/assets/7574765/19379302/36a0fc12-922c-11e6-9018-c67893305005.gif)

 - after
![after_2](https://cloud.githubusercontent.com/assets/7574765/19379491/2c5a072a-922d-11e6-8804-55c9766b3c5c.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Yunho Maeng 

Closes #1523 from yunho0130/ZEPPELIN-1550 and squashes the following commits:

a045928 [Yunho Maeng] fixed 'add from URL' button and disable backdrop fuction 
when user use modal window


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

Branch: refs/heads/master
Commit: e5f211b7ba9c6282a3c50228ac913a174a830dbf
Parents: 3afd444
Author: Yunho Maeng 
Authored: Fri Oct 14 16:29:52 2016 +0900
Committer: AhyoungRyu 
Committed: Mon Oct 17 14:08:41 2016 +0900

--
 .../src/components/noteName-import/note-import-dialog.html   | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/e5f211b7/zeppelin-web/src/components/noteName-import/note-import-dialog.html
--
diff --git 
a/zeppelin-web/src/components/noteName-import/note-import-dialog.html 
b/zeppelin-web/src/components/noteName-import/note-import-dialog.html
index 65c610e..96d21ce 100644
--- a/zeppelin-web/src/components/noteName-import/note-import-dialog.html
+++ b/zeppelin-web/src/components/noteName-import/note-import-dialog.html
@@ -13,13 +13,15 @@ limitations under the License.
 -->
 
   
-
+   tabindex="-1" data-backdrop="static" data-keyboard="false">
+
 
   
   
 
-  ×
+  
+  ×
+
   Import new note
 
 



zeppelin git commit: [ZEPPELIN-1552] Search button goes to next line when display's width shortens.

2016-10-16 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master e5f211b7b -> 201d60122


[ZEPPELIN-1552] Search button goes to next line when display's width shortens.

### What is this PR for?
In document page(http://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/), the search 
button goes to next line when display's width shortens.

### What type of PR is it?
[Improvement]

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1552

### Screenshots (if appropriate)
https://cloud.githubusercontent.com/assets/6567102/19398321/0d76a1c4-9287-11e6-86e0-9f120c00b143.png";>
when (768px ≤ width < 992px)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: hyonzin 
Author: AhyoungRyu 
Author: 정현진 

Closes #1525 from hyonzin/ZEPPELIN-1552 and squashes the following commits:

f1d97ef [AhyoungRyu] Fix search icon's placement in small browser
244992d [정현진] Straighten wrong term
97d1bdf [hyonzin] Fix search link button to not goes next line when display's 
width shortens


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

Branch: refs/heads/master
Commit: 201d60122429679e2b3d4c7cb6bb4fabbebef88d
Parents: e5f211b
Author: hyonzin 
Authored: Sat Oct 15 12:22:18 2016 +0900
Committer: AhyoungRyu 
Committed: Mon Oct 17 15:39:08 2016 +0900

--
 docs/_includes/themes/zeppelin/_navigation.html | 2 --
 docs/assets/themes/zeppelin/css/style.css   | 4 
 2 files changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/201d6012/docs/_includes/themes/zeppelin/_navigation.html
--
diff --git a/docs/_includes/themes/zeppelin/_navigation.html 
b/docs/_includes/themes/zeppelin/_navigation.html
index 9abcdb1..1b1fdbf 100644
--- a/docs/_includes/themes/zeppelin/_navigation.html
+++ b/docs/_includes/themes/zeppelin/_navigation.html
@@ -119,8 +119,6 @@
 How to contribute 
(website)
   
 
-  
-  
 
   
 

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/201d6012/docs/assets/themes/zeppelin/css/style.css
--
diff --git a/docs/assets/themes/zeppelin/css/style.css 
b/docs/assets/themes/zeppelin/css/style.css
index 98b3895..fc821a2 100644
--- a/docs/assets/themes/zeppelin/css/style.css
+++ b/docs/assets/themes/zeppelin/css/style.css
@@ -619,6 +619,10 @@ and (max-width: 1024px) {
   .navbar-collapse.collapse {
 padding-right: 0;
   }
+
+  .navbar-fixed-top > .container {
+width: 800px;
+  }
 }
 
 /* master branch docs dropdown menu */



svn commit: r1765220 [15/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html Mon Oct 17 08:13:48 
2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagrant 
VM
- 

svn commit: r1765220 [6/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagrant 
VM
- 

svn commit: r1765220 [14/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppel

svn commit: r1765220 [2/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html Mon 
Oct 17 08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Adv

svn commit: r1765220 [11/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-  

svn commit: r1765220 [10/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagrant 
VM
- 

svn commit: r1765220 [9/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagran

svn commit: r1765220 [3/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html Mon Oct 17 08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagrant 
VM
-Zeppelin
 on S

svn commit: r1765220 [5/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagran

svn commit: r1765220 [8/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagran

svn commit: r1765220 [1/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Oct 17 08:13:48 2016
New Revision: 1765220

URL: http://svn.apache.org/viewvc?rev=1765220&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontributewebsite.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelinapplication.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelininterpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/basicdisplaysystem.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/index.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/upgrade.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/yarn_install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/alluxio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/beam.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/cassandra.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/elasticsearch.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/flink.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hbase.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hdfs.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hive.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/lens.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/postgresql.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/python.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/r.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/shell.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dependencymanagement.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicinterpreterload.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterinstallation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreters.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html

zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rss.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/screenshots.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml Mon Oct 17 08:13:48 2016
@@ -4,7 +4,7 @@
  Apache Zeppelin
  http://zeppelin.apache.org/"; rel="self"/>
  http://zeppelin.apache.org"/>
- 2016-10-17T13:08:38+09:00
+ 2016-10-16T11:49:00+09:00
  http://zeppelin.apache.org
  
The Apache Software Foundation

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html?r

svn commit: r1765220 [12/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
 (original)
+++ 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
 Mon Oct 17 08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+  

svn commit: r1765220 [13/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-  

svn commit: r1765220 [7/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppelin on Vagrant 
VM
- 

svn commit: r1765220 [4/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html?rev=1765220&r1=1765219&r2=1765220&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html Mon Oct 17 
08:13:48 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,111 +65,110 @@
 
   Quick 
Start 
   
-What is Apache 
Zeppelin ?
+What is Apache Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore Zeppelin 
UI
-Tutorial
+Install
+Configuration
+Explore 
Zeppelin UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish 
your Paragraph
-Customize Zeppelin 
Homepage
+Dynamic Form
+Publish your 
Paragraph
+Customize 
Zeppelin Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install
 Zeppelin with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install Zeppelin 
with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Pig
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git
 Storage
-S3 
Storage
-Azure
 Storage
-ZeppelinHub
 Storage
+Git 
Storage
+S3 
Storage
+Azure Storage
+ZeppelinHub Storage
 
 REST API
-Interpreter 
API
-Notebook API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook 
API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data Source 
Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data 
Source Authorization
 
 Advanced
-Zeppel

svn commit: r1765221 [6/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagrant VM
- 

svn commit: r1765221 [10/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagrant VM
- 

svn commit: r1765221 [2/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html Mon 
Oct 17 08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Adv

svn commit: r1765221 [9/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagra

svn commit: r1765221 [12/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
 (original)
+++ 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
 Mon Oct 17 08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+  

svn commit: r1765221 [15/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html Mon Oct 17 08:18:07 
2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagrant VM
- 

svn commit: r1765221 [3/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html Mon Oct 17 08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagrant VM
-Zeppelin on Sp

svn commit: r1765221 [14/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppel

svn commit: r1765221 [8/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagra

svn commit: r1765221 [7/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagrant VM
- 

svn commit: r1765221 [5/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppelin on 
Vagra

svn commit: r1765221 [1/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Oct 17 08:18:07 2016
New Revision: 1765221

URL: http://svn.apache.org/viewvc?rev=1765221&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/css/style.css
zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontributewebsite.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelinapplication.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelininterpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/basicdisplaysystem.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/index.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/upgrade.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/yarn_install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/alluxio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/beam.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/cassandra.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/elasticsearch.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/flink.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hbase.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hdfs.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hive.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/lens.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/pig.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/postgresql.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/python.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/r.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/shell.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dependencymanagement.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicinterpreterload.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterinstallation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreters.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html

zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rss.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/screenshots.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/css/style.css
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/css/style.css?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/css/style.css 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/css/style.css Mon 
Oct 17 08:18:07 2016
@@ -619,6 +619,10 @@ and (max-width: 1024px) {
   .navbar-collapse.collapse {
 padding-right: 0;
   }
+
+  .navbar-fixed-top > .container {
+width: 800px;
+  }
 }
 
 /* master branch docs dropdown menu */

Modified: zeppelin/site/

svn commit: r1765221 [13/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-  

svn commit: r1765221 [4/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-Zeppel

svn commit: r1765221 [11/15] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/css/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-10-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html?rev=1765221&r1=1765220&r2=1765221&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html Mon Oct 17 
08:18:07 2016
@@ -18,9 +18,9 @@
 
 
 
-
-
- 
+
+
+ 
 
 
 https://code.jquery.com/jquery-1.10.2.min.js";>
-
-
-
-
-
-
+
+
+
+
+
+
 
 
-
-
+
+
   
 
   
@@ -54,7 +54,7 @@
 
 
   
-  
+  
 
 Zeppelin
 0.7.0-SNAPSHOT
@@ -65,110 +65,109 @@
 
   Quick 
Start 
   
-What is Apache Zeppelin ?
+What is Apache 
Zeppelin ?
 
 Getting Started
-Install
-Configuration
-Explore 
Zeppelin UI
-Tutorial
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
 
 Basic Feature Guide
-Dynamic Form
-Publish your 
Paragraph
-Customize 
Zeppelin Homepage
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
 
 More
-Upgrade Zeppelin 
Version
-Install Zeppelin 
with Flink and Spark Clusters Tutorial
+Upgrade Zeppelin 
Version
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
   
 
 
   Interpreter 
   
-Overview
+Overview
 
 Usage
-Interpreter 
Installation
-
-Interpreter 
Dependency Management
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
 
 Available 
Interpreters
-Alluxio
-Beam
-BigQuery
-Cassandra
-Elasticsearch
-Flink
-Geode
-HBase
-HDFS
-Hive
-Ignite
-JDBC
-Lens
-Livy
-Markdown
-Python
-Postgresql, 
HAWQ
-R
-Scalding
-Shell
-Spark
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Shell
+Spark
   
 
 
   Display System 
   
 Basic Display System
-Text
-Html
-Table
+Text
+Html
+Table
 
 Angular API
-Angular 
(backend API)
-Angular 
(frontend API)
+Angular 
(backend API)
+Angular 
(frontend API)
   
 
 
   More
   
 Notebook Storage
-Git 
Storage
-S3 
Storage
-Azure Storage
-ZeppelinHub Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
 
 REST API
-Interpreter 
API
-Notebook 
API
-Configuration 
API
-Credential 
API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
 
 Security
-Authentication for 
NGINX
-Shiro 
Authentication
-Notebook 
Authorization
-Data 
Source Authorization
+Authentication for 
NGINX
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
 
 Advanced
-  

zeppelin git commit: [MINOR] High definition build status badge

2016-10-31 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 99b975f5c -> fd545e295


[MINOR] High definition build status badge

### What is this PR for?
CI badge has low definition now. This change will use .svg image as badge 
(instead of .png!)

before:
![image](https://secure.travis-ci.org/apache/zeppelin.png?branch=master)

after:
![image](https://travis-ci.org/apache/zeppelin.svg?branch=master)

### What type of PR is it?
[Documentation]

Author: Jun Kim 

Closes #1570 from tae-jun/patch-1 and squashes the following commits:

8cc8c5d [Jun Kim] [MINOR] High definition build status badge


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

Branch: refs/heads/master
Commit: fd545e2952144b45917504af8337401535ab2778
Parents: 99b975f
Author: Jun Kim 
Authored: Mon Oct 31 11:17:09 2016 +0900
Committer: ahyoungryu 
Committed: Tue Nov 1 14:29:30 2016 +0900

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


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/fd545e29/README.md
--
diff --git a/README.md b/README.md
index c1deb88..be53b55 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
 
 **Documentation:** [User 
Guide](http://zeppelin.apache.org/docs/latest/index.html)
 **Mailing Lists:** [User and Dev mailing 
list](http://zeppelin.apache.org/community.html)
-**Continuous Integration:** [![Build 
Status](https://secure.travis-ci.org/apache/zeppelin.png?branch=master)](https://travis-ci.org/apache/zeppelin)
 
+**Continuous Integration:** [![Build 
Status](https://travis-ci.org/apache/zeppelin.svg?branch=master)](https://travis-ci.org/apache/zeppelin)
 
 **Contributing:** [Contribution 
Guide](https://zeppelin.apache.org/contribution/contributions.html)
 **Issue Tracker:** [Jira](https://issues.apache.org/jira/browse/ZEPPELIN)
 **License:** [Apache 
2.0](https://github.com/apache/zeppelin/blob/master/LICENSE)



zeppelin git commit: [gh-pages] Add ignite version info to supported interpreters table

2016-11-04 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/gh-pages 619d8ad79 -> 1f2d8a937


[gh-pages] Add ignite version info to supported interpreters table

### What is this PR for?
As described in [ignite 
docs](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/interpreter/ignite.html#installing-and-running-ignite-example),
 to use Scala code with Ignite interpreter, the user should use the Ignite 
version same as Zeppelin provides. So the below info should be provided in 
somewhere.

```
Zeppelin-0.5.5: Ignite-1.4.0
Zeppelin-0.5.6: Ignite-1.5.0.final
Zeppelin-0.6.0: Ignite-1.6.0
Zeppelin-0.6.1&0.6.2: Ignite-1.7.0
```

### What type of PR is it?
Documentation

### What is the Jira issue?
no Jira issue for this

### Screenshots (if appropriate)
![screen shot 2016-11-03 at 11 37 09 
am](https://cloud.githubusercontent.com/assets/10060731/19954332/b8690e68-a1ba-11e6-9649-d7b841e832ea.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1584 from AhyoungRyu/update/igniteSection and squashes the following 
commits:

28cf050 [AhyoungRyu] Add ignite version info in supported interpreters table


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

Branch: refs/heads/gh-pages
Commit: 1f2d8a93713f5934535aa8bddd66a150f5684996
Parents: 619d8ad
Author: AhyoungRyu 
Authored: Thu Nov 3 11:38:54 2016 +0900
Committer: ahyoungryu 
Committed: Fri Nov 4 20:34:47 2016 +0900

--
 supported_interpreters.md | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/1f2d8a93/supported_interpreters.md
--
diff --git a/supported_interpreters.md b/supported_interpreters.md
index 8505d1d..d4b86f8 100644
--- a/supported_interpreters.md
+++ b/supported_interpreters.md
@@ -235,11 +235,12 @@ Please check the below table before you download Zeppelin 
package.
   
 
   https://ignite.apache.org/"; target="_blank">Ignite
+  Please use the next Ignite version to use 
Scala code
 
-O
-O
-O
-O
+1.7.0
+1.6.0
+1.5.0.final
+1.4.0
   
   
 



svn commit: r1768020 - /zeppelin/site/supported_interpreters.html

2016-11-04 Thread ahyoungryu
Author: ahyoungryu
Date: Fri Nov  4 11:53:32 2016
New Revision: 1768020

URL: http://svn.apache.org/viewvc?rev=1768020&view=rev
Log: (empty)

Modified:
zeppelin/site/supported_interpreters.html

Modified: zeppelin/site/supported_interpreters.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/supported_interpreters.html?rev=1768020&r1=1768019&r2=1768020&view=diff
==
--- zeppelin/site/supported_interpreters.html (original)
+++ zeppelin/site/supported_interpreters.html Fri Nov  4 11:53:32 2016
@@ -480,11 +480,12 @@ Please check the below table before you
   
 
   https://ignite.apache.org/"; target="_blank">Ignite
+  Please use the next Ignite version to use 
Scala code
 
-O
-O
-O
-O
+1.7.0
+1.6.0
+1.5.0.final
+1.4.0
   
   
 




zeppelin git commit: Ignite versions fixed

2016-11-10 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 19c07c2c8 -> a3c195a54


Ignite versions fixed

### What is this PR for?
This PR fixes Apache Ignite version mentions in interpreter documentation.

### What type of PR is it?
[Improvement]

Author: agura 
Author: agura 

Closes #1581 from agura/ignite-docs and squashes the following commits:

59fae20 [agura] Interpreter binding information link is fixed
33c9cac [agura] Minor fixes
d8710b3 [agura] Ignite versions fixed


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

Branch: refs/heads/master
Commit: a3c195a543ae149cab68e1f2e60748890fe300e1
Parents: 19c07c2
Author: agura 
Authored: Wed Nov 9 22:04:12 2016 +0300
Committer: ahyoungryu 
Committed: Thu Nov 10 14:30:45 2016 +0100

--
 docs/interpreter/ignite.md | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a3c195a5/docs/interpreter/ignite.md
--
diff --git a/docs/interpreter/ignite.md b/docs/interpreter/ignite.md
index a085dc1..677952f 100644
--- a/docs/interpreter/ignite.md
+++ b/docs/interpreter/ignite.md
@@ -33,8 +33,8 @@ You can use Zeppelin to retrieve distributed data from cache 
using Ignite SQL in
 ## Installing and Running Ignite example
 In order to use Ignite interpreters, you may install Apache Ignite in some 
simple steps:
 
-1. Download Ignite [source 
release](https://ignite.apache.org/download.html#sources) or [binary 
release](https://ignite.apache.org/download.html#binaries) whatever you want. 
But you must download Ignite as the same version of Zeppelin's. If it is not, 
you can't use scala code on Zeppelin. You can find ignite version in Zeppelin 
at the pom.xml which is placed under `path/to/your-Zeppelin/ignite/pom.xml` ( 
Of course, in Zeppelin source release ). Please check `ignite.version` 
.Currently, Zeppelin provides ignite only in Zeppelin source release. So, 
if you download Zeppelin binary release( 
`zeppelin-0.5.0-incubating-bin-spark-xxx-hadoop-xx` ), you can not use ignite 
interpreter on Zeppelin. We are planning to include ignite in a future binary 
release.
-2. Examples are shipped as a separate Maven project, so to start running you 
simply need to import provided 
/apache-ignite-fabric-1.2.0-incubating-bin/pom.xml file into your 
favourite IDE, such as Eclipse.
+1. Ignite provides examples only with source or binary release. Download 
Ignite [source release](https://ignite.apache.org/download.html#sources) or 
[binary release](https://ignite.apache.org/download.html#binaries) whatever you 
want. But you must download Ignite as the same version of Zeppelin's. If it is 
not, you can't use scala code on Zeppelin. The supported Ignite version is 
specified in [Supported Interpreter 
table](https://zeppelin.apache.org/supported_interpreters.html#ignite) for each 
Zeppelin release. If you're using Zeppelin master branch, please see 
`ignite.version` in `path/to/your-Zeppelin/ignite/pom.xml`.
+2. Examples are shipped as a separate Maven project, so to start running you 
simply need to import provided 
`/apache-ignite-fabric-{version}-bin/examples/pom.xml` file into your 
favourite IDE, such as Eclipse.
 
 * In case of Eclipse, Eclipse -> File -> Import -> Existing Maven Projects
 * Set examples directory path to Eclipse and select the pom.xml.
@@ -58,12 +58,12 @@ At the "Interpreters" menu, you may edit Ignite interpreter 
or create new one. Z
   
 ignite.addresses
 127.0.0.1:47500..47509
-Coma separated list of Ignite cluster hosts. See [Ignite Cluster 
Configuration](https://apacheignite.readme.io/v1.2/docs/cluster-config) section 
for more details.
+Coma separated list of Ignite cluster hosts. See [Ignite Cluster 
Configuration](https://apacheignite.readme.io/docs/cluster-config) section for 
more details.
   
   
 ignite.clientMode
 true
-You can connect to the Ignite cluster as client or server node. See 
[Ignite Clients vs. 
Servers](https://apacheignite.readme.io/v1.2/docs/clients-vs-servers) section 
for details. Use true or false values in order to connect in client or server 
mode respectively.
+You can connect to the Ignite cluster as client or server node. See 
[Ignite Clients vs. 
Servers](https://apacheignite.readme.io/docs/clients-vs-servers) section for 
details. Use true or false values in order to connect in client or server mode 
respectively.
   
   
 ignite.config.url
@@ -78,7 +78,7 @@ At the "Interpreters" menu, you may edit Ignite interpreter 
or create new

svn commit: r1769118 - /zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html

2016-11-10 Thread ahyoungryu
Author: ahyoungryu
Date: Thu Nov 10 13:49:11 2016
New Revision: 1769118

URL: http://svn.apache.org/viewvc?rev=1769118&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html?rev=1769118&r1=1769117&r2=1769118&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html Thu Nov 10 
13:49:11 2016
@@ -218,8 +218,8 @@ limitations under the License.
 In order to use Ignite interpreters, you may install Apache Ignite in some 
simple steps:
 
 
-Download Ignite https://ignite.apache.org/download.html#sources";>source release or https://ignite.apache.org/download.html#binaries";>binary release 
whatever you want. But you must download Ignite as the same version of 
Zeppelin's. If it is not, you can't use scala code on Zeppelin. You can 
find ignite version in Zeppelin at the pom.xml which is placed under 
path/to/your-Zeppelin/ignite/pom.xml ( Of course, in Zeppelin 
source release ). Please check ignite.version .Currently, 
Zeppelin provides ignite only in Zeppelin source release. So, if you download 
Zeppelin binary release( 
zeppelin-0.5.0-incubating-bin-spark-xxx-hadoop-xx ), you can not 
use ignite interpreter on Zeppelin. We are planning to include ignite in a 
future binary release.
-Examples are shipped as a separate Maven project, so to start running you 
simply need to import provided 
/apache-ignite-fabric-1.2.0-incubating-bin/pom.xml file into your 
favourite IDE, such as Eclipse.
+Ignite provides examples only with source or binary release. Download 
Ignite https://ignite.apache.org/download.html#sources";>source 
release or https://ignite.apache.org/download.html#binaries";>binary release 
whatever you want. But you must download Ignite as the same version of 
Zeppelin's. If it is not, you can't use scala code on Zeppelin. The 
supported Ignite version is specified in https://zeppelin.apache.org/supported_interpreters.html#ignite";>Supported 
Interpreter table for each Zeppelin release. If you're using Zeppelin 
master branch, please see ignite.version in 
path/to/your-Zeppelin/ignite/pom.xml.
+Examples are shipped as a separate Maven project, so to start running you 
simply need to import provided 
<dest_dir>/apache-ignite-fabric-{version}-bin/examples/pom.xml
 file into your favourite IDE, such as Eclipse.
 
 
 
@@ -246,12 +246,12 @@ limitations under the License.
   
 ignite.addresses
 127.0.0.1:47500..47509
-Coma separated list of Ignite cluster hosts. See [Ignite Cluster 
Configuration](https://apacheignite.readme.io/v1.2/docs/cluster-config) section 
for more details.
+Coma separated list of Ignite cluster hosts. See [Ignite Cluster 
Configuration](https://apacheignite.readme.io/docs/cluster-config) section for 
more details.
   
   
 ignite.clientMode
 true
-You can connect to the Ignite cluster as client or server node. See 
[Ignite Clients vs. 
Servers](https://apacheignite.readme.io/v1.2/docs/clients-vs-servers) section 
for details. Use true or false values in order to connect in client or server 
mode respectively.
+You can connect to the Ignite cluster as client or server node. See 
[Ignite Clients vs. 
Servers](https://apacheignite.readme.io/docs/clients-vs-servers) section for 
details. Use true or false values in order to connect in client or server mode 
respectively.
   
   
 ignite.config.url
@@ -266,7 +266,7 @@ limitations under the License.
   
 ignite.peerClassLoadingEnabled
 true
-Enables peer-class-loading. See [Zero 
Deployment](https://apacheignite.readme.io/v1.2/docs/zero-deployment) section 
for details. Use true or false values in order to enable or disable P2P class 
loading respectively.
+Enables peer-class-loading. See [Zero 
Deployment](https://apacheignite.readme.io/docs/zero-deployment) section for 
details. Use true or false values in order to enable or disable P2P class 
loading respectively.
   
 
 
@@ -278,7 +278,7 @@ limitations under the License.
 
 
 
-For more interpreter binding information see http://zeppelin.apache.org/docs/manual/interpreters.html";>here.
+For more interpreter binding information see here.
 
 Ignite SQL interpreter
 




zeppelin git commit: ZEPPELIN-415 document for Apache Kylin Interpreter

2016-11-13 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master f7af21e21 -> c9adf7161


ZEPPELIN-415 document for Apache Kylin Interpreter

### What is this PR for?
This is document for Apache Kylin Interpreter for Apache Zeppelin

### What type of PR is it?
Documentation

### Todos
Done

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-415

### How should this be tested?

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update?
   No
* Is there breaking changes for older versions?
   No
* Does this needs documentation?
   This is document

Author: zhongjian 
Author: Jason 

Closes #1576 from janzhongi/master and squashes the following commits:

5464006 [zhongjian] add default value for kylin query api config
c26fa77 [Jason] ZEPPELIN-415 document for Apache Kylin Interpreter


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

Branch: refs/heads/master
Commit: c9adf7161f42dc70ad3690770474182cb5a793ad
Parents: f7af21e
Author: zhongjian 
Authored: Sun Nov 13 21:26:42 2016 +0800
Committer: ahyoungryu 
Committed: Mon Nov 14 06:59:06 2016 +0100

--
 docs/_includes/themes/zeppelin/_navigation.html |  1 +
 docs/interpreter/kylin.md   | 86 
 2 files changed, 87 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c9adf716/docs/_includes/themes/zeppelin/_navigation.html
--
diff --git a/docs/_includes/themes/zeppelin/_navigation.html 
b/docs/_includes/themes/zeppelin/_navigation.html
index 92d46ef..ba98347 100644
--- a/docs/_includes/themes/zeppelin/_navigation.html
+++ b/docs/_includes/themes/zeppelin/_navigation.html
@@ -60,6 +60,7 @@
 Hive
 Ignite
 JDBC
+Kylin
 Lens
 Livy
 Markdown

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c9adf716/docs/interpreter/kylin.md
--
diff --git a/docs/interpreter/kylin.md b/docs/interpreter/kylin.md
new file mode 100644
index 000..9497a62
--- /dev/null
+++ b/docs/interpreter/kylin.md
@@ -0,0 +1,86 @@
+---
+layout: page
+title: "Apache Kylin Interpreter for Apache Zeppelin"
+description: "Apache Kylin™ is an open source Distributed Analytics Engine 
designed to provide SQL interface and multi-dimensional analysis (OLAP) on 
Hadoop supporting extremely large datasets, original contributed from eBay Inc.
+."
+group: interpreter
+---
+
+{% include JB/setup %}
+
+# Apache Kylin Interpreter for Apache Zeppelin
+
+
+
+## Overview
+[Apache Kylin](https://kylin.apache.org/) is an open source Distributed 
Analytics Engine designed to provide SQL interface and multi-dimensional 
analysis (OLAP) on Hadoop supporting extremely large datasets, original 
contributed from eBay Inc. The interpreter assumes that Apache Kylin has been 
installed and you can connect to Apache Kylin from the machine Apache Zeppelin 
is installed.  
+To get start with Apache Kylin, please see [Apache Kylin 
Quickstart](https://kylin.apache.org/docs15/index.html).
+
+## Configuration
+
+
+  
+Name
+Default
+Description
+  
+  
+kylin.api.url 
+http://localhost:7070/kylin/api/query
+kylin query POST API  The format can be like 
http://<host>:<port>/kylin/api/query
+  
+  
+kylin.api.user
+ADMIN
+kylin user
+  
+  
+kylin.api.password
+KYLIN
+kylin password
+  
+  
+kylin.query.project
+learn_kylin
+String, Project to perform query.
+  
+  
+kylin.query.ispartial
+true
+true|false  (@Deprecated since Apache Kylin V1.5)  Whether 
accept a partial result or not, default be “false”. Set to “false” for 
production use.
+  
+  
+kylin.query.limit
+5000
+int, Query limit  If limit is set in sql, perPage will be 
ignored.
+  
+  
+kylin.query.offset
+0
+int, Query offset  If offset is set in sql, curIndex will be 
ignored.
+  
+
+  
+  
+
+
+## Using the Apache Kylin Interpreter
+In a paragraph, use `%kylin` to select the **kylin** interpreter and then 
input sql.
+
+```
+%kylin
+select count(*) from kylin_sales group by part_dt
+```
+



svn commit: r1769567 [2/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-11-13 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json?rev=1769567&r1=1769566&r2=1769567&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json Mon Nov 14 06:15:13 2016
@@ -290,6 +290,17 @@
 
   
 
+"/interpreter/kylin.html": {
+  "title": "Apache Kylin Interpreter for Apache Zeppelin",
+  "content"  : "Apache Kylin Interpreter for 
Apache ZeppelinOverviewApache Kylin is an open source Distributed Analytics 
Engine designed to provide SQL interface and multi-dimensional analysis (OLAP) 
on Hadoop supporting extremely large datasets, original contributed from eBay 
Inc. The interpreter assumes that Apache Kylin has been installed and you can 
connect to Apache Kylin from the machine Apache Zeppelin is installed.To get 
start with Apache 
 Kylin, please see Apache Kylin Quickstart.Configuration  NameDefault   
 Descriptionkylin.api.url http://localhost:7070/kylin/api/query
kylin query POST API  The format can be like 
http://<host>:<port>/kylin/api/query
kylin.api.userADMINkylin userkylin.api.passwordKYLIN
kylin passwordkylin.query.projectlearn_kylinString, Project to 
perform query.kylin.query.ispartialtruetrue|false  (@Deprecated 
since Apache Kylin V1.5)  Whether accept a partial result or not, default be 
“false”. Set to “false” for production use.kylin.query.limit
5000int, Query limit  If limit is set in sql, perPage will be ignored.  
  kylin.query.offset0int, Query offset  If offset is set in sql, 
curIndex will be ignored.Using the Apache Kylin InterpreterIn a paragraph, 
use %kylin to select the kylin interpreter and then input sql.%kylinselect 
count(*) fr
 om kylin_sales group by part_dt",
+  "url": " /interpreter/kylin.html",
+  "group": "interpreter",
+  "excerpt": "Apache Kylin™ is an open source Distributed Analytics 
Engine designed to provide SQL interface and multi-dimensional analysis (OLAP) 
on Hadoop supporting extremely large datasets, original contributed from eBay 
Inc. ."
+}
+,
+
+  
+
 "/interpreter/lens.html": {
   "title": "Lens Interpreter for Apache Zeppelin",
   "content"  : "Lens Interpreter for Apache 
ZeppelinOverviewApache Lens provides an Unified Analytics interface. Lens aims 
to cut the Data Analytics silos by providing a single view of data across 
multiple tiered data stores and optimal execution environment for the 
analytical query. It seamlessly integrates Hadoop with traditional data 
warehouses to appear like one.Installing and Running LensIn order to use Lens 
interpreters, you may install Apac
 he Lens in some simple steps:Download Lens for latest version from the ASF. Or 
the older release can be found in the Archives.Before running Lens, you have to 
set HIVEHOME and HADOOPHOME. If you want to get more information about this, 
please refer to here. Lens also provides Pseudo Distributed mode. Lens 
pseudo-distributed setup is done by using docker. Hive server and hadoop 
daemons are run as separate processes in lens pseudo-distributed setup.Now, you 
can start lens server (or stop)../bin/lens-ctl start (or stop)Configuring Lens 
InterpreterAt the "Interpreters" menu, you can edit Lens 
interpreter or create new one. Zeppelin provides these properties for Lens. 
 Property NamevalueDescriptionlens.client.dbnamedefault
The database schema namelens.query.enable.persistent.resultsetfalse 
   Whether to enable persistent resultset for queries. When enabled, server 
will fetch results from driver, custom format them if any and store 
 in a configured location. 

svn commit: r1769567 [1/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-11-13 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Nov 14 06:15:13 2016
New Revision: 1769567

URL: http://svn.apache.org/viewvc?rev=1769567&view=rev
Log: (empty)

Added:
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/kylin.html
Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontributewebsite.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelinapplication.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelininterpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/basicdisplaysystem.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/index.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/upgrade.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/yarn_install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/alluxio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/beam.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/cassandra.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/elasticsearch.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/flink.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hbase.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hdfs.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hive.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/lens.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/mahout.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/pig.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/postgresql.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/python.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/r.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/shell.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dependencymanagement.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicinterpreterload.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterinstallation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreters.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html

zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rss.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/screenshots.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml?rev=1769567&r1=1769566&r2=1769567&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml Mon Nov 14 06:15:13 2016
@@ -4,7 +4,7 @@
  Apache Zeppelin
  http://zeppelin.apache.org/"; rel="self"/>
  http://zeppelin.apache.org"/>
- 2016-11-13T06:49:57-08:00
+ 2016-11-14T07:08:53+01:00
  http://zeppelin.apache.org
  
The Apache Softwar

zeppelin git commit: [ZEPPELIN-1650] Add mariadb, redshift configs and useful links to JDBC doc

2016-11-14 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 6069a083a -> 9bf56d9f6


[ZEPPELIN-1650] Add mariadb, redshift configs and useful links to JDBC doc

### What is this PR for?

Add 2 JDBC configs and useful links to JDBC doc so that users can connect those 
backends easily :)

### What type of PR is it?

Documentation

### Todos
* [ ] - Task

### What is the Jira issue?

[ZEPPELIN-1650](https://issues.apache.org/jira/browse/ZEPPELIN-1650)

### How should this be tested?

See screenshots.

### Screenshots (if appropriate)

https://cloud.githubusercontent.com/assets/4968473/20208653/01b1e468-a833-11e6-9166-b05d15e9a5fe.png";>
https://cloud.githubusercontent.com/assets/4968473/20208654/02b49a22-a833-11e6-9b29-5a61f2b6a4bb.png";>

### Questions:
* Does the licenses files need update? - NO
* Is there breaking changes for older versions? - NO
* Does this needs documentation? - NO

Author: 1ambda <1am...@gmail.com>
Author: AhyoungRyu 

Closes #1621 from 1ambda/jdbc-doc-improve and squashes the following commits:

0aab878 [1ambda] docs: Update postgres img ;)
6009eb9 [1ambda] docs: Add postgres section, hive2 doc link
ce24af1 [AhyoungRyu] Make mariadb and redshift screenshots same with others
2fb5db1 [1ambda] docs: Add mariadb, redshift configs


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

Branch: refs/heads/master
Commit: 9bf56d9f64fa439bfb394a21da0b43009cfb8eaa
Parents: 6069a08
Author: 1ambda <1am...@gmail.com>
Authored: Mon Nov 14 19:35:17 2016 +0900
Committer: ahyoungryu 
Committed: Mon Nov 14 23:29:53 2016 +0100

--
 .../zeppelin/img/docs-img/mariadb_setting.png   | Bin 0 -> 148550 bytes
 .../zeppelin/img/docs-img/postgres_setting.png  | Bin 0 -> 147883 bytes
 .../zeppelin/img/docs-img/redshift_setting.png  | Bin 0 -> 170219 bytes
 docs/interpreter/jdbc.md| 153 ++-
 4 files changed, 151 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9bf56d9f/docs/assets/themes/zeppelin/img/docs-img/mariadb_setting.png
--
diff --git a/docs/assets/themes/zeppelin/img/docs-img/mariadb_setting.png 
b/docs/assets/themes/zeppelin/img/docs-img/mariadb_setting.png
new file mode 100644
index 000..da32528
Binary files /dev/null and 
b/docs/assets/themes/zeppelin/img/docs-img/mariadb_setting.png differ

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9bf56d9f/docs/assets/themes/zeppelin/img/docs-img/postgres_setting.png
--
diff --git a/docs/assets/themes/zeppelin/img/docs-img/postgres_setting.png 
b/docs/assets/themes/zeppelin/img/docs-img/postgres_setting.png
new file mode 100644
index 000..7eb7a9b
Binary files /dev/null and 
b/docs/assets/themes/zeppelin/img/docs-img/postgres_setting.png differ

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9bf56d9f/docs/assets/themes/zeppelin/img/docs-img/redshift_setting.png
--
diff --git a/docs/assets/themes/zeppelin/img/docs-img/redshift_setting.png 
b/docs/assets/themes/zeppelin/img/docs-img/redshift_setting.png
new file mode 100644
index 000..54a5f71
Binary files /dev/null and 
b/docs/assets/themes/zeppelin/img/docs-img/redshift_setting.png differ

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/9bf56d9f/docs/interpreter/jdbc.md
--
diff --git a/docs/interpreter/jdbc.md b/docs/interpreter/jdbc.md
index 2523094..a10ea0b 100644
--- a/docs/interpreter/jdbc.md
+++ b/docs/interpreter/jdbc.md
@@ -50,7 +50,7 @@ JDBC interpreter lets you create a JDBC connection to any 
data sources seamlessl
 
 
   https://hive.apache.org/"; target="_blank">Apache Hive - 
-  https://cwiki.apache.org/confluence/display/Hive/HiveClient#HiveClient-JDBC";
 target="_blank">JDBC Driver
+  https://cwiki.apache.org/confluence/display/Hive/HiveServer2+Clients#HiveServer2Clients-JDBC";
 target="_blank">JDBC Driver
 
 
   https://phoenix.apache.org/"; target="_blank">Apache Phoenix 
itself is a JDBC driver
@@ -125,7 +125,7 @@ The last step is **Dependency Setting**. Since Zeppelin 
only includes `PostgreSQ
 
 
 
-That's it. You can find more JDBC connection setting examples([Mysql](#mysql), 
[Apache Hive](#apache-hive), [Apache Phoenix](#apache-phoenix), and [Apache 
Tajo](#apache-tajo)) in [this section](#examples).
+That's it. You

svn commit: r1769702 [2/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/img/docs-img/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ st

2016-11-14 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html Mon Nov 14 22:43:45 
2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html Mon Nov 14 22:43:45 
2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html Mon Nov 
14 22:43:45 2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
 (original)
+++ 
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
 Mon Nov 14 22:43:45 2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html Mon Nov 14 
22:43:45 2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html Mon Nov 
14 22:43:45 2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html Mon Nov 14 
22:43:45 2016
@@ -116,6 +116,7 @@
 Postgresql, 
HAWQ
 R
 Scalding
+Scio
 Shell
 Spark
   

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html?rev=1769702&r1=1769701&r2=1769702&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html (original)
+++ zeppe

svn commit: r1769702 [1/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ assets/themes/zeppelin/img/docs-img/ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ st

2016-11-14 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Nov 14 22:43:45 2016
New Revision: 1769702

URL: http://svn.apache.org/viewvc?rev=1769702&view=rev
Log: (empty)

Added:

zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/mariadb_setting.png
   (with props)

zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/postgres_setting.png
   (with props)

zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/redshift_setting.png
   (with props)
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html
Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontributewebsite.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelinapplication.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelininterpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/basicdisplaysystem.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/index.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/upgrade.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/yarn_install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/alluxio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/beam.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/cassandra.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/elasticsearch.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/flink.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hbase.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hdfs.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hive.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/kylin.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/lens.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/mahout.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/pig.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/postgresql.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/python.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/r.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/shell.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dependencymanagement.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicinterpreterload.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterinstallation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreters.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html

zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rss.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/screenshots.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Added: 
zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/mariadb_setting.png
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/assets/themes/zeppelin/img/docs-img/mariadb_setting.png?rev=1769702&v

zeppelin git commit: Fix formatting/typos/style in scio doc

2016-11-16 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 305e4e1e0 -> 520228fec


Fix formatting/typos/style in scio doc

### What is this PR for?
Fix formatting/typos/style in scio doc

### What type of PR is it?
Documentation

Author: Rafal Wojdyla 

Closes #1633 from ravwojdyla/fix_scio_doc and squashes the following commits:

888ec68 [Rafal Wojdyla] Fix formatting/typos/style in scio doc


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

Branch: refs/heads/master
Commit: 520228fec739e39bdf628700a1919747036c226c
Parents: 305e4e1
Author: Rafal Wojdyla 
Authored: Mon Nov 14 16:26:37 2016 -0800
Committer: ahyoungryu 
Committed: Wed Nov 16 12:54:29 2016 +0100

--
 docs/interpreter/scio.md | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/520228fe/docs/interpreter/scio.md
--
diff --git a/docs/interpreter/scio.md b/docs/interpreter/scio.md
index 83a48d0..6da348a 100644
--- a/docs/interpreter/scio.md
+++ b/docs/interpreter/scio.md
@@ -59,7 +59,7 @@ $beam.scio
 val (sc, args) = ContextAndArgs(argz)
 ```
 
-Use `sc` context the way you would in regular pipeline/REPL.
+Use `sc` context the way you would in a regular pipeline/REPL.
 
 Example:
 
@@ -73,7 +73,7 @@ If you close Scio context, go ahead an create a new one using 
`ContextAndArgs`.
 
 ### Progress
 
-There can be only one paragraph running at a time. There is no notion of 
overall progress, thus progress bar will be `0`.
+There can be only one paragraph running at once. There is no notion of overall 
progress, thus progress bar will show `0`.
 
 ### SCollection display helpers
 
@@ -93,11 +93,11 @@ There are different helper methods for different objects. 
You can easily display
 
 # `SCollection` helper
 
-`SCollection` has `closeAndDisplay` Zeppelin helper method for types listed 
above. Use it to synchronously close Scio context, once available pull and 
display results.
+`SCollection` has `closeAndDisplay` Zeppelin helper method for types listed 
above. Use it to synchronously close Scio context, and once available pull and 
display results.
 
 # `Future[Tap]` helper
 
-`Future[Tap]` has `waitAndDisplay` Zeppelin helper method for types listed 
above. Use it synchronously wait for results, once available pull and display 
results.
+`Future[Tap]` has `waitAndDisplay` Zeppelin helper method for types listed 
above. Use it to synchronously wait for results, and once available pull and 
display results.
 
 # `Tap` helper
 
@@ -159,6 +159,7 @@ 
sc.avroFile[EndSongCleaned]("gs:///tmp/my.avro").take(10).closeAndDispla
 ### Google credentials
 
 Scio Interpreter will try to infer your Google Cloud credentials from its 
environment, it will take into the account:
+
  * `argz` interpreter settings 
([doc](https://github.com/spotify/scio/wiki#options))
  * environment variable (`GOOGLE_APPLICATION_CREDENTIALS`)
  * gcloud configuration



svn commit: r1769964 - /zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html

2016-11-16 Thread ahyoungryu
Author: ahyoungryu
Date: Wed Nov 16 12:05:13 2016
New Revision: 1769964

URL: http://svn.apache.org/viewvc?rev=1769964&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html?rev=1769964&r1=1769963&r2=1769964&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html Wed Nov 16 12:05:13 
2016
@@ -242,7 +242,7 @@ limitations under the License.
 $beam.scio
 val (sc, args) = ContextAndArgs(argz)
 
-Use sc context the way you would in regular pipeline/REPL.
+Use sc context the way you would in a regular 
pipeline/REPL.
 
 Example:
 $beam.scio
@@ -253,7 +253,7 @@ limitations under the License.
 
 Progress
 
-There can be only one paragraph running at a time. There is no notion of 
overall progress, thus progress bar will be 0.
+There can be only one paragraph running at once. There is no notion of 
overall progress, thus progress bar will show 0.
 
 SCollection display helpers
 
@@ -275,11 +275,11 @@ limitations under the License.
 
 SCollection helper
 
-SCollection has closeAndDisplay Zeppelin helper 
method for types listed above. Use it to synchronously close Scio context, once 
available pull and display results.
+SCollection has closeAndDisplay Zeppelin helper 
method for types listed above. Use it to synchronously close Scio context, and 
once available pull and display results.
 
 Future[Tap] helper
 
-Future[Tap] has waitAndDisplay Zeppelin helper 
method for types listed above. Use it synchronously wait for results, once 
available pull and display results.
+Future[Tap] has waitAndDisplay Zeppelin helper 
method for types listed above. Use it to synchronously wait for results, and 
once available pull and display results.
 
 Tap helper
 
@@ -328,10 +328,13 @@ limitations under the License.
 
 Google credentials
 
-Scio Interpreter will try to infer your Google Cloud credentials from its 
environment, it will take into the account:
- * argz interpreter settings (https://github.com/spotify/scio/wiki#options";>doc)
- * environment variable (GOOGLE_APPLICATION_CREDENTIALS)
- * gcloud configuration
+Scio Interpreter will try to infer your Google Cloud credentials from its 
environment, it will take into the account:
+
+
+argz interpreter settings (https://github.com/spotify/scio/wiki#options";>doc)
+environment variable (GOOGLE_APPLICATION_CREDENTIALS)
+gcloud configuration
+
 
 BigQuery macro credentials
 




zeppelin git commit: [Docs] Add note on configuration of spark-yarn mode on docker

2016-11-16 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 520228fec -> e0930570d


[Docs] Add note on configuration of spark-yarn mode on docker

### What is this PR for?
This adds note to configuration to make clear about `sparkmaster` hostname 
defined in `/etc/hosts`

### What type of PR is it?
Improvement | Documentation

### Todos
* [x] - add note

### What is the Jira issue?
n/a

### How should this be tested?
see documentation

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Khalid Huseynov 

Closes #1636 from khalidhuseynov/docs/spark-yarn-add-note-hostname and squashes 
the following commits:

9648e08 [Khalid Huseynov] address feedback, fix path
78e7907 [Khalid Huseynov] add note about sparkmaster to each section
887b499 [Khalid Huseynov] update docker file path yarn mode
9e4ad68 [Khalid Huseynov] add sparkmaster hostname note


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

Branch: refs/heads/master
Commit: e0930570df6bfeefb4f283f6624ce2ce6caf0fe0
Parents: 520228f
Author: Khalid Huseynov 
Authored: Wed Nov 16 15:44:32 2016 +0900
Committer: ahyoungryu 
Committed: Wed Nov 16 15:29:30 2016 +0100

--
 docs/install/spark_cluster_mode.md | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/e0930570/docs/install/spark_cluster_mode.md
--
diff --git a/docs/install/spark_cluster_mode.md 
b/docs/install/spark_cluster_mode.md
index d4c864a..b848c96 100644
--- a/docs/install/spark_cluster_mode.md
+++ b/docs/install/spark_cluster_mode.md
@@ -23,17 +23,18 @@ limitations under the License.
 
 
 
-## Overview 
+## Overview
 [Apache Spark](http://spark.apache.org/) has supported three cluster manager 
types([Standalone](http://spark.apache.org/docs/latest/spark-standalone.html), 
[Apache Mesos](http://spark.apache.org/docs/latest/running-on-mesos.html) and 
[Hadoop YARN](http://spark.apache.org/docs/latest/running-on-yarn.html)) so far.
 This document will guide you how you can build and configure the environment 
on 3 types of Spark cluster manager with Apache Zeppelin using 
[Docker](https://www.docker.com/) scripts.
 So [install docker](https://docs.docker.com/engine/installation/) on the 
machine first.
 
 ## Spark standalone mode
 [Spark standalone](http://spark.apache.org/docs/latest/spark-standalone.html) 
is a simple cluster manager included with Spark that makes it easy to set up a 
cluster.
-You can simply set up Spark standalone environment with below steps. 
+You can simply set up Spark standalone environment with below steps.
 
 > **Note :** Since Apache Zeppelin and Spark use same `8080` port for their 
 > web UI, you might need to change `zeppelin.server.port` in 
 > `conf/zeppelin-site.xml`.
 
+
 ### 1. Build Docker file
 You can find docker script files under `scripts/docker/spark-cluster-managers`.
 
@@ -52,9 +53,11 @@ docker run -it \
 -p 8081:8081 \
 -h sparkmaster \
 --name spark_standalone \
-spark_standalone bash; 
+spark_standalone bash;
 ```
 
+Note that `sparkmaster` hostname used here to run docker container should be 
defined in your `/etc/hosts`.
+
 ### 3. Configure Spark interpreter in Zeppelin
 Set Spark master as `spark://:7077` in Zeppelin **Interpreters** 
setting page.
 
@@ -81,7 +84,7 @@ You can simply set up [Spark on 
YARN](http://spark.apache.org/docs/latest/runnin
 You can find docker script files under `scripts/docker/spark-cluster-managers`.
 
 ```
-cd $ZEPPELIN_HOME/scripts/docker/spark-cluster-managers/spark_yarn
+cd $ZEPPELIN_HOME/scripts/docker/spark-cluster-managers/spark_yarn_cluster
 docker build -t "spark_yarn" .
 ```
 
@@ -111,6 +114,8 @@ docker run -it \
  spark_yarn bash;
 ```
 
+Note that `sparkmaster` hostname used here to run docker container should be 
defined in your `/etc/hosts`.
+
 ### 3. Verify running Spark on YARN.
 
 You can simply verify the processes of Spark and YARN are running well in 
Docker with below command.
@@ -172,6 +177,8 @@ docker run --net=host -it \
 spark_mesos bash;
 ```
 
+Note that `sparkmaster` hostname used here to run docker container should be 
defined in your `/etc/hosts`.
+
 ### 3. Verify running Spark on Mesos.
 
 You can simply verify the processes of Spark and Mesos are running well in 
Docker with below command.
@@ -201,4 +208,3 @@ Don't forget to set Spark `master` as 
`mesos://127.0.1.1:5050` in Zeppelin **Int
 After running a single paragraph with Spark inte

svn commit: r1769992 - /zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html

2016-11-16 Thread ahyoungryu
Author: ahyoungryu
Date: Wed Nov 16 14:36:42 2016
New Revision: 1769992

URL: http://svn.apache.org/viewvc?rev=1769992&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html?rev=1769992&r1=1769991&r2=1769992&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html Wed Nov 
16 14:36:42 2016
@@ -216,7 +216,7 @@ So https://docs.docker.com/engi
 Spark standalone mode
 
 http://spark.apache.org/docs/latest/spark-standalone.html";>Spark 
standalone is a simple cluster manager included with Spark that makes it 
easy to set up a cluster.
-You can simply set up Spark standalone environment with below steps. 
+You can simply set up Spark standalone environment with below steps.
 
 
 Note : Since Apache Zeppelin and Spark use same 
8080 port for their web UI, you might need to change 
zeppelin.server.port in conf/zeppelin-site.xml.
@@ -236,8 +236,10 @@ docker build -t "spark_standalone&q
 -p 8081:8081 \
 -h sparkmaster \
 --name spark_standalone \
-spark_standalone bash; 
+spark_standalone bash;
 
+Note that sparkmaster hostname used here to run docker 
container should be defined in your /etc/hosts.
+
 3. Configure Spark interpreter in Zeppelin
 
 Set Spark master as spark://<hostname>:7077 in Zeppelin 
Interpreters setting page.
@@ -264,7 +266,7 @@ spark_standalone bash;
 1. Build Docker file
 
 You can find docker script files under 
scripts/docker/spark-cluster-managers.
-cd 
$ZEPPELIN_HOME/scripts/docker/spark-cluster-managers/spark_yarn
+cd 
$ZEPPELIN_HOME/scripts/docker/spark-cluster-managers/spark_yarn_cluster
 docker build -t "spark_yarn" .
 
 2. Run docker
@@ -290,6 +292,8 @@ docker build -t "spark_yarn" .
  -h sparkmaster \
  spark_yarn bash;
 
+Note that sparkmaster hostname used here to run docker 
container should be defined in your /etc/hosts.
+
 3. Verify running Spark on YARN.
 
 You can simply verify the processes of Spark and YARN are running well in 
Docker with below command.
@@ -338,6 +342,8 @@ docker build -t "spark_mesos"
 --name spark_mesos \
 spark_mesos bash;
 
+Note that sparkmaster hostname used here to run docker 
container should be defined in your /etc/hosts.
+
 3. Verify running Spark on Mesos.
 
 You can simply verify the processes of Spark and Mesos are running well in 
Docker with below command.




zeppelin git commit: [MINOR] Add markdown escaping to find missing parts

2016-11-18 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master a99cef9d4 -> f4dc39061


[MINOR] Add markdown escaping to find missing parts

### What is this PR for?
Currently `{{note.id}}>{{noteName(note)}}` is not shown in 
`notebookashomepage.md`. So I added markdown escaping for this.

### What type of PR is it?
Documentation

### What is the Jira issue?
no Jira issue for this

### How should this be tested?
Please see the below screenshot imgs :)

### Screenshots (if appropriate)
 - Before
https://cloud.githubusercontent.com/assets/10060731/20298331/9b2e8828-ab15-11e6-9010-50df6100a961.png";>

 - After
![picture1](https://cloud.githubusercontent.com/assets/10060731/20298335/9f55a2c4-ab15-11e6-99e3-ac83a76a2ff6.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1634 from AhyoungRyu/add-markdown-escaping and squashes the following 
commits:

34a4bc7 [AhyoungRyu] Add markdown escaping to find some missing parts


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

Branch: refs/heads/master
Commit: f4dc3906195d6040da01d1e08787f4e1495bd537
Parents: a99cef9
Author: AhyoungRyu 
Authored: Tue Nov 15 09:20:53 2016 +0100
Committer: ahyoungryu 
Committed: Fri Nov 18 18:00:21 2016 +0100

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


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/f4dc3906/docs/manual/notebookashomepage.md
--
diff --git a/docs/manual/notebookashomepage.md 
b/docs/manual/notebookashomepage.md
index 729f324..a82d100 100644
--- a/docs/manual/notebookashomepage.md
+++ b/docs/manual/notebookashomepage.md
@@ -81,7 +81,7 @@ println(
  Create new 
note
 
   
-{{noteName(note)}}
+{{"{{noteName(note)"
   
 
 



svn commit: r1770413 - /zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html

2016-11-18 Thread ahyoungryu
Author: ahyoungryu
Date: Fri Nov 18 17:06:08 2016
New Revision: 1770413

URL: http://svn.apache.org/viewvc?rev=1770413&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html?rev=1770413&r1=1770412&r2=1770413&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html Fri Nov 18 
17:06:08 2016
@@ -93,6 +93,7 @@
 Interpreter 
Installation
 
 Interpreter 
Dependency Management
+Interpreter User 
Impersonation
 
 Available 
Interpreters
 Alluxio
@@ -268,12 +269,12 @@ you need to do is use our %angular suppo
 <i style="font-size: 15px;" class="icon-notebook"></i> Create new 
note</a></h5>
 <ul style="list-style-type: none;">
   <li ng-repeat="note in home.notes.list 
track by $index"><i 
style="font-size: 10px;" 
class="icon-doc"></i>
-<a style="text-decoration: none;" 
href="#/notebook/"></a>
-  </li>
-</ul>
-</div>
-  </div>
-""")
+<a style="text-decoration: none;" 
href="#/notebook/{{note.id}}>{{noteName(note)}}</a>
+  </li>
+</ul>
+</div>
+  </div>
+""")
 
 After running the note you will see output similar to this one:
 




zeppelin git commit: Enable to search interpreters only based on the name

2016-11-18 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master f4dc39061 -> 3eae4e071


Enable to search interpreters only based on the name

### What is this PR for?
Currently when you're trying to search some interpreters, for example "Spark", 
the page shows both "Livy" and "Spark". It's because Livy contains Spark 
related properties such as `livy.spark.driver.cores`, 
`livy.spark.driver.memory` and etc etc. As an user aspect, I felt a bit 
uncomfortable with this.
So I added one more condition so that it can search only based on interpreter 
name.

### What type of PR is it?
Improvement

### What is the Jira issue?
no Jira issue for this

### How should this be tested?
Outline the steps to test the PR here.

### Screenshots (if appropriate)
 - Before
![before](https://cloud.githubusercontent.com/assets/10060731/20309013/a20c60f8-ab46-11e6-9b68-bf3980de3b6b.gif)

 - After
![after](https://cloud.githubusercontent.com/assets/10060731/20309017/a4376300-ab46-11e6-92c9-a8b6a674f312.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1640 from AhyoungRyu/search-basedOn-name and squashes the following 
commits:

7564e1c [AhyoungRyu] Search interpreter only based on interpreter name


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

Branch: refs/heads/master
Commit: 3eae4e0711924721db49b4e3b840282ca987a80c
Parents: f4dc390
Author: AhyoungRyu 
Authored: Tue Nov 15 15:15:42 2016 +0100
Committer: ahyoungryu 
Committed: Fri Nov 18 18:30:19 2016 +0100

--
 zeppelin-web/src/app/interpreter/interpreter.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/3eae4e07/zeppelin-web/src/app/interpreter/interpreter.html
--
diff --git a/zeppelin-web/src/app/interpreter/interpreter.html 
b/zeppelin-web/src/app/interpreter/interpreter.html
index e91dabe..a33127f 100644
--- a/zeppelin-web/src/app/interpreter/interpreter.html
+++ b/zeppelin-web/src/app/interpreter/interpreter.html
@@ -90,7 +90,7 @@ limitations under the License.
 
 
 
+ ng-repeat="setting in interpreterSettings | orderBy: 'name' | filter: 
{name:searchInterpreter} " interpreter-directive>
   
 
 



zeppelin git commit: [ZEPPELIN-917] Apply new mechanism to LensInterpreter

2016-11-24 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master abe03a866 -> 0729d12b9


[ZEPPELIN-917] Apply new mechanism to LensInterpreter

### What is this PR for?

This handles replacing the registration of interpreter with static block by the 
interpreter-setting.json file
### What type of PR is it?

[| Improvement |
### Todos

Sub-Task
### What is the Jira issue?

https://issues.apache.org/jira/browse/ZEPPELIN-917
### How should this be tested?

here shouldn't be any warning like below on starting the server
INFO [2016-09-29 00:25:46,247]({main} LensInterpreter.java[]:155) - 
Bootstrapping Cassandra Interpreter WARN [2016-09-29 00:25:46,250]({main} 
Interpreter.java[register]:347) - Static initialization is deprecated for 
interpreter lens, You should change it to use interpreter-setting.json in your 
jar or interpreter/{interpreter}/interpreter-setting.json INFO [2016-09-29 
00:25:46,250]({main} InterpreterFactory.java[init]:204) - 
Inclass=org.apache.zeppelin.lens.LensInterpreter

And ensure that the lens related paragraphs run without any error
### Screenshots (if appropriate)
### Questions:
- Does the licenses files need update? No
- Is there breaking changes for older versions? No
- Does this needs documentation? No

Author: meenakshisekar 

Closes #1548 from meenakshisekar/ZEPPELIN-917 and squashes the following 
commits:

269e8cb [meenakshisekar] Removed the tabs and added space.
cc8bdc2 [meenakshisekar] Added the indentation similar to other interpreter 
setting file.
2cba9e7 [meenakshisekar] Added the indentation similar to other interpreter 
setting file.
ad3b83c [meenakshisekar] Added indentation
f94c8a3 [meenakshisekar] Commented the properties in interpreter file and added 
setting file.
db2827f [meenakshisekar] Commented the properties in interpreter file and added 
setting file.


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

Branch: refs/heads/master
Commit: 0729d12b96918a7ae1ed36d3932416bee26c4301
Parents: abe03a8
Author: meenakshisekar 
Authored: Thu Oct 27 13:32:10 2016 +0530
Committer: ahyoungryu 
Committed: Thu Nov 24 18:01:54 2016 +0900

--
 .../apache/zeppelin/lens/LensInterpreter.java   | 16 +-
 .../src/main/resources/interpreter-setting.json | 51 
 2 files changed, 52 insertions(+), 15 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/0729d12b/lens/src/main/java/org/apache/zeppelin/lens/LensInterpreter.java
--
diff --git a/lens/src/main/java/org/apache/zeppelin/lens/LensInterpreter.java 
b/lens/src/main/java/org/apache/zeppelin/lens/LensInterpreter.java
index f0c9062..17e3a46 100644
--- a/lens/src/main/java/org/apache/zeppelin/lens/LensInterpreter.java
+++ b/lens/src/main/java/org/apache/zeppelin/lens/LensInterpreter.java
@@ -88,21 +88,7 @@ public class LensInterpreter extends Interpreter {
   private LensClient m_lensClient;
   
 
-  static {
-Interpreter.register(
-  "lens",
-  "lens",
-  LensInterpreter.class.getName(),
-  new InterpreterPropertyBuilder()
-.add(ZEPPELIN_LENS_RUN_CONCURRENT_SESSION, "true", "Run concurrent 
Lens Sessions")
-.add(ZEPPELIN_LENS_CONCURRENT_SESSIONS, "10", 
-  "If concurrency is true then how many threads?")
-.add(ZEPPELIN_MAX_ROWS, "1000", "max number of rows to display")
-.add(LENS_SERVER_URL, "http://:/lensapi", "The URL for 
Lens Server")
-.add(LENS_CLIENT_DBNAME, "default", "The database schema name")
-.add(LENS_PERSIST_RESULTSET, "false", "Apache Lens to persist result 
in HDFS?")
-.add(LENS_SESSION_CLUSTER_USER, "default", "Hadoop cluster 
username").build());
-  }
+
 
   public LensInterpreter(Properties property) {
 super(property);

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/0729d12b/lens/src/main/resources/interpreter-setting.json
--
diff --git a/lens/src/main/resources/interpreter-setting.json 
b/lens/src/main/resources/interpreter-setting.json
new file mode 100644
index 000..427b01f
--- /dev/null
+++ b/lens/src/main/resources/interpreter-setting.json
@@ -0,0 +1,51 @@
+[
+  {
+"group": "lens",
+"name": "lens",
+"className": "org.apache.zeppelin.lens.LensInterpreter",
+"properties": {
+  "zeppelin.lens.run.concurrent": {
+"env

zeppelin git commit: [ZEPPELIN-1705] Exclude unnecessary source file when check style on scio

2016-11-26 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 9694a1a5b -> 823e2e024


[ZEPPELIN-1705] Exclude unnecessary source file when check style on scio

### What is this PR for?
When building Zeppelin with `mvn clean package install -DskipTests -DskipRat`, 
it fails on `scio` with an error log below:
```sh
[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-checkstyle-plugin:2.13:check 
(checkstyle-fail-build) on project zeppelin-scio_2.10: You have 51 Checkstyle 
violations. -> [Help 1]
```
This is because of **style check on a generated source**, which is exactly 
`$ZEPPELIN_HOME/scio/target/generated-sources/avro/org/apache/zeppelin/scio/avro/Account.java`

This PR will make style check excludes the generated source.

### What type of PR is it?
Bug Fix

### What is the Jira issue?
[ZEPPELIN-1705](https://issues.apache.org/jira/browse/ZEPPELIN-1705)

### How should this be tested?
Run `mvn clean package install -DskipTests -DskipRat`. It should print `BUILD 
SUCCESS`

### Questions:
* Does the licenses files need update? NO
* Is there breaking changes for older versions? NO
* Does this needs documentation? NO

Author: Jun 

Closes #1676 from tae-jun/ZEPPELIN-1705 and squashes the following commits:

2c1c56b [Jun] Exclude unnecessary source file when check style on scio


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

Branch: refs/heads/master
Commit: 823e2e02488dd1a4788eabaa37c531e6a3f4583c
Parents: 9694a1a
Author: Jun 
Authored: Thu Nov 24 20:37:19 2016 +0900
Committer: ahyoungryu 
Committed: Sat Nov 26 20:33:50 2016 +0900

--
 pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/823e2e02/pom.xml
--
diff --git a/pom.xml b/pom.xml
index ea5adf1..cfe9e90 100644
--- a/pom.xml
+++ b/pom.xml
@@ -261,7 +261,7 @@
 
 
   true
-  org/apache/zeppelin/interpreter/thrift/*
+  
org/apache/zeppelin/interpreter/thrift/*,org/apache/zeppelin/scio/avro/*,org/apache/zeppelin/scio/avro/*
 
   
   
@@ -271,7 +271,7 @@
   checkstyle-aggregate
 
 
-  org/apache/zeppelin/interpreter/thrift/*
+  
org/apache/zeppelin/interpreter/thrift/*,org/apache/zeppelin/scio/avro/*,org/apache/zeppelin/scio/avro/*
 
   
 



zeppelin git commit: Fix filter icon not displaying problem

2016-11-28 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master e8cea41c6 -> a13d05a2d


Fix filter icon not displaying problem

### What is this PR for?
Filter icon is not displayed properly due to the css font-family order.

### What type of PR is it?
Bug Fix

### Todos

### What is the Jira issue?

### How should this be tested?
See filter input box in the home page or navbar.

### Screenshots (if appropriate)
[Before]
![before](https://cloud.githubusercontent.com/assets/17305893/20638381/8ee71fb2-b3e9-11e6-9604-4344239d65c3.png)
[After]
![after](https://cloud.githubusercontent.com/assets/17305893/20638382/93b9155e-b3e9-11e6-8dde-534806ec0193.png)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Sangwoo Lee 

Closes #1684 from marchpig/fix-filter-icon and squashes the following commits:

bc92c4e [Sangwoo Lee] Fix filter icon not displaying problem


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

Branch: refs/heads/master
Commit: a13d05a2dfe0847fbf629d92b103e8468ba7574f
Parents: e8cea41
Author: Sangwoo Lee 
Authored: Sat Nov 26 14:47:22 2016 +0900
Committer: ahyoungryu 
Committed: Tue Nov 29 12:50:30 2016 +0900

--
 zeppelin-web/src/app/home/home.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a13d05a2/zeppelin-web/src/app/home/home.css
--
diff --git a/zeppelin-web/src/app/home/home.css 
b/zeppelin-web/src/app/home/home.css
index 6732215..493d3d8 100644
--- a/zeppelin-web/src/app/home/home.css
+++ b/zeppelin-web/src/app/home/home.css
@@ -172,7 +172,7 @@ a.navbar-brand:hover {
   height: 28px;
   width: 200px;
   font-size: 14px;
-  font-family: 'Helvetica Neue', Helvetica, Arial, 'FontAwesome', sans-serif;
+  font-family: 'FontAwesome', 'Helvetica Neue', Helvetica, Arial, sans-serif;
 }
 
 .dropdown-submenu {



zeppelin git commit: [ZEPPELIN-1714] Build error of scio Intepreter on Centos

2016-11-29 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 9db840c65 -> 234c42bdb


[ZEPPELIN-1714] Build error of scio Intepreter on Centos

### What is this PR for?
This PR fixes build error of scio Intepreter on CentOS.

### What type of PR is it?
Bug Fix

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1714

### How should this be tested?
Run `mvn clean package -DskipTest' on CentOS

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: astroshim 

Closes #1685 from astroshim/fix/scio-builderror and squashes the following 
commits:

330f38d [astroshim] add scala prefix


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

Branch: refs/heads/master
Commit: 234c42bdb1a9494c9c2a36e6bbe3bec7be7104cc
Parents: 9db840c
Author: astroshim 
Authored: Sat Nov 26 15:39:44 2016 +0900
Committer: ahyoungryu 
Committed: Wed Nov 30 01:31:39 2016 +0900

--
 scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/234c42bd/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
--
diff --git a/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala 
b/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
index 00d011f..f340081 100644
--- a/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
+++ b/scio/src/main/scala/org/apache/zeppelin/scio/ScioInterpreter.scala
@@ -161,7 +161,7 @@ class ScioInterpreter(property: Properties) extends 
Interpreter(property) {
 innerOut.setInterpreterOutput(context.out)
 
 try {
-  import tools.nsc.interpreter.Results._
+  import scala.tools.nsc.interpreter.Results._
   REPL.interpret(code) match {
 case Success => {
   logger.debug(s"Successfully executed `$code` in $paragraphId")



zeppelin git commit: [ZEPPELIN-1686] Added clear output to keyboard shortcut

2016-11-30 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master b0bef98a7 -> a459c0249


[ZEPPELIN-1686] Added clear output to keyboard shortcut

### What is this PR for?
This PR Added "Clear output" of paragraph to the keyboard shortcut.

### What type of PR is it?
Improvement

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1686

### How should this be tested?
Click in paragraph and press Ctrl+Shift+c

### Screenshots (if appropriate)
![screenshot from 2016-11-27 
06-29-27](https://cloud.githubusercontent.com/assets/8110458/20644011/e8d8f370-b46a-11e6-83cd-2d2fffc10a77.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: soralee 

Closes #1686 from soralee/ZEPPELIN-1686 and squashes the following commits:

e6e8d42 [soralee] changed short key from ctrl+shift+c to ctrl+alt+l
bbd96f9 [soralee] changed short key from ctrl+shift+c to ctrl+alt+l
225d18d [soralee] changed short key from ctrl+shift+c to ctrl+alt+l
d89afa1 [soralee] Added clear output to a keyboard shortcut


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

Branch: refs/heads/master
Commit: a459c02494305e3cce4d151a1035c6529359ec2f
Parents: b0bef98
Author: soralee 
Authored: Mon Nov 28 17:23:00 2016 +0900
Committer: ahyoungryu 
Committed: Wed Nov 30 20:12:29 2016 +0900

--
 .../src/app/notebook/paragraph/paragraph.controller.js  |  4 
 .../src/components/modal-shortcut/modal-shortcut.html   | 12 
 2 files changed, 16 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a459c024/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
--
diff --git a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js 
b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
index c1ad35e..2868b8b 100644
--- a/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
+++ b/zeppelin-web/src/app/notebook/paragraph/paragraph.controller.js
@@ -762,6 +762,8 @@
 $scope.editor.commands.bindKey('ctrl-alt-n.', null);
 $scope.editor.commands.removeCommand('showSettingsMenu');
 
+$scope.editor.commands.bindKey('ctrl-alt-l', null);
+
 // autocomplete on 'ctrl+.'
 $scope.editor.commands.bindKey('ctrl-.', 'startAutocomplete');
 $scope.editor.commands.bindKey('ctrl-space', null);
@@ -1850,6 +1852,8 @@
   } else {
 $scope.showTitle();
   }
+} else if (keyEvent.ctrlKey && keyEvent.altKey && keyCode === 76) { // 
Ctrl + Alt + l
+  $scope.clearParagraphOutput();
 } else {
   noShortcutDefined = true;
 }

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a459c024/zeppelin-web/src/components/modal-shortcut/modal-shortcut.html
--
diff --git a/zeppelin-web/src/components/modal-shortcut/modal-shortcut.html 
b/zeppelin-web/src/components/modal-shortcut/modal-shortcut.html
index 1beb4b5..4f051a6 100644
--- a/zeppelin-web/src/components/modal-shortcut/modal-shortcut.html
+++ b/zeppelin-web/src/components/modal-shortcut/modal-shortcut.html
@@ -180,6 +180,17 @@ limitations under the License.
 
   
 
+  Ctrl + {{ 
isMac ? 'Option' : 'Alt'}} + l
+
+  
+  
+Clear output
+  
+
+
+
+  
+
   Ctrl + Shift + -
 
   
@@ -199,6 +210,7 @@ limitations under the License.
   
 
 
+
 Editor Shortcuts
 
   



zeppelin git commit: [ZEPPELIN-1709] docs: Describe how to use checkstyle plugins

2016-11-30 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/gh-pages 9d601c12f -> f20c98d40


[ZEPPELIN-1709] docs: Describe how to use checkstyle plugins

### What is this PR for?

The sub issue of https://github.com/apache/zeppelin/pull/1689 (PRs are splitted 
due to `contribute.md` exists in different branch `gh-pages`)

- Describe how to IDE plugins to contribute consistent code

### What type of PR is it?
[Documentation]

### What is the Jira issue?

https://issues.apache.org/jira/browse/ZEPPELIN-1709

### Questions:
* Does the licenses files need update? - NO
* Is there breaking changes for older versions - NO
* Does this needs documentation - NO

Author: 1ambda <1am...@gmail.com>

Closes #1690 from 1ambda/docs/update-checkstyle-plugins and squashes the 
following commits:

9d77726 [1ambda] docs: Split download, setting links
484714a [1ambda] fix: typo
099479c [1ambda] docs: Update checkstyle plugins


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

Branch: refs/heads/gh-pages
Commit: f20c98d406964ee052a6c94ea0f937fc4b554c3e
Parents: 9d601c1
Author: 1ambda <1am...@gmail.com>
Authored: Tue Nov 29 14:11:39 2016 +0900
Committer: ahyoungryu 
Committed: Wed Nov 30 20:19:28 2016 +0900

--
 contribution/contributions.md | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/f20c98d4/contribution/contributions.md
--
diff --git a/contribution/contributions.md b/contribution/contributions.md
index 49627df..f85ce53 100644
--- a/contribution/contributions.md
+++ b/contribution/contributions.md
@@ -146,8 +146,13 @@ We are following Google Code style:
 * [Java style](https://google.github.io/styleguide/javaguide.html)
 * [Shell style](https://google.github.io/styleguide/shell.xml)
 
-Check style report location are in `${submodule}/target/site/checkstyle.html`
-Test coverage report location are in 
`${submodule}/target/site/cobertura/index.html`
+There are some plugins to format, lint your code in IDE (use 
[_tools/checkstyle.xml](https://github.com/apache/zeppelin/tree/master/_tools) 
as rules)
+
+* [Checkstyle plugin for Intellij](https://plugins.jetbrains.com/plugin/1065) 
([Setting 
Guide](http://stackoverflow.com/questions/26955766/intellij-idea-checkstyle))
+* [Checkstyle plugin for Eclipse](http://eclipse-cs.sourceforge.net/#!/) 
([Setting Guide](http://eclipse-cs.sourceforge.net/#!/project-setup))
+
+Checkstyle report location is in `${submodule}/target/site/checkstyle.html`
+Test coverage report location is in 
`${submodule}/target/site/cobertura/index.html`
 
 ## Getting the source code
 First of all, you need the Zeppelin source code.



svn commit: r1772016 - /zeppelin/site/contribution/contributions.html

2016-11-30 Thread ahyoungryu
Author: ahyoungryu
Date: Wed Nov 30 11:31:03 2016
New Revision: 1772016

URL: http://svn.apache.org/viewvc?rev=1772016&view=rev
Log: (empty)

Modified:
zeppelin/site/contribution/contributions.html

Modified: zeppelin/site/contribution/contributions.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/contribution/contributions.html?rev=1772016&r1=1772015&r2=1772016&view=diff
==
--- zeppelin/site/contribution/contributions.html (original)
+++ zeppelin/site/contribution/contributions.html Wed Nov 30 11:31:03 2016
@@ -128,12 +128,6 @@
   
 
   
-
-  
-
-  
-
-  
 
   
 
@@ -324,12 +318,6 @@
   
 
   
-
-  
-
-  
-
-  
 
   
 
@@ -543,8 +531,15 @@ The top-level pom.xml describes the basi
 https://google.github.io/styleguide/shell.xml";>Shell 
style
 
 
-Check style report location are in 
${submodule}/target/site/checkstyle.html
-Test coverage report location are in 
${submodule}/target/site/cobertura/index.html
+There are some plugins to format, lint your code in IDE (use https://github.com/apache/zeppelin/tree/master/_tools";>_tools/checkstyle.xml
 as rules)
+
+
+https://plugins.jetbrains.com/plugin/1065";>Checkstyle plugin for 
Intellij (http://stackoverflow.com/questions/26955766/intellij-idea-checkstyle";>Setting
 Guide)
+http://eclipse-cs.sourceforge.net/#!/";>Checkstyle plugin for 
Eclipse (http://eclipse-cs.sourceforge.net/#!/project-setup";>Setting 
Guide)
+
+
+Checkstyle report location is in 
${submodule}/target/site/checkstyle.html
+Test coverage report location is in 
${submodule}/target/site/cobertura/index.html
 
 Getting the source code
 




zeppelin git commit: [DOCS] Update Shiro conf file with new package names in docs accordingly

2016-12-01 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 8e6f333a6 -> e5ac1134c


[DOCS] Update Shiro conf file with new package names in docs accordingly

### What is this PR for?
Based on #1700, 
https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html#groups-and-permissions-optional
 needs be updated accordingly.

```
activeDirectoryRealm = org.apache.zeppelin.server.ActiveDirectoryGroupRealm
ldapRealm = org.apache.zeppelin.server.LdapGroupRealm
```
 to

```
ldapRealm = org.apache.zeppelin.realm.LdapGroupRealm
ldapRealm = org.apache.zeppelin.realm.LdapGroupRealm
```

### What type of PR is it?
Documentation

### What is the Jira issue?
N/A

### How should this be tested?
No need to test this I guess. I just changed 3 words :D

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1703 from AhyoungRyu/update/shiro-config-docs and squashes the 
following commits:

8159131 [AhyoungRyu] Update Shiro conf file with new package names in docs 
accordinly


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

Branch: refs/heads/master
Commit: e5ac1134c39e63c35840231c5f8b6cfedbd9d89d
Parents: 8e6f333
Author: AhyoungRyu 
Authored: Wed Nov 30 01:46:58 2016 +0900
Committer: ahyoungryu 
Committed: Fri Dec 2 10:25:21 2016 +0900

--
 docs/security/shiroauthentication.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/e5ac1134/docs/security/shiroauthentication.md
--
diff --git a/docs/security/shiroauthentication.md 
b/docs/security/shiroauthentication.md
index 095bd5a..de015b9 100644
--- a/docs/security/shiroauthentication.md
+++ b/docs/security/shiroauthentication.md
@@ -71,7 +71,7 @@ You can set the roles for each users next to the password.
 In case you want to leverage user groups and permissions, use one of the 
following configuration for LDAP or AD under `[main]` segment in `shiro.ini`.
 
 ```
-activeDirectoryRealm = org.apache.zeppelin.server.ActiveDirectoryGroupRealm
+activeDirectoryRealm = org.apache.zeppelin.realm.ActiveDirectoryGroupRealm
 activeDirectoryRealm.systemUsername = userNameA
 activeDirectoryRealm.systemPassword = passwordA
 activeDirectoryRealm.searchBase = CN=Users,DC=SOME_GROUP,DC=COMPANY,DC=COM
@@ -106,7 +106,7 @@ We also provide community custom Realms.
 ### Active Directory
 
 ```
-activeDirectoryRealm = org.apache.zeppelin.server.ActiveDirectoryGroupRealm
+activeDirectoryRealm = org.apache.zeppelin.realm.ActiveDirectoryGroupRealm
 activeDirectoryRealm.systemUsername = userNameA
 activeDirectoryRealm.systemPassword = passwordA
 activeDirectoryRealm.hadoopSecurityCredentialPath = 
jceks://file/user/zeppelin/conf/zeppelin.jceks
@@ -127,7 +127,7 @@ Change the following values in the Shiro.ini file, and 
uncomment the line:
 ### LDAP
 
 ```
-ldapRealm = org.apache.zeppelin.server.LdapGroupRealm
+ldapRealm = org.apache.zeppelin.realm.LdapGroupRealm
 # search base for ldap groups (only relevant for LdapGroupRealm):
 ldapRealm.contextFactory.environment[ldap.searchBase] = dc=COMPANY,dc=COM
 ldapRealm.contextFactory.url = ldap://ldap.test.com:389



svn commit: r1772294 - /zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html

2016-12-01 Thread ahyoungryu
Author: ahyoungryu
Date: Fri Dec  2 01:27:33 2016
New Revision: 1772294

URL: http://svn.apache.org/viewvc?rev=1772294&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html?rev=1772294&r1=1772293&r2=1772294&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html Fri Dec 
 2 01:27:33 2016
@@ -252,7 +252,7 @@ user3 = password4, role2
 Groups and permissions (optional)
 
 In case you want to leverage user groups and permissions, use one of the 
following configuration for LDAP or AD under [main] segment in 
shiro.ini.
-activeDirectoryRealm = 
org.apache.zeppelin.server.ActiveDirectoryGroupRealm
+activeDirectoryRealm = 
org.apache.zeppelin.realm.ActiveDirectoryGroupRealm
 activeDirectoryRealm.systemUsername = userNameA
 activeDirectoryRealm.systemPassword = passwordA
 activeDirectoryRealm.searchBase = CN=Users,DC=SOME_GROUP,DC=COMPANY,DC=COM
@@ -282,7 +282,7 @@ To learn more about Apache Shiro Realm,
 We also provide community custom Realms.
 
 Active Directory
-activeDirectoryRealm = 
org.apache.zeppelin.server.ActiveDirectoryGroupRealm
+activeDirectoryRealm = 
org.apache.zeppelin.realm.ActiveDirectoryGroupRealm
 activeDirectoryRealm.systemUsername = userNameA
 activeDirectoryRealm.systemPassword = passwordA
 activeDirectoryRealm.hadoopSecurityCredentialPath = 
jceks://file/user/zeppelin/conf/zeppelin.jceks
@@ -299,7 +299,7 @@ Create a keystore file using the hadoop
 activeDirectoryRealm.hadoopSecurityCredentialPath = 
jceks://file/user/zeppelin/conf/zeppelin.jceks
 
 LDAP
-ldapRealm = org.apache.zeppelin.server.LdapGroupRealm
+ldapRealm = org.apache.zeppelin.realm.LdapGroupRealm
 # search base for ldap groups (only relevant for LdapGroupRealm):
 ldapRealm.contextFactory.environment[ldap.searchBase] = dc=COMPANY,dc=COM
 ldapRealm.contextFactory.url = ldap://ldap.test.com:389




zeppelin git commit: add hadoop-2.7 to available hadoop version

2016-12-11 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 04c62e41f -> e733bb59f


add hadoop-2.7 to available hadoop version

### What is this PR for?
we can use hadoop 2.7 for spark-dependency, but building document doesn't 
contain that.
hadoop 2.7 should be contained to available hadoop version at document.

### What type of PR is it?
[Documentation]

### Todos

### What is the Jira issue?
ZEPPELIN-1783

Author: chie8842 

Closes #1743 from hayashidac/ZEPPELIN-1783 and squashes the following commits:

c84509e [chie8842] add hadoop-2.7 to available hadoop version


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

Branch: refs/heads/master
Commit: e733bb59ff4a10001edaf37ff7b336d745f59a8c
Parents: 04c62e4
Author: chie8842 
Authored: Sat Dec 10 16:46:54 2016 +0900
Committer: ahyoungryu 
Committed: Mon Dec 12 10:43:55 2016 +0900

--
 docs/install/build.md | 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/e733bb59/docs/install/build.md
--
diff --git a/docs/install/build.md b/docs/install/build.md
index 7d89a98..43cc304 100644
--- a/docs/install/build.md
+++ b/docs/install/build.md
@@ -124,6 +124,7 @@ Available profiles are
 -Phadoop-2.3
 -Phadoop-2.4
 -Phadoop-2.6
+-Phadoop-2.7
 ```
 
 minor version can be adjusted by `-Dhadoop.version=x.x.x`



svn commit: r1773727 - /zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html

2016-12-11 Thread ahyoungryu
Author: ahyoungryu
Date: Mon Dec 12 01:50:58 2016
New Revision: 1773727

URL: http://svn.apache.org/viewvc?rev=1773727&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html?rev=1773727&r1=1773726&r2=1773727&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html Mon Dec 12 01:50:58 
2016
@@ -289,6 +289,7 @@ If you are behind proxy, follow instruct
 -Phadoop-2.3
 -Phadoop-2.4
 -Phadoop-2.6
+-Phadoop-2.7
 
 minor version can be adjusted by -Dhadoop.version=x.x.x
 




zeppelin git commit: [ZEPPELIN-1767] Blank paragraph should not be run.

2016-12-14 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master a8ea9e1a2 -> 6177c819b


[ZEPPELIN-1767] Blank paragraph should not be run.

### What is this PR for?
This PR fixes not to run blank paragraph.

### What type of PR is it?
Improvement

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1767

### How should this be tested?
please run blank paragraph.

### Screenshots (if appropriate)
- before
![12 -08-2016 
12-41-59](https://cloud.githubusercontent.com/assets/3348133/20996914/5d568e92-bd44-11e6-9462-aad47e4c08ca.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: astroshim 

Closes #1735 from astroshim/skipBlankParagraph and squashes the following 
commits:

ccd9982 [astroshim] fix testcase
14f9714 [astroshim] Merge branch 'master' into skipBlankParagraph
68ca222 [astroshim] add testcase
c80fbeb [astroshim] fix restapi issue
b7c9d72 [astroshim] fix typo
35f0497 [astroshim] skip blank to run paragraph.


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

Branch: refs/heads/master
Commit: 6177c819b1edb76cfaa8f6249dc9041771ce6da9
Parents: a8ea9e1
Author: astroshim 
Authored: Tue Dec 13 00:09:45 2016 +0900
Committer: ahyoungryu 
Committed: Thu Dec 15 10:55:05 2016 +0900

--
 .../apache/zeppelin/socket/NotebookServer.java  |  6 ++--
 .../zeppelin/rest/NotebookRestApiTest.java  | 33 
 .../java/org/apache/zeppelin/notebook/Note.java |  6 
 .../org/apache/zeppelin/notebook/Paragraph.java |  6 
 .../org/apache/zeppelin/notebook/NoteTest.java  |  2 +-
 .../apache/zeppelin/notebook/NotebookTest.java  | 14 +
 6 files changed, 62 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6177c819/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
--
diff --git 
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java 
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
index bda5f35..fb36bb6 100644
--- 
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
+++ 
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
@@ -44,7 +44,6 @@ import org.apache.zeppelin.helium.ApplicationEventListener;
 import org.apache.zeppelin.helium.HeliumPackage;
 import org.apache.zeppelin.interpreter.InterpreterContextRunner;
 import org.apache.zeppelin.interpreter.InterpreterGroup;
-import org.apache.zeppelin.interpreter.InterpreterOutput;
 import org.apache.zeppelin.interpreter.InterpreterResult;
 import org.apache.zeppelin.interpreter.InterpreterResultMessage;
 import org.apache.zeppelin.interpreter.InterpreterSetting;
@@ -79,7 +78,6 @@ import org.quartz.SchedulerException;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 
-import com.google.common.base.Strings;
 import com.google.common.collect.Queues;
 import com.google.gson.Gson;
 import com.google.gson.GsonBuilder;
@@ -1392,10 +1390,10 @@ public class NotebookServer extends WebSocketServlet 
implements
 Map config = (Map) fromMessage
.get("config");
 p.setConfig(config);
+
 // if it's the last paragraph, let's add a new one
 boolean isTheLastParagraph = note.isLastParagraph(p.getId());
-if (!(text.trim().equals(p.getMagic()) || Strings.isNullOrEmpty(text)) &&
-isTheLastParagraph) {
+if (isTheLastParagraph) {
   Paragraph newPara = note.addParagraph();
   broadcastNewParagraph(note, newPara);
 }

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6177c819/zeppelin-server/src/test/java/org/apache/zeppelin/rest/NotebookRestApiTest.java
--
diff --git 
a/zeppelin-server/src/test/java/org/apache/zeppelin/rest/NotebookRestApiTest.java
 
b/zeppelin-server/src/test/java/org/apache/zeppelin/rest/NotebookRestApiTest.java
index 0fdb810..1923be8 100644
--- 
a/zeppelin-server/src/test/java/org/apache/zeppelin/rest/NotebookRestApiTest.java
+++ 
b/zeppelin-server/src/test/java/org/apache/zeppelin/rest/NotebookRestApiTest.java
@@ -26,6 +26,7 @@ import org.apache.commons.httpclient.methods.PutMethod;
 import org.apache.zeppelin.interpreter.InterpreterResult;
 import org.apache.zeppelin.notebook.Note;
 import org.apache.zeppelin.notebook.Paragraph;
+import org.apache.zeppelin.scheduler.Job;
 import org.apache.zeppelin.server.ZeppelinServer;
 import org.apache.zeppelin.user.Authent

zeppelin git commit: [ZEPPELIN-1744] replace to movement for paragraph in job menu

2016-12-15 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 45d20abd4 -> 625bd4214


[ZEPPELIN-1744] replace to movement for paragraph in job menu

### What is this PR for?
We should move to editable paragraph move in job menu
currently, moved to readonly mode

### What type of PR is it?
Bug Fix

### Todos
- [x] - fix location address

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1744

### How should this be tested?
click to your paragraph item in job menu.

### Screenshots (if appropriate)
 Before
![movebefore](https://cloud.githubusercontent.com/assets/10525473/20824409/0477b966-b8a0-11e6-8354-aa8c7e6b6498.gif)

 After
![movefix](https://cloud.githubusercontent.com/assets/10525473/20824363/a312d642-b89f-11e6-85a6-0349544f1fed.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: CloverHearts 

Closes #1717 from cloverhearts/jobm/fixlink and squashes the following commits:

1c8d54c [CloverHearts] Merge branch 'master' into jobm/fixlink
7ae843b [CloverHearts] replace to movement for paragraph in job menu


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

Branch: refs/heads/master
Commit: 625bd4214ac42f5f829d955108d2474a63e67b19
Parents: 45d20ab
Author: CloverHearts 
Authored: Mon Dec 5 16:24:51 2016 +0900
Committer: ahyoungryu 
Committed: Fri Dec 16 11:19:53 2016 +0900

--
 zeppelin-web/src/app/jobmanager/jobs/job.html | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/625bd421/zeppelin-web/src/app/jobmanager/jobs/job.html
--
diff --git a/zeppelin-web/src/app/jobmanager/jobs/job.html 
b/zeppelin-web/src/app/jobmanager/jobs/job.html
index a89b67f..4edf5ea 100644
--- a/zeppelin-web/src/app/jobmanager/jobs/job.html
+++ b/zeppelin-web/src/app/jobmanager/jobs/job.html
@@ -48,7 +48,7 @@ limitations under the License.
   ng-switch="paragraphJob.status">
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 
@@ -56,7 +56,7 @@ limitations under the License.
   
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 
@@ -64,7 +64,7 @@ limitations under the License.
   
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 
@@ -72,7 +72,7 @@ limitations under the License.
   
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 
@@ -80,7 +80,7 @@ limitations under the License.
   
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 
@@ -88,7 +88,7 @@ limitations under the License.
   
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 
@@ -96,7 +96,7 @@ limitations under the License.
   
   
+ 
ng-href="#/notebook/{{notebookJob.noteId}}?paragraph={{paragraphJob.id}}">
 



zeppelin git commit: Update DESCRIPTION

2016-12-15 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 625bd4214 -> a9788ff58


Update DESCRIPTION

### What is this PR for?
This PR just fixes a typo in R package DESCRIPTION-File for misspelled 
googleVis dependency.

### What type of PR is it?
Documentation

### Questions:
* Does the licenses files need update? No.
* Is there breaking changes for older versions? No.
* Does this needs documentation? No.

Author: fred777 

Closes #1760 from fred777/patch-1 and squashes the following commits:

dc8993f [fred777] Update DESCRIPTION


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

Branch: refs/heads/master
Commit: a9788ff5800ba96c3a624574a2859d9f2f9aaf02
Parents: 625bd42
Author: fred777 
Authored: Wed Dec 14 12:13:28 2016 +0100
Committer: ahyoungryu 
Committed: Fri Dec 16 11:24:42 2016 +0900

--
 r/R/rzeppelin/DESCRIPTION | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/a9788ff5/r/R/rzeppelin/DESCRIPTION
--
diff --git a/r/R/rzeppelin/DESCRIPTION b/r/R/rzeppelin/DESCRIPTION
index aa4fcac..0d7d9ba 100644
--- a/r/R/rzeppelin/DESCRIPTION
+++ b/r/R/rzeppelin/DESCRIPTION
@@ -9,7 +9,7 @@ URL: http://dahl.byu.edu/software/rscala/
 Imports: utils,
evaluate
 Suggests:
-   goolgeVis,
+   googleVis,
htmltools,
knitr,
rCharts,



zeppelin git commit: [DOCS] Separate "interpreter exec hooks (experimental)" from interpreter overview page

2016-12-17 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master cc39f85a7 -> c854fda93


[DOCS] Separate "interpreter exec hooks (experimental)" from interpreter 
overview page

### What is this PR for?
After #1470 merged, "(Experimental) Interpreter Execution Hooks" is added under 
https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/manual/interpreters.html page. 
But i think we need to keep this page as simple as possible since it's 
explaining the basic concept of Zeppelin interpreters. So I separated  
"(Experimental) Interpreter Execution Hooks" section from `interpreters.md` and 
created new page `interpreterexechooks.md`.
And also fixed some markdown rendering issues.

### What type of PR is it?
Documentation

### What is the Jira issue?
N/A

### How should this be tested?
Please see below screenshots :)

### Screenshots (if appropriate)
 - Before (under 
[manual/interpreter.md](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/manual/interpreters.html#experimental-interpreter-execution-hooks)
https://cloud.githubusercontent.com/assets/10060731/21216362/a3bb89f0-c2e9-11e6-9678-8e6d8749229b.png";>

 - After
https://cloud.githubusercontent.com/assets/10060731/21216570/dcca63f0-c2ea-11e6-90a9-969d363b423a.png";>

https://cloud.githubusercontent.com/assets/10060731/21216363/a6c2d82e-c2e9-11e6-920c-a603e25e1699.png";>

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1768 from AhyoungRyu/separate-eventhook-section and squashes the 
following commits:

ce19491 [AhyoungRyu] Separate 'interpreter exec hooks' from intp overview


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

Branch: refs/heads/master
Commit: c854fda9361d8c31b29cdaa45b69b7237ac34272
Parents: cc39f85
Author: AhyoungRyu 
Authored: Thu Dec 15 17:09:40 2016 +0900
Committer: ahyoungryu 
Committed: Sat Dec 17 21:50:39 2016 +0900

--
 docs/_includes/themes/zeppelin/_navigation.html |  1 +
 docs/index.md   |  1 +
 docs/manual/interpreterexechooks.md | 81 
 docs/manual/interpreters.md | 46 ---
 4 files changed, 83 insertions(+), 46 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c854fda9/docs/_includes/themes/zeppelin/_navigation.html
--
diff --git a/docs/_includes/themes/zeppelin/_navigation.html 
b/docs/_includes/themes/zeppelin/_navigation.html
index 6ed8d5a..0c66f3f 100644
--- a/docs/_includes/themes/zeppelin/_navigation.html
+++ b/docs/_includes/themes/zeppelin/_navigation.html
@@ -47,6 +47,7 @@
 
 Interpreter Dependency 
Management
 Interpreter User 
Impersonation
+Interpreter Execution 
Hooks (Experimental)
 
 Available 
Interpreters
 Alluxio

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c854fda9/docs/index.md
--
diff --git a/docs/index.md b/docs/index.md
index db5931e..5d964a1 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -143,6 +143,7 @@ Join to our [Mailing 
list](https://zeppelin.apache.org/community.html) and repor
   * [Interpreter Installation](./manual/interpreterinstallation.html): Install 
not only community managed interpreters but also 3rd party interpreters
   * [Interpreter Dependency Management](./manual/dependencymanagement.html) 
when you include external libraries to interpreter
   * [Interpreter User Impersonation](./manual/userimpersonation.html) when you 
want to run interpreter as end user
+  * [Interpreter Execution Hooks](./manual/interpreterexechooks.html) to 
specify additional code to be executed by an interpreter at pre and 
post-paragraph code execution
 * Available Interpreters: currently, about 20 interpreters are available in 
Apache Zeppelin.
 
 Display System

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/c854fda9/docs/manual/interpreterexechooks.md
--
diff --git a/docs/manual/interpreterexechooks.md 
b/docs/manual/interpreterexechooks.md
new file mode 100644
index 000..d2411aa
--- /dev/null
+++ b/docs/manual/interpreterexechooks.md
@@ -0,0 +1,81 @@
+---
+layout: page
+title: "Interpreter Execution Hooks (Experimental)"
+description: "Apache Zeppelin allows for users to specify additional code to 

svn commit: r1774757 [1/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-12-17 Thread ahyoungryu
Author: ahyoungryu
Date: Sat Dec 17 13:02:53 2016
New Revision: 1774757

URL: http://svn.apache.org/viewvc?rev=1774757&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/development/howtocontributewebsite.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelinapplication.html

zeppelin/site/docs/0.7.0-SNAPSHOT/development/writingzeppelininterpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/back-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/basicdisplaysystem.html
zeppelin/site/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html
zeppelin/site/docs/0.7.0-SNAPSHOT/index.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/build.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/cdh.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/docker.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/spark_cluster_mode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/upgrade.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/virtual_machine.html
zeppelin/site/docs/0.7.0-SNAPSHOT/install/yarn_install.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/alluxio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/beam.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/bigquery.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/cassandra.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/elasticsearch.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/flink.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/geode.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hbase.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hdfs.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/hive.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/ignite.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/jdbc.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/kylin.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/lens.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/mahout.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/markdown.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/pig.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/postgresql.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/python.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/r.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scalding.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/scio.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/shell.html
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/spark.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dependencymanagement.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicform.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/dynamicinterpreterload.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterinstallation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreters.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/notebookashomepage.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/publish.html
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/userimpersonation.html
zeppelin/site/docs/0.7.0-SNAPSHOT/pleasecontribute.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/explorezeppelinui.html

zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/install_with_flink_and_spark_cluster.html
zeppelin/site/docs/0.7.0-SNAPSHOT/quickstart/tutorial.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-configuration.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-credential.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-interpreter.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html
zeppelin/site/docs/0.7.0-SNAPSHOT/rss.xml
zeppelin/site/docs/0.7.0-SNAPSHOT/screenshots.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search.html
zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
zeppelin/site/docs/0.7.0-SNAPSHOT/security/authentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/datasource_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
zeppelin/site/docs/0.7.0-SNAPSHOT/security/shiroauthentication.html
zeppelin/site/docs/0.7.0-SNAPSHOT/sitemap.txt
zeppelin/site/docs/0.7.0-SNAPSHOT/storage/storage.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml?rev=1774757&r1=1774756&r2=1774757&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/atom.xml Sat Dec 17 13:02:53 2016
@@ -4,7 +4,7 @@
  Apache Zeppelin
  http://zeppelin.apache.org/"

svn commit: r1774758 - /zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterexechooks.html

2016-12-17 Thread ahyoungryu
Author: ahyoungryu
Date: Sat Dec 17 13:03:30 2016
New Revision: 1774758

URL: http://svn.apache.org/viewvc?rev=1774758&view=rev
Log: (empty)

Added:
zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterexechooks.html

Added: zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterexechooks.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterexechooks.html?rev=1774758&view=auto
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterexechooks.html (added)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/manual/interpreterexechooks.html Sat Dec 
17 13:03:30 2016
@@ -0,0 +1,284 @@
+
+
+
+  
+
+Apache Zeppelin 0.7.0-SNAPSHOT Documentation: Interpreter Execution 
Hooks (Experimental)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+
+
+
+https://code.jquery.com/jquery-1.10.2.min.js"</a>;>
+
+
+
+
+
+
+
+
+
+
+  
+
+  
+
+
+  
+
+  
+Toggle navigation
+
+
+
+  
+  
+
+Zeppelin
+0.7.0-SNAPSHOT
+  
+
+
+  
+
+  Quick 
Start 
+  
+What is Apache 
Zeppelin ?
+
+Getting Started
+Install
+Configuration
+Explore Zeppelin 
UI
+Tutorial
+
+Basic Feature Guide
+Dynamic Form
+Publish 
your Paragraph
+Customize Zeppelin 
Homepage
+
+More
+Upgrade Zeppelin 
Version
+Build 
from source
+Install
 Zeppelin with Flink and Spark Clusters Tutorial
+  
+
+
+  Interpreter 
+  
+Overview
+
+Usage
+Interpreter 
Installation
+
+Interpreter 
Dependency Management
+Interpreter User 
Impersonation
+Interpreter 
Execution Hooks (Experimental)
+
+Available 
Interpreters
+Alluxio
+Beam
+BigQuery
+Cassandra
+Elasticsearch
+Flink
+Geode
+HBase
+HDFS
+Hive
+Ignite
+JDBC
+Kylin
+Lens
+Livy
+Markdown
+Pig
+Python
+Postgresql, 
HAWQ
+R
+Scalding
+Scio
+Shell
+Spark
+  
+
+
+  Display System 
+  
+Basic Display System
+Text
+Html
+Table
+
+Angular API
+Angular 
(backend API)
+Angular 
(frontend API)
+  
+
+
+  More
+  
+Notebook Storage
+Git
 Storage
+S3 
Storage
+Azure
 Storage
+ZeppelinHub
 Storage
+
+REST API
+Interpreter 
API
+Notebook API
+Configuration 
API
+Credential 
API
+
+Security
+Shiro 
Authentication
+Notebook 
Authorization
+Data Source 
Authorization
+
+Advanced
+Zeppelin on Vagrant 
VM
+Zeppelin
 on Spark Cluster Mode (Standalone)
+Zeppelin
 on Spark Cluster Mode (YARN)
+Zeppelin
 on Spark Cluster Mode (Mesos)
+Zeppelin 
on CDH
+
+Contibute
+Writing 
Zeppelin Interpreter
+Writing 
Zeppelin Application (Experimental)
+How to contribute 
(code)
+How to 
contribute (website)
+  
+
+
+  
+
+  
+
+  
+
+  
+
+
+
+
+
+  
+
+
+
+  
+
+
+Interpreter Execution Hooks (Experimental)
+
+
+
+Overview
+
+Apache Zeppelin allows for users to specify additional code to be executed 
by an interpreter at pre and post-paragraph code execution.
+This is primarily useful if you need to run the same set of code for all of 
the paragraphs within your notebook at specific times.
+Currently, this feature is only available for

svn commit: r1774757 [2/2] - in /zeppelin/site/docs/0.7.0-SNAPSHOT: ./ development/ displaysystem/ install/ interpreter/ manual/ quickstart/ rest-api/ security/ storage/

2016-12-17 Thread ahyoungryu
Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json?rev=1774757&r1=1774756&r2=1774757&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/search_data.json Sat Dec 17 13:02:53 2016
@@ -477,6 +477,17 @@
 
   
 
+"/manual/interpreterexechooks.html": {
+  "title": "Interpreter Execution Hooks (Experimental)",
+  "content"  : "Interpreter Execution Hooks 
(Experimental)OverviewApache Zeppelin allows for users to specify additional 
code to be executed by an interpreter at pre and post-paragraph code 
execution.This is primarily useful if you need to run the same set of code for 
all of the paragraphs within your notebook at specific times.Currently, this 
feature is only available for the spark and pyspark interpreters.To specify 
your hook code, you may use z
 .registerHook(). For example, enter the following into one 
paragraph:%pysparkz.registerHook("post_exec", "print 
'This code should be executed before the parapgraph 
code!'")z.registerHook("pre_exec", 
"print 'This code should be executed after the paragraph 
code!'")These calls will not take into effect until the next 
time you run a paragraph. In another paragraph, enter%pysparkprint 
"This code should be entered into the paragraph by the 
user!"The output should be:This code should be executed before the 
paragraph code!This code should be entered into the paragraph by the user!This 
code should be executed after the paragraph code!If you ever need to know the 
hook code, use z.getHook():%pysparkprint 
z.getHook("post_exec")print 'This code should be 
executed after the paragraph code!'Any call to z.registerHook() will 
automatically overw
 rite what was previously registered.To completely unregister a hook event, use 
z.unregisterHook(eventCode).Currently only "post_exec" and 
"pre_exec" are valid event codes for the Zeppelin Hook 
Registry system.Finally, the hook registry is internally shared by other 
interpreters in the same group.This would allow for hook code for one 
interpreter REPL to be set by another as 
follows:%sparkz.unregisterHook("post_exec", 
"pyspark")The API is identical for both the spark (scala) and 
pyspark (python) implementations.CaveatsCalls to 
z.registerHook("pre_exec", ...) should be made with care. If 
there are errors in your specified hook code, this will cause the interpreter 
REPL to become unable to execute any code pass the pre-execute stage making it 
impossible for direct calls to z.unregisterHook() to take into effect. Current 
workarounds include calling z.unregisterHook() from a different interpreter RE
 PL in the same interpreter group (see above) or manually restarting the 
interpreter group in the UI. ",
+  "url": " /manual/interpreterexechooks.html",
+  "group": "manual",
+  "excerpt": "Apache Zeppelin allows for users to specify additional code 
to be executed by an interpreter at pre and post-paragraph code execution."
+}
+,
+
+  
+
 "/manual/interpreterinstallation.html": {
   "title": "Interpreter Installation in Netinst Binary Package",
   "content"  : "Interpreter 
InstallationApache Zeppelin provides Interpreter Installation mechanism for 
whom downloaded Zeppelin netinst binary package, or just want to install 
another 3rd party interpreters. Community managed interpretersApache Zeppelin 
provides several interpreters as community managed interpreters. If you 
downloaded netinst binary package, you need to install by using below 
commands.Install all community managed interpreters./b
 in/install-interpreter.sh --allInstall specific 
interpreters./bin/install-

zeppelin git commit: [MINOR] Set default interpreter \w first intp

2016-12-17 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master c854fda93 -> dc3d383cc


[MINOR] Set default interpreter \w first intp

### What is this PR for?
Currently we can select default interpreter when we create a new note like 
below.
![screen shot 2016-12-15 at 4 41 15 
pm](https://cloud.githubusercontent.com/assets/10060731/21215571/56bf4078-c2e5-11e6-8455-b2cb0e126007.png)

However, even if we don't set the default interpreter(don't select any 
interpreters) in this dialog and just create new note, the default interpreter 
is automatically set as `Spark` interpreter. This can be checked in the 
interpreter binding page. It doesn't make sense I think.
So I removed `--select--` and set the default option in the select box with 
`Spark` as the interpreter binding page does.

### What type of PR is it?
Bug Fix

### What is the Jira issue?
N/A

### How should this be tested?
1. Build only web \w `npm run build` under `zeppelin-web/` and run `npm run 
start` for dev mode.
2. Create a new note and see the select box

or just see the below screenshots :)

### Screenshots (if appropriate)
 - Before
![before](https://cloud.githubusercontent.com/assets/10060731/21215524/1b3f9886-c2e5-11e6-9947-e9186e087b54.gif)

 - After
![default_intp](https://cloud.githubusercontent.com/assets/10060731/21215526/1cc8d258-c2e5-11e6-9a71-504f7164078b.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1766 from AhyoungRyu/fix-default-intp and squashes the following 
commits:

569e63b [AhyoungRyu] Set default interpreter \w first intp


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

Branch: refs/heads/master
Commit: dc3d383cc95dfbf46298e1854507d0f88932229d
Parents: c854fda
Author: AhyoungRyu 
Authored: Thu Dec 15 16:32:13 2016 +0900
Committer: ahyoungryu 
Committed: Sat Dec 17 22:04:30 2016 +0900

--
 .../src/components/noteName-create/note-name-dialog.html| 1 -
 .../src/components/noteName-create/notename.controller.js   | 5 -
 2 files changed, 4 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/dc3d383c/zeppelin-web/src/components/noteName-create/note-name-dialog.html
--
diff --git a/zeppelin-web/src/components/noteName-create/note-name-dialog.html 
b/zeppelin-web/src/components/noteName-create/note-name-dialog.html
index 0bb599c..44d1c01 100644
--- a/zeppelin-web/src/components/noteName-create/note-name-dialog.html
+++ b/zeppelin-web/src/components/noteName-create/note-name-dialog.html
@@ -34,7 +34,6 @@ limitations under the License.
   name="defaultInterpreter"
   id="defaultInterpreter"
   ng-options="option.name for option in 
interpreterSettings">
---Select--
   
 
   

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/dc3d383c/zeppelin-web/src/components/noteName-create/notename.controller.js
--
diff --git a/zeppelin-web/src/components/noteName-create/notename.controller.js 
b/zeppelin-web/src/components/noteName-create/notename.controller.js
index 2936fad..29c6557 100644
--- a/zeppelin-web/src/components/noteName-create/notename.controller.js
+++ b/zeppelin-web/src/components/noteName-create/notename.controller.js
@@ -39,7 +39,7 @@
   defaultInterpreterId = $scope.note.defaultInterpreter.id;
 }
 vm.websocketMsgSrv.createNotebook($scope.note.notename, 
defaultInterpreterId);
-$scope.note.defaultInterpreter = null;
+$scope.note.defaultInterpreter = $scope.interpreterSettings[0];
   } else {
 var noteId = $routeParams.noteId;
 vm.websocketMsgSrv.cloneNote(noteId, $scope.note.notename);
@@ -104,6 +104,9 @@
 
 $scope.$on('interpreterSettings', function(event, data) {
   $scope.interpreterSettings = data.interpreterSettings;
+
+  //initialize default interpreter with Spark interpreter
+  $scope.note.defaultInterpreter = data.interpreterSettings[0];
 });
 
 var init = function() {



zeppelin git commit: [ZEPPELIN-1796] Add 'copy to clipboard' next to the paragraph id

2016-12-19 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 555231937 -> 384d031c6


[ZEPPELIN-1796] Add 'copy to clipboard' next to the paragraph id

### What is this PR for?
There are lots of use cases that need to know each `Paragraph Id` in Zeppelin.
e.g. [run paragraph using rest 
api](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/rest-api/rest-notebook.html#run-a-paragraph-asynchronously)
 / 
[`z.angularBind`](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/displaysystem/front-end-angular.html#basic-usage)
 / [export paragraphs using 
iframe](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/manual/publish.html) ...

So I added `Copy to clipboard` btn next the each `Paragraph Id` under paragraph 
setting menu using 
[angular-zeroclipboard](https://github.com/lisposter/angular-zeroclipboard).
It'll be useful even if it's small feature :)

### What type of PR is it?
Improvement | Feature

### What is the Jira issue?
[ZEPPELIN-1796](https://issues.apache.org/jira/browse/ZEPPELIN-1796)

### How should this be tested?
1. `npm run build` under `zeppelin-web/`
2. `npm run start` to start dev mode and browse `http://localhost:9000`
3. click gear icon placed top of the each paragraph -> hover the mouse on the 
paragraph id
4. click it and paste the paragraph id to anywhere to check it's copied well or 
not

### Screenshots (if appropriate)
![copy_pid](https://cloud.githubusercontent.com/assets/10060731/21213283/9fb53710-c2d6-11e6-981d-58174da76196.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1750 from AhyoungRyu/add/copyToClipboard and squashes the following 
commits:

0e3bef4 [AhyoungRyu] Remove clippy.svg and make pid text to button
8ea78e0 [AhyoungRyu] Change clipboard library not depending on flash
1c702bf [AhyoungRyu] Add license header to top of clippy.svg file
cf827a4 [AhyoungRyu] Fix ZeroClipboard.swf loading issue
6e102d0 [AhyoungRyu] Specify angular-zeroclipboard license
390574c [AhyoungRyu] Add 'copy to clipboard' next to the paragraph id


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

Branch: refs/heads/master
Commit: 384d031c6bbce79230fc929fe88ca0d1ce840886
Parents: 5552319
Author: AhyoungRyu 
Authored: Thu Dec 15 14:47:48 2016 +0900
Committer: ahyoungryu 
Committed: Tue Dec 20 11:13:43 2016 +0900

--
 zeppelin-distribution/src/bin_license/LICENSE   |  1 +
 zeppelin-web/Gruntfile.js   | 10 ++
 zeppelin-web/bower.json |  3 +-
 zeppelin-web/src/app/app.js |  3 +-
 .../notebook/paragraph/paragraph-control.html   | 11 --
 .../src/app/notebook/paragraph/paragraph.css|  3 +-
 .../clipboard/clipboard.controller.js   | 36 
 zeppelin-web/src/index.html |  3 ++
 zeppelin-web/test/karma.conf.js |  2 ++
 9 files changed, 67 insertions(+), 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/384d031c/zeppelin-distribution/src/bin_license/LICENSE
--
diff --git a/zeppelin-distribution/src/bin_license/LICENSE 
b/zeppelin-distribution/src/bin_license/LICENSE
index 8b79486..de3c817 100644
--- a/zeppelin-distribution/src/bin_license/LICENSE
+++ b/zeppelin-distribution/src/bin_license/LICENSE
@@ -266,6 +266,7 @@ The text of each license is also included at 
licenses/LICENSE-[project]-[version
 (The MIT License) Java String Similarity 0.12 
(info.debatty:java-string-similarity:0.12 - 
https://github.com/tdebatty/java-string-similarity)
 (The MIT License) Java LSH 0.10 (info.debatty:java-lsh:0.10 - 
https://github.com/tdebatty/java-LSH)
 (The MIT License) JSoup 1.6.1 (org.jsoup:jsoup:1.6.1 - 
https://github.com/jhy/jsoup/)
+(The MIT License) ngclipboard v1.1.1 
(https://github.com/sachinchoolur/ngclipboard) - 
https://github.com/sachinchoolur/ngclipboard/blob/1.1.1/LICENSE)
 
 
 BSD-style licenses

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/384d031c/zeppelin-web/Gruntfile.js
--
diff --git a/zeppelin-web/Gruntfile.js b/zeppelin-web/Gruntfile.js
index 8a8f694..40e681a 100644
--- a/zeppelin-web/Gruntfile.js
+++ b/zeppelin-web/Gruntfile.js
@@ -477,6 +477,11 @@ module.exports = function(grunt) {
   dest: '.tmp/styles/images'
 }, {
   expand: true,
+  cwd: &#

zeppelin git commit: [ZEPPELIN-1298] Address invalid ticket warnings when server restarted

2016-12-20 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 82d836fd5 -> cb7d82d78


[ZEPPELIN-1298] Address invalid ticket warnings when server restarted

### What is this PR for?
When Zeppelin server restarted then all previously open tab tickets will be 
invalidated. It causes execessive `PING` logs and requires user to refresh the 
page. More details in comments of the issue.

### What type of PR is it?
Bug Fix | Improvement

### Todos
* [x] - remove ping warning
* [x] - add popup

### What is the Jira issue?
[ZEPPELIN-1298](https://issues.apache.org/jira/browse/ZEPPELIN-1298)

### How should this be tested?
1. start Zeppelin server and login
2. restart server
3. try to do something in previously open window

### Screenshots (if appropriate)
Before:
![ping_stack_before](https://cloud.githubusercontent.com/assets/1642088/21128483/b50a9400-c13e-11e6-84af-2384cdde7efc.gif)

After:
![ping_stack_after](https://cloud.githubusercontent.com/assets/1642088/21128484/bd49f76e-c13e-11e6-86a6-f6ec944d927c.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Khalid Huseynov 

Closes #1749 from khalidhuseynov/fix/invalidTicket and squashes the following 
commits:

712e2c3 [Khalid Huseynov] remote ping warn, add popup


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

Branch: refs/heads/master
Commit: cb7d82d785afd874c2b5acca763a668896099de0
Parents: 82d836f
Author: Khalid Huseynov 
Authored: Tue Dec 13 14:06:47 2016 +0900
Committer: ahyoungryu 
Committed: Wed Dec 21 11:25:23 2016 +0900

--
 .../main/java/org/apache/zeppelin/socket/NotebookServer.java  | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/cb7d82d7/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
--
diff --git 
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java 
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
index 3aa51e1..7b29d05 100644
--- 
a/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
+++ 
b/zeppelin-server/src/main/java/org/apache/zeppelin/socket/NotebookServer.java
@@ -169,8 +169,11 @@ public class NotebookServer extends WebSocketServlet 
implements
   LOG.debug("{} message: invalid ticket {} != {}", messagereceived.op,
   messagereceived.ticket, ticket);
 } else {
-  LOG.warn("{} message: invalid ticket {} != {}", messagereceived.op,
-  messagereceived.ticket, ticket);
+  if (!messagereceived.op.equals(OP.PING)) {
+conn.send(serializeMessage(new Message(OP.ERROR_INFO).put("info",
+"Your ticket is invalid possibly due to server restart. "
++ "Please refresh the page and login again.")));
+  }
 }
 return;
   }



[2/4] zeppelin git commit: [BugFix] Tutorial note json format.

2016-12-22 Thread ahyoungryu
http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6808bdc6/notebook/2BYEZ5EVK/note.json
--
diff --git a/notebook/2BYEZ5EVK/note.json b/notebook/2BYEZ5EVK/note.json
index 8483ce0..83a7913 100644
--- a/notebook/2BYEZ5EVK/note.json
+++ b/notebook/2BYEZ5EVK/note.json
@@ -5,23 +5,27 @@
   "dateUpdated": "Sep 28, 2016 10:01:52 AM",
   "config": {
 "colWidth": 12.0,
-"graph": {
-  "mode": "table",
-  "height": 300.0,
-  "optionOpen": false,
-  "keys": [],
-  "values": [],
-  "groups": [],
-  "scatter": {},
-  "map": {
-"baseMapType": "Streets",
-"isOnline": true,
-"pinCols": []
-  }
-},
 "enabled": true,
 "editorMode": "ace/mode/scala",
-"editorHide": true
+"editorHide": true,
+"results": [
+  {
+"graph": {
+  "mode": "table",
+  "height": 300.0,
+  "optionOpen": false,
+  "keys": [],
+  "values": [],
+  "groups": [],
+  "scatter": {},
+  "map": {
+"baseMapType": "Streets",
+"isOnline": true,
+"pinCols": []
+  }
+}
+  }
+]
   },
   "settings": {
 "params": {},
@@ -30,10 +34,14 @@
   "apps": [],
   "jobName": "paragraph_1475013396125_39313566",
   "id": "20160927-155636_1798325301",
-  "result": {
+  "results": {
 "code": "SUCCESS",
-"type": "HTML",
-"msg": "\u003ch3\u003eThe \u003ca 
href\u003d\"http://mahout.apache.org/\"\u003eApache Mahout\u003c/a\u003e™ 
project\u0027s goal is to build an environment for quickly creating scalable 
performant machine learning applications.\u003c/h3\u003e\n\u003ch4\u003eApache 
Mahout software provides three major 
features:\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eA simple and extensible 
programming environment and framework for building scalable 
algorithms\u003c/li\u003e\n\u003cli\u003eA wide variety of premade algorithms 
for Scala + Apache Spark, H2O, Apache 
Flink\u003c/li\u003e\n\u003cli\u003eSamsara, a vector math experimentation 
environment with R-like syntax which works at 
scale\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eIn other 
words:\u003c/h4\u003e\n\u003cp\u003e\u003cem\u003eApache Mahout provides a 
unified API for quickly creating machine learning algorithms on a variety of 
engines.\u003c/em\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eReferences:\u003c/strong\
 u003e\u003c/p\u003e\n\u003cp\u003e\u003ca 
href\u003d\"http://mahout.apache.org/users/environment/in-core-reference.html\"\u003eMahout-Samsara\u0027s
 In-Core Linear Algebra DSL Reference\u003c/a\u003e\n\u003cbr  /\u003e\u003ca 
href\u003d\"http://mahout.apache.org/users/environment/out-of-core-reference.html\"\u003eMahout-Samsara\u0027s
 Distributed Linear Algebra DSL Reference\u003c/a\u003e\n\u003cbr  
/\u003e\u003ca 
href\u003d\"http://mahout.apache.org/users/sparkbindings/play-with-shell.html\"\u003eGetting
 Started with the Mahout-Samsara Shell\u003c/a\u003e\u003c/p\u003e\n"
+"msg": [
+  {
+"type": "HTML",
+"data": "\u003ch3\u003eThe \u003ca 
href\u003d\"http://mahout.apache.org/\"\u003eApache Mahout\u003c/a\u003e™ 
project\u0027s goal is to build an environment for quickly creating scalable 
performant machine learning applications.\u003c/h3\u003e\n\u003ch4\u003eApache 
Mahout software provides three major 
features:\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eA simple and extensible 
programming environment and framework for building scalable 
algorithms\u003c/li\u003e\n\u003cli\u003eA wide variety of premade algorithms 
for Scala + Apache Spark, H2O, Apache 
Flink\u003c/li\u003e\n\u003cli\u003eSamsara, a vector math experimentation 
environment with R-like syntax which works at 
scale\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eIn other 
words:\u003c/h4\u003e\n\u003cp\u003e\u003cem\u003eApache Mahout provides a 
unified API for quickly creating machine learning algorithms on a variety of 
engines.\u003c/em\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eReferences:\u003c/st
 rong\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca 
href\u003d\"http://mahout.apache.org/users/environment/in-core-reference.html\"\u003eMahout-Samsara\u0027s
 In-Core Linear Algebra DSL Reference\u003c/a\u003e\n\u003cbr  /\u003e\u003ca 
href\u003d\"http://mahout.apache.org/users/environment/out-of-core-reference.html\"\u003eMahout-Samsara\u0027s
 Distributed Linear Algebra DSL Reference\u003c/a\u003e\n\u003cbr  
/\u003e\u003ca 
href\u003d\"http://mahout.apache.org/users/sparkbindings/play-with-shell.html\"\u003eGetting
 Started with the Mahout-Samsara Shell\u003c/a\u003e\u003c/p\u003e\n"
+  }
+]
   },
   "dateCreated": "Sep 27, 

[4/4] zeppelin git commit: [BugFix] Tutorial note json format.

2016-12-22 Thread ahyoungryu
[BugFix] Tutorial note json format.

### What is this PR for?
Since https://github.com/apache/zeppelin/pull/1658, the output format had 
changed but note.json of Tutorials didn't changed.

### What type of PR is it?
Bug Fix

### How should this be tested?
Please make sure there is no `result` field in note.json file.

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: astroshim 
Author: Hyungsung Shim 

Closes #1780 from astroshim/fix/tutorialNote and squashes the following commits:

eca8026 [astroshim] Merge branch 'master' into fix/tutorialNote
a957baa [Hyungsung Shim] fix tutorial note json format.


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

Branch: refs/heads/master
Commit: 6808bdc6966d6be5085003b47296bdc9917fd0a3
Parents: 125a42c
Author: astroshim 
Authored: Wed Dec 21 16:00:45 2016 +0900
Committer: ahyoungryu 
Committed: Fri Dec 23 12:54:19 2016 +0900

--
 notebook/2A94M5J1Z/note.json |  376 --
 notebook/2BWJFTXKJ/note.json | 1024 ++---
 notebook/2BYEZ5EVK/note.json |  739 +++---
 notebook/2C2AUG798/note.json |  595 +++--
 4 files changed, 1586 insertions(+), 1148 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6808bdc6/notebook/2A94M5J1Z/note.json
--
diff --git a/notebook/2A94M5J1Z/note.json b/notebook/2A94M5J1Z/note.json
index 31721db..f3c5b40 100644
--- a/notebook/2A94M5J1Z/note.json
+++ b/notebook/2A94M5J1Z/note.json
@@ -2,162 +2,165 @@
   "paragraphs": [
 {
   "text": "%md\n## Welcome to Zeppelin.\n# This is a live tutorial, 
you can run the code yourself. (Shift-Enter to Run)",
+  "user": "anonymous",
+  "dateUpdated": "Dec 17, 2016 3:32:15 PM",
   "config": {
 "colWidth": 12.0,
-"graph": {
-  "mode": "table",
-  "height": 300.0,
-  "optionOpen": false,
-  "keys": [],
-  "values": [],
-  "groups": [],
-  "scatter": {}
+"editorHide": true,
+"results": [
+  {
+"graph": {
+  "mode": "table",
+  "height": 300.0,
+  "optionOpen": false,
+  "keys": [],
+  "values": [],
+  "groups": [],
+  "scatter": {}
+}
+  }
+],
+"enabled": true,
+"editorSetting": {
+  "language": "markdown",
+  "editOnDblClick": true
 },
-"editorHide": true
+"editorMode": "ace/mode/markdown",
+"tableHide": false
   },
   "settings": {
 "params": {},
 "forms": {}
   },
+  "apps": [],
   "jobName": "paragraph_1423836981412_-1007008116",
   "id": "20150213-231621_168813393",
-  "result": {
+  "results": {
 "code": "SUCCESS",
-"type": "HTML",
-"msg": "\u003ch2\u003eWelcome to 
Zeppelin.\u003c/h2\u003e\n\u003ch5\u003eThis is a live tutorial, you can run 
the code yourself. (Shift-Enter to Run)\u003c/h5\u003e\n"
+"msg": [
+  {
+"type": "HTML",
+"data": "\u003cdiv 
class\u003d\"markdown-body\"\u003e\n\u003ch2\u003eWelcome to 
Zeppelin.\u003c/h2\u003e\n\u003ch5\u003eThis is a live tutorial, you can run 
the code yourself. (Shift-Enter to Run)\u003c/h5\u003e\n\u003c/div\u003e"
+  }
+]
   },
   "dateCreated": "Feb 13, 2015 11:16:21 PM",
-  "dateStarted": "Apr 1, 2015 9:11:09 PM",
-  "dateFinished": "Apr 1, 2015 9:11:10 PM",
+  "dateStarted": "Dec 17, 2016 3:32:15 PM",
+  "dateFinished": "Dec 17, 2016 3:32:18 PM",
   "status": "FINISHED",
   "progressUpdateIntervalMs": 500
 },
 {
   "title": "Loa

[1/4] zeppelin git commit: [BugFix] Tutorial note json format.

2016-12-22 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 125a42ca1 -> 6808bdc69


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6808bdc6/notebook/2C2AUG798/note.json
--
diff --git a/notebook/2C2AUG798/note.json b/notebook/2C2AUG798/note.json
index ad1c98a..7e0a1b7 100644
--- a/notebook/2C2AUG798/note.json
+++ b/notebook/2C2AUG798/note.json
@@ -2,22 +2,31 @@
   "paragraphs": [
 {
   "text": "%md\n## Introduction\nIn this tutorial we will go through some 
of the basic features of Zeppelin\u0027s built-in matplotlib integration. 
\n\n### Prerequisites\n`matplotlib` must be installed to your local python 
installation. (use `pip install matplotlib` or `conda install matplotlib` if 
you have `conda`). Additionally, you will need Zeppelin\u0027s matplotlib 
backend files which are usually found in `$ZEPPELIN_HOME/lib/python`. Although 
Zeppelin should automatically find this directory, it might be a good idea to 
add it to your `PYTHONPATH` just in case. \n\n### Interpreters\nMost of the 
examples shown in this tutorial can be used interchangeably with either the 
`python` or `pyspark` interpreters. Iterative plotting using the Angular 
Display System is currently only available for `pyspark`, but this 
functionality will eventually be added to the base `python` interpreter. 
\n\n### macOS\nMake sure locale is set, to avoid `ValueError: unknown locale: 
UTF-8`\n\n### virtu
 alenv\nIn case you want to use virtualenv or conda env:\n - configure python 
interpreter property -\u003e `absolute/path/to/venv/bin/python`\n - see 
*Working with Matplotlib in Virtual environments* in the [Matplotlib 
FAQ](http://matplotlib.org/faq/virtualenv_faq.html)\n \n### A simple 
example\nLet\u0027s start by making a very simple line plot:",
-  "dateUpdated": "Nov 2, 2016 2:53:47 PM",
+  "user": "anonymous",
+  "dateUpdated": "Dec 17, 2016 3:33:25 PM",
   "config": {
 "tableHide": false,
 "colWidth": 12.0,
-"editorMode": "ace/mode/markdown",
+"editorMode": "ace/mode/text",
 "editorHide": true,
-"graph": {
-  "mode": "table",
-  "height": 300.0,
-  "optionOpen": false,
-  "keys": [],
-  "values": [],
-  "groups": [],
-  "scatter": {}
-},
-"enabled": true
+"enabled": true,
+"results": [
+  {
+"graph": {
+  "mode": "table",
+  "height": 300.0,
+  "optionOpen": false,
+  "keys": [],
+  "values": [],
+  "groups": [],
+  "scatter": {}
+}
+  }
+],
+"editorSetting": {
+  "language": "text",
+  "editOnDblClick": false
+}
   },
   "settings": {
 "params": {},
@@ -26,14 +35,19 @@
   "apps": [],
   "jobName": "paragraph_1478123627954_-1473548609",
   "id": "20160614-174657_1772993700",
-  "result": {
+  "results": {
 "code": "SUCCESS",
-"type": "HTML",
-"msg": "\u003ch2\u003eIntroduction\u003c/h2\u003e\n\u003cp\u003eIn 
this tutorial we will go through some of the basic features of Zeppelin\u0027s 
built-in matplotlib 
integration.\u003c/p\u003e\n\u003ch3\u003ePrerequisites\u003c/h3\u003e\n\u003cp\u003e\u003ccode\u003ematplotlib\u003c/code\u003e
 must be installed to your local python installation. (use \u003ccode\u003epip 
install matplotlib\u003c/code\u003e or \u003ccode\u003econda install 
matplotlib\u003c/code\u003e if you have 
\u003ccode\u003econda\u003c/code\u003e). Additionally, you will need 
Zeppelin\u0027s matplotlib backend files which are usually found in 
\u003ccode\u003e$ZEPPELIN_HOME/lib/python\u003c/code\u003e. Although Zeppelin 
should automatically find this directory, it might be a good idea to add it to 
your \u003ccode\u003ePYTHONPATH\u003c/code\u003e just in 
case.\u003c/p\u003e\n\u003ch3\u003eInterpreters\u003c/h3\u003e\n\u003cp\u003eMost
 of the examples shown in this tutorial can be used interchangeably with ei
 ther the \u003ccode\u003epython\u003c/code\u003e or 
\u003ccode\u003epyspark\u003c/code\u003e interpreters. Iterative plotting using 
the Angular Display System is currently only available for 
\u003ccode\u003epyspark\u003c/code\u003e, but this functionality will 
eventually be added to the base \u003ccode\u003epython\u003c/code\u003e 
interpreter.\u003c/p\u003e\n\u003ch3\u003emacOS\u003c/h3\u003e\n\u003cp\u003eMake
 sure locale is set, to avoid \u003ccode\u003eValueError: unknown locale: 
UTF-8\u003c/code\u003e\u003c/p\u003e\n\u003ch3\u003evirtualenv\u003c/h3\u003e\n\u003cp\u003eIn
 case you want to use virtualenv or conda 
env:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003econfigure python interpreter 
property -\u003e 
\u003ccode\u003eabsolute/path/to/venv/bin/python\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003esee
 \u003cem\u003eWorking with Matplotlib i

[3/4] zeppelin git commit: [BugFix] Tutorial note json format.

2016-12-22 Thread ahyoungryu
http://git-wip-us.apache.org/repos/asf/zeppelin/blob/6808bdc6/notebook/2BWJFTXKJ/note.json
--
diff --git a/notebook/2BWJFTXKJ/note.json b/notebook/2BWJFTXKJ/note.json
index 9ead905..0f28957 100644
--- a/notebook/2BWJFTXKJ/note.json
+++ b/notebook/2BWJFTXKJ/note.json
@@ -3,21 +3,29 @@
 {
   "title": "Hello R",
   "text": "%r\nfoo \u003c- TRUE\nprint(foo)\nbare \u003c- c(1, 2.5, 
4)\nprint(bare)\ndouble \u003c- 15.0\nprint(double)",
-  "dateUpdated": "Feb 23, 2016 2:44:13 AM",
+  "dateUpdated": "Dec 17, 2016 3:48:01 PM",
   "config": {
 "colWidth": 4.0,
-"graph": {
-  "mode": "table",
-  "height": 300.0,
-  "optionOpen": false,
-  "keys": [],
-  "values": [],
-  "groups": [],
-  "scatter": {}
-},
-"editorMode": "ace/mode/scala",
+"editorMode": "ace/mode/text",
 "enabled": true,
-"title": true
+"title": true,
+"results": [
+  {
+"graph": {
+  "mode": "table",
+  "height": 300.0,
+  "optionOpen": false,
+  "keys": [],
+  "values": [],
+  "groups": [],
+  "scatter": {}
+}
+  }
+],
+"editorSetting": {
+  "language": "text",
+  "editOnDblClick": false
+}
   },
   "settings": {
 "params": {},
@@ -26,10 +34,14 @@
   "apps": [],
   "jobName": "paragraph_1429882946244_-381648689",
   "id": "20150424-154226_261270952",
-  "result": {
+  "results": {
 "code": "SUCCESS",
-"type": "TEXT",
-"msg": "[1] TRUE\n[1] 1.0 2.5 4.0\n[1] 15"
+"msg": [
+  {
+"type": "TEXT",
+"data": "[1] TRUE\n[1] 1.0 2.5 4.0\n[1] 15"
+  }
+]
   },
   "dateCreated": "Apr 24, 2015 3:42:26 AM",
   "dateStarted": "Feb 23, 2016 2:44:13 AM",
@@ -43,18 +55,22 @@
   "dateUpdated": "Feb 23, 2016 2:45:12 AM",
   "config": {
 "colWidth": 4.0,
-"graph": {
-  "mode": "table",
-  "height": 300.0,
-  "optionOpen": false,
-  "keys": [],
-  "values": [],
-  "groups": [],
-  "scatter": {}
-},
 "editorMode": "ace/mode/scala",
 "enabled": true,
-"title": true
+"title": true,
+"results": [
+  {
+"graph": {
+  "mode": "table",
+  "height": 300.0,
+  "optionOpen": false,
+  "keys": [],
+  "values": [],
+  "groups": [],
+  "scatter": {}
+}
+  }
+]
   },
   "settings": {
 "params": {},
@@ -63,10 +79,14 @@
   "apps": [],
   "jobName": "paragraph_1429882976611_1352445253",
   "id": "20150424-154256_645296307",
-  "result": {
+  "results": {
 "code": "SUCCESS",
-"type": "TEXT",
-"msg": "V1\n1:  1\n2:  2\n3:  3\n[1] 2\n[1] 4\n[1] 6\n[1] 8\n[1] 10\n 
[1]  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 23\n[24] 
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46\n[47] 47 
48 49 50"
+"msg": [
+  {
+"type": "TEXT",
+"data": "V1\n1:  1\n2:  2\n3:  3\n[1] 2\n[1] 4\n[1] 6\n[1] 8\n[1] 
10\n [1]  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18 19 20 21 22 
23\n[24] 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 
46\n[47] 47 48 49 50"
+  }
+]
   },
   "dateCreated": "Apr 24, 2015 3:42:56 AM",
   "dateStarted": "Feb 23, 2016 2:45:13 AM",
@@ -80,18 +100,22 @@
   "dateUpdated": "Feb 23, 2016 2:45:14 AM",
   "config": {
 "colWidth": 4.0,
-"graph": {
-  "mode": "table",
-  "height": 300.0,
-  "optionOpen": false,
-  "keys": [],
-  "values": [],
-  "groups": [],
-  "scatter": {}
-},
 "enabled": true,
 "editorMode": "ace/mode/scala",
-"title": true
+"title": true,
+"results": [
+  {
+"graph": {
+  "mode": "table",
+  "height": 300.0,
+  "optionOpen": false,
+  "keys": [],
+  "values": [],
+  "groups": [],
+  "scatter": {}
+}
+  }
+]
   },
   "settings": {
 "params": {},
@@ -100,10 +124,14 @@
   "apps": [],
   "jobName": "paragraph_1455138077044_161383897",
   "id": "20160210-220117_115873183",
-  "result": {
+  "results": {
 "code": "SUCCESS",
-"type": "TEXT",
-"msg": "[1] “Sepal.Length” “Sepal.Width”  “Petal.Length” 
“Petal.Width” \n[5] “Species”\u003cbr /\u003e\n  [1] 1.4 1.4 1.3 1.5 
1.4 1.7 1.4 1.5 1.4 1.5 1.5 1.6

zeppelin git commit: [ZEPPELIN-1842] sync on start when anonymous allowed

2016-12-26 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master c65ef0788 -> 91ce62fa9


[ZEPPELIN-1842] sync on start when anonymous allowed

### What is this PR for?
this is to keep backward compatibility when it's possible to sync on start in 
anonymous mode.

### What type of PR is it?
Bug Fix | Improvement

### Todos
* [x] - add sync call with condition

### What is the Jira issue?
[ZEPPELIN-1842](https://issues.apache.org/jira/browse/ZEPPELIN-1842)

### How should this be tested?
1. enable secondary storage (e.g. s3, azure, 
[here](https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/storage/storage.html#notebook-storage-in-s3))
2. keep anonymous mode without authentication
3. start zeppelin -> notes should be synced

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Khalid Huseynov 

Closes #1786 from khalidhuseynov/fix/sync-anonymous and squashes the following 
commits:

66bfa9e [Khalid Huseynov] sync on start when anonymous allowed


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

Branch: refs/heads/master
Commit: 91ce62fa9da673f4fe9f63dd477402ecd7f4d1ea
Parents: c65ef07
Author: Khalid Huseynov 
Authored: Tue Dec 20 18:28:01 2016 +0900
Committer: ahyoungryu 
Committed: Tue Dec 27 10:17:36 2016 +0900

--
 .../org/apache/zeppelin/notebook/repo/NotebookRepoSync.java  | 8 
 1 file changed, 8 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/91ce62fa/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/NotebookRepoSync.java
--
diff --git 
a/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/NotebookRepoSync.java
 
b/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/NotebookRepoSync.java
index 1a513aa..0ca7d69 100644
--- 
a/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/NotebookRepoSync.java
+++ 
b/zeppelin-zengine/src/main/java/org/apache/zeppelin/notebook/repo/NotebookRepoSync.java
@@ -93,6 +93,14 @@ public class NotebookRepoSync implements NotebookRepo {
   LOG.info("No storage could be initialized, using default {} storage", 
defaultStorage);
   initializeDefaultStorage(conf);
 }
+// sync for anonymous mode on start
+if (getRepoCount() > 1 && 
conf.getBoolean(ConfVars.ZEPPELIN_ANONYMOUS_ALLOWED)) {
+  try {
+sync(AuthenticationInfo.ANONYMOUS);
+  } catch (IOException e) {
+LOG.error("Couldn't sync on start ", e);
+  }
+}
   }
 
   @SuppressWarnings("static-access")



zeppelin git commit: [HOTFIX] [ZEPPELIN-1863] Travis Selenium CI fail

2016-12-27 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 71f5cc000 -> 93c2dae9e


[HOTFIX] [ZEPPELIN-1863] Travis Selenium CI fail

### What is this PR for?
Currently, the Selenium CI test of Travis regarding every PR is failing.
I think because it is after merging #1777 PR.

Here is error log.
```
Caused by: org.openqa.selenium.NoSuchElementException: Unable to locate 
element: 
{"method":"xpath","selector":"(//div[ng-controller=\"ParagraphCtrl\"])[2]//div[class=\"control
 ng-scope\"]//ul[class=\"dropdown-menu\"]/li[1]"}

Results :
Tests in error:
  ZeppelinIT.testAngularRunParagraph:291 » NoSuchElement Unable to locate 
elemen...
```

### What type of PR is it?
[Bug Fix | Hot Fix]

### Todos
* [x] fix code regarding this problem

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1863

### How should this be tested?
- None

### Screenshots (if appropriate)
- None

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: soralee 

Closes #1806 from soralee/ZEPPELIN-1863 and squashes the following commits:

b7a8c07 [soralee] travis CI fail for ZeppelinIT.testAngularRunParagraph:291


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

Branch: refs/heads/master
Commit: 93c2dae9e2242168f10aa0daa80d91c06962fa6e
Parents: 71f5cc0
Author: soralee 
Authored: Tue Dec 27 16:42:20 2016 +0900
Committer: ahyoungryu 
Committed: Tue Dec 27 17:52:50 2016 +0900

--
 .../src/test/java/org/apache/zeppelin/integration/ZeppelinIT.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/93c2dae9/zeppelin-server/src/test/java/org/apache/zeppelin/integration/ZeppelinIT.java
--
diff --git 
a/zeppelin-server/src/test/java/org/apache/zeppelin/integration/ZeppelinIT.java 
b/zeppelin-server/src/test/java/org/apache/zeppelin/integration/ZeppelinIT.java
index 9f3611c..07db2da 100644
--- 
a/zeppelin-server/src/test/java/org/apache/zeppelin/integration/ZeppelinIT.java
+++ 
b/zeppelin-server/src/test/java/org/apache/zeppelin/integration/ZeppelinIT.java
@@ -289,7 +289,7 @@ public class ZeppelinIT extends AbstractZeppelinIT {
 
   // Get 2nd paragraph id
   final String secondParagraphId = 
driver.findElement(By.xpath(getParagraphXPath(2)
-  + "//div[@class=\"control 
ng-scope\"]//ul[@class=\"dropdown-menu\"]/li[1]"))
+  + "//div[@class=\"control ng-scope\"]//ul[@class=\"dropdown-menu 
dropdown-menu-right\"]/li[1]"))
   .getAttribute("textContent");
 
   assertTrue("Cannot find paragraph id for the 2nd paragraph", 
isNotBlank(secondParagraphId));



zeppelin git commit: ZEPPELIN-1853. Add README for livy interpreter

2016-12-27 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 16ca1d1fb -> 31c31c6b9


ZEPPELIN-1853. Add README for livy interpreter

### What is this PR for?
Add `README` file for developer, besides update the `livy.md` for the recent 
changes on livy interpreter.

### What type of PR is it?
[Documentation]

### Todos
* [ ] - Task

### What is the Jira issue?
* https://issues.apache.org/jira/browse/ZEPPELIN-1853

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Jeff Zhang 

Closes #1798 from zjffdu/ZEPPELIN-1853 and squashes the following commits:

940ebae [Jeff Zhang] remove upgrade
7233a4d [Jeff Zhang] address comments
72f40c7 [Jeff Zhang] ZEPPELIN-1853. Add README for livy interpreter


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

Branch: refs/heads/master
Commit: 31c31c6b9d9f35b459256354d69616c5eed7d554
Parents: 16ca1d1
Author: Jeff Zhang 
Authored: Mon Dec 26 17:28:52 2016 +0800
Committer: ahyoungryu 
Committed: Wed Dec 28 10:37:55 2016 +0900

--
 docs/interpreter/livy.md | 11 ---
 livy/README.md   | 17 +
 2 files changed, 21 insertions(+), 7 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/31c31c6b/docs/interpreter/livy.md
--
diff --git a/docs/interpreter/livy.md b/docs/interpreter/livy.md
index d725304..067a317 100644
--- a/docs/interpreter/livy.md
+++ b/docs/interpreter/livy.md
@@ -40,9 +40,9 @@ Additional requirements for the Livy interpreter are:
 
 ## Configuration
 We added some common configurations for spark, and you can set any 
configuration you want.
-This link contains all spark configurations: 
http://spark.apache.org/docs/latest/configuration.html#available-properties.
+You can find all Spark configurations in 
[here](http://spark.apache.org/docs/latest/configuration.html#available-properties).
 And instead of starting property with `spark.` it should be replaced with 
`livy.spark.`.
-Example: `spark.master` to `livy.spark.master`
+Example: `spark.driver.memory` to `livy.spark.driver.memory`
   
 
   
@@ -51,11 +51,6 @@ Example: `spark.master` to `livy.spark.master`
 Description
   
   
-  livy.spark.master
-  local[*]
-  Spark master uri. ex) spark://masterhost:7077
-
-  
 zeppelin.livy.url
 http://localhost:8998
 URL where livy server is running
@@ -127,6 +122,8 @@ Example: `spark.master` to `livy.spark.master`
 
 
 
+**We remove livy.spark.master in zeppelin-0.7. Because we sugguest user to use 
livy 0.3 in zeppelin-0.7. And livy 0.3 don't allow to specify 
livy.spark.master, it enfornce yarn-cluster mode.**
+
 ## Adding External libraries
 You can load dynamic library to livy interpreter by set 
`livy.spark.jars.packages` property to comma-separated list of maven 
coordinates of jars to include on the driver and executor classpaths. The 
format for the coordinates should be groupId:artifactId:version. 
 

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/31c31c6b/livy/README.md
--
diff --git a/livy/README.md b/livy/README.md
new file mode 100644
index 000..e0908a8
--- /dev/null
+++ b/livy/README.md
@@ -0,0 +1,17 @@
+# Overview
+Livy interpreter for Apache Zeppelin
+
+# Prerequisities
+You can follow the instructions at [Livy Quick 
Start](http://livy.io/quickstart.html) to set up livy.
+
+# Run Integration Tests
+You can add integration test to 
[LivyInterpreter.java](https://github.com/apache/zeppelin/blob/master/livy/src/test/java/org/apache/zeppelin/livy/LivyInterpreterIT.java)
+Either you can run the integration test on travis where enviroment will be 
setup or you can run it in local. You need to download livy-0.2 and spark-1.5.2 
to local, then use the following
+script to run the integration test.
+
+```bash
+#!/usr/bin/env bash
+export LIVY_HOME=
+export SPARK_HOME=
+mvn clean verify -pl livy -DfailIfNoTests=false -DskipRat
+```
\ No newline at end of file



zeppelin git commit: ZEPPELIN-1844 Apache Ignite dependency upgrade to version 1.8.0

2016-12-27 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 31c31c6b9 -> 336bf6f0d


ZEPPELIN-1844 Apache Ignite dependency upgrade to version 1.8.0

### What is this PR for?
Upgrade Apache Ignite to version 1.8.0 in order to provide new features of SQL 
engine.

### What type of PR is it?
[Improvement]

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1844

Author: agura 

Closes #1801 from agura/ign-upd and squashes the following commits:

e715092 [agura] ZEPPELIN-1844 Apache Ignite dependency upgrade to version 1.8.0
737a3fd [agura] ZEPPELIN-1844 Apache Ignite dependency upgrade to version 1.8.0


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

Branch: refs/heads/master
Commit: 336bf6f0db86d829a2e8910c5f9ed02550c38993
Parents: 31c31c6
Author: agura 
Authored: Sat Dec 24 18:18:35 2016 +0300
Committer: ahyoungryu 
Committed: Wed Dec 28 10:40:19 2016 +0900

--
 docs/install/build.md | 2 +-
 ignite/pom.xml| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/336bf6f0/docs/install/build.md
--
diff --git a/docs/install/build.md b/docs/install/build.md
index 43cc304..f3012a5 100644
--- a/docs/install/build.md
+++ b/docs/install/build.md
@@ -205,7 +205,7 @@ mvn clean package -Pspark-1.5 -Pmapr50 -DskipTests
 Ignite Interpreter
 
 ```bash
-mvn clean package -Dignite.version=1.6.0 -DskipTests
+mvn clean package -Dignite.version=1.8.0 -DskipTests
 ```
 
 Scalding Interpreter

http://git-wip-us.apache.org/repos/asf/zeppelin/blob/336bf6f0/ignite/pom.xml
--
diff --git a/ignite/pom.xml b/ignite/pom.xml
index 4e7ed2c..635036f 100644
--- a/ignite/pom.xml
+++ b/ignite/pom.xml
@@ -32,7 +32,7 @@
   Zeppelin: Apache Ignite interpreter
 
   
-1.7.0
+1.8.0
   
 
   



zeppelin git commit: [ZEPPELIN-1847] fix: Copy only html when html file changed

2016-12-27 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 336bf6f0d -> 3e274e740


[ZEPPELIN-1847] fix: Copy only html when html file changed

### What is this PR for?

Reduce build time by avoiding to copy non-related files. Approx 3~4 secs as you 
can see below.

### What type of PR is it?
[Improvement]

### Todos

Nothing

### What is the Jira issue?

[ZEPPELIN-1847](https://issues.apache.org/jira/browse/ZEPPELIN-1847)

### How should this be tested?

1. `cd zeppelin-web`
2. `npm install` && `npm run start`
3. change any html file in `src/` and see log.
4. compare the result with master branch's

### Screenshots (if appropriate)

```
Running "watch" task
Waiting...
>> File "src/app/home/home.html" changed.

## before

Execution Time (2016-12-22 08:13:35 UTC)
loading tasks   130ms  ▇▇▇ 3%
htmlhint:src 84ms  ▇▇ 2%
newer:copy:dev   3.6s  
▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇
 93%
Total 3.9s
Completed in 5.953s at Thu Dec 22 2016 17:13:39 GMT+0900 (KST) - Waiting…

## after

Execution Time (2016-12-22 08:14:27 UTC)
loading tasks   137ms  
▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇
 52%
newer:htmlhint3ms  ▇ 1%
newer:htmlhint:src   25ms  ▇▇▇▇▇▇▇ 10%
htmlhint:src 89ms  
▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ 34%
newer:copy:html   5ms  ▇▇ 2%
Total 261ms

Completed in 2.447s at Thu Dec 22 2016 17:14:27 GMT+0900 (KST) - Waiting…
```

### Questions:
* Does the licenses files need update? - NO
* Is there breaking changes for older versions? - NO
* Does this needs documentation? - NO

Author: 1ambda <1am...@gmail.com>

Closes #1791 from 1ambda/fix/DONT-copy-all-files-grunt and squashes the 
following commits:

30827e0 [1ambda] fix: Gruntfile.js lint errors
03e95f7 [1ambda] fix: Copy only html when html file changed


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

Branch: refs/heads/master
Commit: 3e274e740a86a3d5577ff540179a3126df056778
Parents: 336bf6f
Author: 1ambda <1am...@gmail.com>
Authored: Thu Dec 22 17:46:24 2016 +0900
Committer: ahyoungryu 
Committed: Wed Dec 28 10:42:20 2016 +0900

--
 zeppelin-web/Gruntfile.js | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/3e274e74/zeppelin-web/Gruntfile.js
--
diff --git a/zeppelin-web/Gruntfile.js b/zeppelin-web/Gruntfile.js
index 40e681a..d7bf179 100644
--- a/zeppelin-web/Gruntfile.js
+++ b/zeppelin-web/Gruntfile.js
@@ -153,7 +153,7 @@ module.exports = function(grunt) {
 files: [
   '<%= yeoman.app %>/**/*.html'
 ],
-tasks: ['newer:htmlhint', 'newer:copy:dev']
+tasks: ['newer:htmlhint', 'newer:copy:html']
   },
   jsTest: {
 files: ['test/spec/{,*/}*.js'],
@@ -552,7 +552,16 @@ module.exports = function(grunt) {
 cwd: '<%= yeoman.app %>',
 dest: '.tmp/styles/',
 src: '{fonts,components,app}/**/*.css'
-  }
+  },
+  html: {
+files: [{
+  expand: true,
+  dot: true,
+  cwd: '<%= yeoman.app %>',
+  dest: '.tmp',
+  src: ['*.html']
+}]
+  },
 },
 
 // Run some tasks in parallel to speed up the build process



zeppelin git commit: [ZEPPELIN-1718] Prevent anonymous user to set note permission

2016-12-27 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 3e274e740 -> 14a38b790


[ZEPPELIN-1718] Prevent anonymous user to set note permission

### What is this PR for?
Currently anonymous user can open the notebook permission page and type sth in 
`Owner`/ `Reader` / `Writer` and then even can save it. However, in fact, it 
doesn't work actually.

e.g.  An anonymous user can type `admin` / `user1` to the note permission 
setting fields.

It doesn't make sense. At least we should disallow the non-authenticated 
users(a.k.a anonymous users) by deactivating those permission related 
features(will handle interpreter owner setting in another PR). So what I did in 
this PR is
 - Block opening notebook permission setting page \w notebook rest api & add 
related docs link: 
https://zeppelin.apache.org/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html

### TODO

- [x] Fix test case

### What type of PR is it?
Bug Fix | Improvement

### What is the Jira issue?
[ZEPPELIN-1718](https://issues.apache.org/jira/browse/ZEPPELIN-1718)

### How should this be tested?
1. Don't activate shiro authentication
2. Open any notes
3. Click lock icon in the top of the note -> warning dialog will be shown \w 
"Only authenticated user can set the permission." sentence

### Screenshots (if appropriate)
 - Doesn't show note permission setting page & show warning dialog if anonymous 
user tries to click lock icon
![block](https://cloud.githubusercontent.com/assets/10060731/21317259/be509bfa-c647-11e6-960e-2f98be4ce09f.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: AhyoungRyu 

Closes #1694 from AhyoungRyu/prevent-anon-user and squashes the following 
commits:

72ecf6a [AhyoungRyu] Fix test cases based on anon user's limitation
f48f991 [AhyoungRyu] Add anon user checking condition
9e83ff5 [AhyoungRyu] Fix minor check-style
e970e25 [AhyoungRyu] Block anon user note permission setting \w notebook rest 
api


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

Branch: refs/heads/master
Commit: 14a38b79059ef6b80e832ca4070ee02becee1b98
Parents: 3e274e7
Author: AhyoungRyu 
Authored: Wed Dec 21 12:29:43 2016 +0900
Committer: ahyoungryu 
Committed: Wed Dec 28 12:14:41 2016 +0900

--
 .../apache/zeppelin/rest/NotebookRestApi.java   | 24 ++-
 .../zeppelin/rest/NotebookRestApiTest.java  | 66 --
 .../rest/NotebookSecurityRestApiTest.java   | 70 ++--
 .../zeppelin/rest/ZeppelinRestApiTest.java  | 65 --
 .../src/app/notebook/notebook.controller.js | 29 
 zeppelin-web/src/app/notebook/notebook.html |  2 +-
 6 files changed, 117 insertions(+), 139 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/14a38b79/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
--
diff --git 
a/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java 
b/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
index 2b9ba11..d197d6f 100644
--- 
a/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
+++ 
b/zeppelin-server/src/main/java/org/apache/zeppelin/rest/NotebookRestApi.java
@@ -93,7 +93,9 @@ public class NotebookRestApi {
   @GET
   @Path("{noteId}/permissions")
   @ZeppelinApi
-  public Response getNotePermissions(@PathParam("noteId") String noteId) {
+  public Response getNotePermissions(@PathParam("noteId") String noteId) 
throws IOException {
+
+checkIfUserIsAnon(blockNotAuthenticatedUserError());
 checkIfUserCanRead(noteId,
 "Insufficient privileges you cannot get the list of permissions for 
this note");
 HashMap> permissionsMap = new HashMap<>();
@@ -111,12 +113,27 @@ public class NotebookRestApi {
 "User belongs to: " + current.toString();
   }
 
+  private String blockNotAuthenticatedUserError() throws IOException {
+LOG.info("Anonymous user cannot set any permissions for this note.");
+return  "Only authenticated user can set the permission.";
+  }
+
   /**
* Set of utils method to check if current user can perform action to the 
note.
* Since we only have security on notebook level, from now we keep this 
logic in this class.
* In the future we might want to generalize this for the rest of the api 
enmdpoints.
*/
-  
+
+  /**
+   * Check if the current user is n

zeppelin git commit: Change gitignore for font files

2016-12-28 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 9e75f5b50 -> 474b801d8


Change gitignore for font files

### What is this PR for?
Some web fonts were changed by 5552319378e8361a16c91df2ba3cdf5519b74d58 but 
`.gitignore` was not changed accordingly.

### What type of PR is it?
Improvement

### Todos

### What is the Jira issue?

### How should this be tested?
Build zeppelin and check `git status` whether there are untracked files.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Sangwoo Lee 

Closes #1792 from marchpig/gitignore and squashes the following commits:

7e6e6a2 [Sangwoo Lee] Change gitignore for font files


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

Branch: refs/heads/master
Commit: 474b801d8ad6c8e851ea44a016593ff3e2890325
Parents: 9e75f5b
Author: Sangwoo Lee 
Authored: Thu Dec 22 22:55:17 2016 +0900
Committer: ahyoungryu 
Committed: Thu Dec 29 10:33:16 2016 +0900

--
 .gitignore | 7 ---
 1 file changed, 4 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/474b801d/.gitignore
--
diff --git a/.gitignore b/.gitignore
index 1d37d39..2f3e370 100644
--- a/.gitignore
+++ b/.gitignore
@@ -39,9 +39,10 @@ reports
 zeppelin-web/node_modules
 zeppelin-web/dist
 zeppelin-web/.tmp
-zeppelin-web/src/fonts/Roboto*
-zeppelin-web/src/fonts/Source-Code-Pro*
-zeppelin-web/src/fonts/Patua-One*
+zeppelin-web/src/fonts/roboto*
+zeppelin-web/src/fonts/source-code-pro*
+zeppelin-web/src/fonts/patua-one*
+zeppelin-web/src/fonts/google-fonts.css
 zeppelin-web/.sass-cache
 zeppelin-web/bower_components
 **nbproject/



zeppelin git commit: [DOCS] Add doc about zeppelin.notebook.public

2016-12-28 Thread ahyoungryu
Repository: zeppelin
Updated Branches:
  refs/heads/master 474b801d8 -> 4c1bc600b


[DOCS] Add doc about zeppelin.notebook.public

### What is this PR for?
Add document about zeppelin.notebook.public

### What type of PR is it?
[Documentation]

### What is the Jira issue?
* No jira created for this

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Jeff Zhang 

Closes #1773 from zjffdu/minor_doc_update and squashes the following commits:

66e0c0a [Jeff Zhang] Revert "add double checking lock for singleton"
92472f9 [Jeff Zhang] add double checking lock for singleton
1cce1c6 [Jeff Zhang] [DOCS] Add doc about zeppelin.notebook.public


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

Branch: refs/heads/master
Commit: 4c1bc600bd9f6e0c2802f61d5095deb4c364ff9a
Parents: 474b801
Author: Jeff Zhang 
Authored: Wed Dec 28 10:32:13 2016 +0800
Committer: ahyoungryu 
Committed: Thu Dec 29 10:35:15 2016 +0900

--
 docs/security/notebook_authorization.md | 2 ++
 1 file changed, 2 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/zeppelin/blob/4c1bc600/docs/security/notebook_authorization.md
--
diff --git a/docs/security/notebook_authorization.md 
b/docs/security/notebook_authorization.md
index b651151..dee3138 100644
--- a/docs/security/notebook_authorization.md
+++ b/docs/security/notebook_authorization.md
@@ -46,6 +46,8 @@ If someone who doesn't have **read** permission is trying to 
access the notebook
 
 
 
+By default when you create a new note, the owner is the user who create it. 
And the readers/writers is empty which means it is shared publicly. But if you 
don't want it to be shared by default. You can set `zeppelin.notebook.public` 
to be false in `zeppelin-site.xml`.
+
 ## How it works
 In this section, we will explain the detail about how the notebook 
authorization works in backend side.
 



svn commit: r1776368 - /zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html

2016-12-28 Thread ahyoungryu
Author: ahyoungryu
Date: Thu Dec 29 01:40:09 2016
New Revision: 1776368

URL: http://svn.apache.org/viewvc?rev=1776368&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html?rev=1776368&r1=1776367&r2=1776368&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html 
(original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/security/notebook_authorization.html Thu 
Dec 29 01:40:09 2016
@@ -236,6 +236,8 @@ If the form is empty (*), it means that
 
 
 
+By default when you create a new note, the owner is the user who create it. 
And the readers/writers is empty which means it is shared publicly. But if you 
don't want it to be shared by default. You can set 
zeppelin.notebook.public to be false in 
zeppelin-site.xml.
+
 How it works
 
 In this section, we will explain the detail about how the notebook 
authorization works in backend side.




svn commit: r1776370 - /zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html

2016-12-28 Thread ahyoungryu
Author: ahyoungryu
Date: Thu Dec 29 02:02:59 2016
New Revision: 1776370

URL: http://svn.apache.org/viewvc?rev=1776370&view=rev
Log: (empty)

Modified:
zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html

Modified: zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html
URL: 
http://svn.apache.org/viewvc/zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html?rev=1776370&r1=1776369&r2=1776370&view=diff
==
--- zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html (original)
+++ zeppelin/site/docs/0.7.0-SNAPSHOT/interpreter/livy.html Thu Dec 29 02:02:59 
2016
@@ -233,9 +233,9 @@ limitations under the License.
 Configuration
 
 We added some common configurations for spark, and you can set any 
configuration you want.
-This link contains all spark configurations: 
http://spark.apache.org/docs/latest/configuration.html#available-properties.
+You can find all Spark configurations in http://spark.apache.org/docs/latest/configuration.html#available-properties";>here.
 And instead of starting property with spark. it should be 
replaced with livy.spark..
-Example: spark.master to livy.spark.master
+Example: spark.driver.memory to 
livy.spark.driver.memory
 
 
   
@@ -244,11 +244,6 @@ Example: spark.master to Description
   
   
-  livy.spark.master
-  local[*]
-  Spark master uri. ex) spark://masterhost:7077
-
-  
 zeppelin.livy.url
 http://localhost:8998
 URL where livy server is running
@@ -320,6 +315,8 @@ Example: spark.master to 
 
 
+We remove livy.spark.master in zeppelin-0.7. Because we sugguest 
user to use livy 0.3 in zeppelin-0.7. And livy 0.3 don't allow to specify 
livy.spark.master, it enfornce yarn-cluster mode.
+
 Adding External libraries
 
 You can load dynamic library to livy interpreter by set 
livy.spark.jars.packages property to comma-separated list of maven 
coordinates of jars to include on the driver and executor classpaths. The 
format for the coordinates should be groupId:artifactId:version. 




  1   2   3   >