Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -142,9 +143,7 @@
 
 <p><a href="https://www.elastic.co/products/elasticsearch";>Elasticsearch</a> 
is a highly scalable open-source full-text search and analytics engine. It 
allows you to store, search, and analyze big volumes of data quickly and in 
near real time. It is generally used as the underlying engine/technology that 
powers applications that have complex search features and requirements.</p>
 
-<p><br /></p>
-
-<h2>1. Configuration</h2>
+<h2>Configuration</h2>
 
 <table class="table-configuration">
   <tr>
@@ -184,19 +183,16 @@
 <p><strong>Note #2 :</strong> If you use Shield, you can add a property named 
<code>shield.user</code> with a value containing the name and the password ( 
format: <code>username:password</code> ). For more details about Shield 
configuration, consult the <a 
href="https://www.elastic.co/guide/en/shield/current/_using_elasticsearch_java_clients_with_shield.html";>Shield
 reference guide</a>. Do not forget, to copy the shield client jar in the 
interpreter directory 
(<code>ZEPPELIN_HOME/interpreters/elasticsearch</code>).</p>
 </blockquote>
 
-<p><br /></p>
-
-<h2>2. Enabling the Elasticsearch Interpreter</h2>
+<h2>Enabling the Elasticsearch Interpreter</h2>
 
 <p>In a notebook, to enable the <strong>Elasticsearch</strong> interpreter, 
click the <strong>Gear</strong> icon and select 
<strong>Elasticsearch</strong>.</p>
 
-<p><br /></p>
-
-<h2>3. Using the Elasticsearch Interpreter</h2>
+<h2>Using the Elasticsearch Interpreter</h2>
 
 <p>In a paragraph, use <code>%elasticsearch</code> to select the Elasticsearch 
interpreter and then input all commands. To get the list of available commands, 
use <code>help</code>.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> <span class="nb">help</span>
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+<span class="nb">help</span>
+
 Elasticsearch interpreter:
 General format: &lt;<span class="nb">command</span>&gt; 
/&lt;indices&gt;/&lt;types&gt;/&lt;id&gt; &lt;option&gt; &lt;JSON&gt;
   - indices: list of indices separated by commas <span 
class="o">(</span>depends on the <span class="nb">command</span><span 
class="o">)</span>
@@ -222,8 +218,8 @@ Commands:
 <h3>Get</h3>
 
 <p>With the <code>get</code> command, you can find a document by id. The 
result is a JSON document.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> get /index/type/id
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+get /index/type/id
 </code></pre></div>
 <p>Example:
 <img src="../assets/themes/zeppelin/img/docs-img/elasticsearch-get.png" 
alt="Elasticsearch - Get"></p>
@@ -245,13 +241,13 @@ Commands:
 <li>See <a 
href="https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-string-syntax";>Elasticsearch
 query string syntax</a> for more details about the content of such a 
query.</li>
 </ul></li>
 </ul>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> search /index1,index2,.../type1,type2,...  &lt;JSON 
document containing the query or query_string elements&gt;
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+search /index1,index2,.../type1,type2,...  &lt;JSON document containing the 
query or query_string elements&gt;
 </code></pre></div>
 <p>If you want to modify the size of the result set, you can add a line that 
is setting the size, before your search command.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> size 50
-<span class="p">|</span> search /index1,index2,.../type1,type2,...  &lt;JSON 
document containing the query or query_string elements&gt;
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+size 50
+search /index1,index2,.../type1,type2,...  &lt;JSON document containing the 
query or query_string elements&gt;
 </code></pre></div>
 <blockquote>
 <p>A search query can also contain <a 
href="https://www.elastic.co/guide/en/elasticsearch/reference/current/search-aggregations.html";>aggregations</a>.
 If there is at least one aggregation, the result of the first aggregation is 
shown, otherwise, you get the search hits.</p>
@@ -261,27 +257,27 @@ Commands:
 
 <ul>
 <li><p>With a JSON query:</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> search / <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;match_all&quot;</span>: <span class="o">{</span> <span 
class="o">}</span> <span class="o">}</span> <span class="o">}</span>
-<span class="p">|</span>
-<span class="p">|</span> %elasticsearch
-<span class="p">|</span> search /logs <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;query_string&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="s2">&quot;request.method:GET 
AND status:200&quot;</span> <span class="o">}</span> <span class="o">}</span> 
<span class="o">}</span>
-<span class="p">|</span>
-<span class="p">|</span> %elasticsearch
-<span class="p">|</span> search /logs <span class="o">{</span> <span 
class="s2">&quot;aggs&quot;</span>: <span class="o">{</span>
-<span class="p">|</span>   <span 
class="s2">&quot;content_length_stats&quot;</span>: <span class="o">{</span>
-<span class="p">|</span>     <span 
class="s2">&quot;extended_stats&quot;</span>: <span class="o">{</span>
-<span class="p">|</span>       <span class="s2">&quot;field&quot;</span>: 
<span class="s2">&quot;content_length&quot;</span>
-<span class="p">|</span>     <span class="o">}</span>
-<span class="p">|</span>   <span class="o">}</span>
-<span class="p">|</span> <span class="o">}</span> <span class="o">}</span> 
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+search / <span class="o">{</span> <span class="s2">&quot;query&quot;</span>: 
<span class="o">{</span> <span class="s2">&quot;match_all&quot;</span>: <span 
class="o">{</span> <span class="o">}</span> <span class="o">}</span> <span 
class="o">}</span>
+
+%elasticsearch
+search /logs <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;query_string&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="s2">&quot;request.method:GET 
AND status:200&quot;</span> <span class="o">}</span> <span class="o">}</span> 
<span class="o">}</span>
+
+%elasticsearch
+search /logs <span class="o">{</span> <span 
class="s2">&quot;aggs&quot;</span>: <span class="o">{</span>
+<span class="s2">&quot;content_length_stats&quot;</span>: <span 
class="o">{</span>
+  <span class="s2">&quot;extended_stats&quot;</span>: <span class="o">{</span>
+    <span class="s2">&quot;field&quot;</span>: <span 
class="s2">&quot;content_length&quot;</span>
+  <span class="o">}</span>
+<span class="o">}</span>
+<span class="o">}</span> <span class="o">}</span> 
 </code></pre></div></li>
 <li><p>With query_string elements:</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> search /logs request.method:GET AND status:200
-<span class="p">|</span>
-<span class="p">|</span> %elasticsearch
-<span class="p">|</span> search /logs <span class="o">(</span>404 AND <span 
class="o">(</span>POST OR DELETE<span class="o">))</span>
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+search /logs request.method:GET AND status:200
+
+%elasticsearch
+search /logs <span class="o">(</span>404 AND <span class="o">(</span>POST OR 
DELETE<span class="o">))</span>
 </code></pre></div></li>
 </ul>
 
@@ -346,8 +342,8 @@ For the Elastic interpreter, the result
 <h3>Count</h3>
 
 <p>With the <code>count</code> command, you can count documents available in 
some indices and types. You can also provide a query.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> count /index1,index2,.../type1,type2,... &lt;JSON 
document containing the query OR a query string&gt;
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+count /index1,index2,.../type1,type2,... &lt;JSON document containing the 
query OR a query string&gt;
 </code></pre></div>
 <p>Examples:</p>
 
@@ -361,24 +357,24 @@ For the Elastic interpreter, the result
 <h3>Index</h3>
 
 <p>With the <code>index</code> command, you can insert/update a document in 
Elasticsearch.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> index /index/type/id &lt;JSON document&gt;
-<span class="p">|</span>
-<span class="p">|</span> %elasticsearch
-<span class="p">|</span> index /index/type &lt;JSON document&gt;
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+index /index/type/id &lt;JSON document&gt;
+
+%elasticsearch
+index /index/type &lt;JSON document&gt;
 </code></pre></div>
 <h3>Delete</h3>
 
 <p>With the <code>delete</code> command, you can delete a document.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> delete /index/type/id
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+delete /index/type/id
 </code></pre></div>
 <h3>Apply Zeppelin Dynamic Forms</h3>
 
 <p>You can leverage <a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicform.html">Zeppelin Dynamic 
Form</a> inside your queries. You can use both the <code>text input</code> and 
<code>select form</code> parameterization features.</p>
-<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash"><span class="p">|</span> %elasticsearch
-<span class="p">|</span> size <span class="k">${</span><span 
class="nv">limit</span><span class="p">=10</span><span class="k">}</span>
-<span class="p">|</span> search /index/type <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;match_all&quot;</span>: <span class="o">{</span> <span 
class="o">}</span> <span class="o">}</span> <span class="o">}</span>
+<div class="highlight"><pre><code class="bash language-bash" 
data-lang="bash">%elasticsearch
+size <span class="k">${</span><span class="nv">limit</span><span 
class="p">=10</span><span class="k">}</span>
+search /index/type <span class="o">{</span> <span 
class="s2">&quot;query&quot;</span>: <span class="o">{</span> <span 
class="s2">&quot;match_all&quot;</span>: <span class="o">{</span> <span 
class="o">}</span> <span class="o">}</span> <span class="o">}</span>
 </code></pre></div>
   </div>
 </div>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/flink.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/flink.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/flink.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/flink.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -142,8 +143,6 @@
 
 <p><a href="https://flink.apache.org";>Apache Flink</a> is an open source 
platform for distributed stream and batch data processing. Flink’s core is a 
streaming dataflow engine that provides data distribution, communication, and 
fault tolerance for distributed computations over data streams. Flink also 
builds batch processing on top of the streaming engine, overlaying native 
iteration support, managed memory, and program optimization.</p>
 
-<p><br></p>
-
 <h2>How to start local Flink cluster, to test the interpreter</h2>
 
 <p>Zeppelin comes with pre-configured flink-local interpreter, which starts 
Flink in a local mode on your machine, so you do not need to install 
anything.</p>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/geode.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/geode.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/geode.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/geode.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -140,7 +141,6 @@
   <div class="col-md-12">
     <h2>Geode/Gemfire OQL Interpreter for Apache Zeppelin</h2>
 
-<p><br/>
 <table class="table-configuration">
   <tr>
     <th>Name</th>
@@ -152,10 +152,9 @@
     <td>GeodeOqlInterpreter</td>
     <td>Provides OQL environment for Apache Geode</td>
   </tr>
-</table></p>
+</table>
 
-<p><br/>
-This interpreter supports the <a 
href="http://geode.incubator.apache.org/";>Geode</a> <a 
href="http://geode-docs.cfapps.io/docs/developing/querying_basics/oql_compared_to_sql.html";>Object
 Query Language (OQL)</a>.  With the OQL-based querying language:</p>
+<p>This interpreter supports the <a 
href="http://geode.incubator.apache.org/";>Geode</a> <a 
href="http://geode-docs.cfapps.io/docs/developing/querying_basics/oql_compared_to_sql.html";>Object
 Query Language (OQL)</a>.  With the OQL-based querying language:</p>
 
 <p><a href="https://www.youtube.com/watch?v=zvzzA9GXu3Q";><img align="right" 
src="http://img.youtube.com/vi/zvzzA9GXu3Q/3.jpg"; alt="zeppelin-view" 
hspace="10" width="200"></img></a></p>
 
@@ -190,28 +189,28 @@ This interpreter supports the <a href="h
 
 <p>You can modify the configuration of the Geode from the 
<code>Interpreter</code> section.  The Geode interpreter expresses the 
following properties:</p>
 
-<p><table class="table-configuration">
-   <tr>
-     <th>Property Name</th>
-     <th>Description</th>
-     <th>Default Value</th>
-   </tr>
-   <tr>
-     <td>geode.locator.host</td>
-     <td>The Geode Locator Host</td>
-     <td>localhost</td>
-   </tr>
-   <tr>
-     <td>geode.locator.port</td>
-     <td>The Geode Locator Port</td>
-     <td>10334</td>
-   </tr>
-   <tr>
-     <td>geode.max.result</td>
-     <td>Max number of OQL result to display to prevent the browser 
overload</td>
-     <td>1000</td>
-   </tr>
- </table></p>
+<table class="table-configuration">
+  <tr>
+    <th>Property Name</th>
+    <th>Description</th>
+    <th>Default Value</th>
+  </tr>
+  <tr>
+    <td>geode.locator.host</td>
+    <td>The Geode Locator Host</td>
+    <td>localhost</td>
+  </tr>
+  <tr>
+    <td>geode.locator.port</td>
+    <td>The Geode Locator Port</td>
+    <td>10334</td>
+  </tr>
+  <tr>
+    <td>geode.max.result</td>
+    <td>Max number of OQL result to display to prevent the browser 
overload</td>
+    <td>1000</td>
+  </tr>
+</table>
 
 <h3>How to use</h3>
 

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/hive.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/hive.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/hive.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/hive.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -142,7 +143,7 @@
 
 <p>The <a href="https://hive.apache.org/";>Apache Hive</a> ™ data warehouse 
software facilitates querying and managing large datasets residing in 
distributed storage. Hive provides a mechanism to project structure onto this 
data and query the data using a SQL-like language called HiveQL. At the same 
time this language also allows traditional map/reduce programmers to plug in 
their custom mappers and reducers when it is inconvenient or inefficient to 
express this logic in HiveQL.</p>
 
-<h2>1. Configuration</h2>
+<h3>Configuration</h3>
 
 <table class="table-configuration">
   <tr>
@@ -204,7 +205,7 @@
 
 <p>This interpreter provides multiple configuration with 
<code>${prefix}</code>. User can set a multiple connection properties by this 
prefix. It can be used like <code>%hive(${prefix})</code>.</p>
 
-<h2>2. How to use</h2>
+<h2>How to use</h2>
 
 <p>Basically, you can use</p>
 <div class="highlight"><pre><code class="sql language-sql" 
data-lang="sql"><span class="o">%</span><span class="n">hive</span>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/ignite.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/ignite.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/ignite.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/ignite.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -153,58 +154,57 @@
 <p>In order to use Ignite interpreters, you may install Apache Ignite in some 
simple steps:</p>
 
 <ol>
-<li><p>Download Ignite <a 
href="https://ignite.apache.org/download.html#sources";>source release</a> or <a 
href="https://ignite.apache.org/download.html#binaries";>binary release</a> 
whatever you want. But you must download Ignite as the same version of 
Zeppelin&#39;s. If it is not, you can&#39;t use scala code on Zeppelin. You can 
find ignite version in Zepplin at the pom.xml which is placed under 
<code>path/to/your-Zeppelin/ignite/pom.xml</code> ( Of course, in Zeppelin 
source release ). Please check <code>ignite.version</code> .<br>Currently, 
Zeppelin provides ignite only in Zeppelin source release. So, if you download 
Zeppelin binary release( 
<code>zeppelin-0.5.0-incubating-bin-spark-xxx-hadoop-xx</code> ), you can not 
use ignite interpreter on Zeppelin. We are planning to include ignite in a 
future binary release.</p></li>
-<li><p>Examples are shipped as a separate Maven project, so to start running 
you simply need to import provided 
<dest_dir>/apache-ignite-fabric-1.2.0-incubating-bin/pom.xml file into your 
favourite IDE, such as Eclipse. </p></li>
+<li>Download Ignite <a 
href="https://ignite.apache.org/download.html#sources";>source release</a> or <a 
href="https://ignite.apache.org/download.html#binaries";>binary release</a> 
whatever you want. But you must download Ignite as the same version of 
Zeppelin&#39;s. If it is not, you can&#39;t use scala code on Zeppelin. You can 
find ignite version in Zepplin at the pom.xml which is placed under 
<code>path/to/your-Zeppelin/ignite/pom.xml</code> ( Of course, in Zeppelin 
source release ). Please check <code>ignite.version</code> .<br>Currently, 
Zeppelin provides ignite only in Zeppelin source release. So, if you download 
Zeppelin binary release( 
<code>zeppelin-0.5.0-incubating-bin-spark-xxx-hadoop-xx</code> ), you can not 
use ignite interpreter on Zeppelin. We are planning to include ignite in a 
future binary release. </li>
+<li>Examples are shipped as a separate Maven project, so to start running you 
simply need to import provided 
<dest_dir>/apache-ignite-fabric-1.2.0-incubating-bin/pom.xml file into your 
favourite IDE, such as Eclipse. </li>
 </ol>
 
 <ul>
 <li>In case of Eclipse, Eclipse -&gt; File -&gt; Import -&gt; Existing Maven 
Projects</li>
 <li>Set examples directory path to Eclipse and select the pom.xml.</li>
-<li><p>Then start <code>org.apache.ignite.examples.ExampleNodeStartup</code> 
(or whatever you want) to run at least one or more ignite node. When you run 
example code, you may notice that the number of node is increase one by one. 
</p>
+<li>Then start <code>org.apache.ignite.examples.ExampleNodeStartup</code> (or 
whatever you want) to run at least one or more ignite node. When you run 
example code, you may notice that the number of node is increase one by one. 
</li>
+</ul>
 
 <blockquote>
 <p><strong>Tip. If you want to run Ignite examples on the cli not IDE, you can 
export executable Jar file from IDE. Then run it by using below 
command.</strong></p>
 </blockquote>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">$ nohup java -jar &lt;/path/to/your Jar file name&gt; 
-</code></pre></div></li>
-</ul>
-
+</code></pre></div>
 <h3>Configuring Ignite Interpreter</h3>
 
 <p>At the &quot;Interpreters&quot; menu, you may edit Ignite interpreter or 
create new one. Zeppelin provides these properties for Ignite.</p>
 
-<p><table class="table-configuration">
+<table class="table-configuration">
+  <tr>
+    <th>Property Name</th>
+    <th>value</th>
+    <th>Description</th>
+  </tr>
+  <tr>
+    <td>ignite.addresses</td>
+    <td>127.0.0.1:47500..47509</td>
+    <td>Coma separated list of Ignite cluster hosts. See [Ignite Cluster 
Configuration](https://apacheignite.readme.io/v1.2/docs/cluster-config) section 
for more details.</td>
+  </tr>
+  <tr>
+    <td>ignite.clientMode</td>
+    <td>true</td>
+    <td>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.</td>
+  </tr>
+  <tr>
+    <td>ignite.config.url</td>
+    <td></td>
+    <td>Configuration URL. Overrides all other settings.</td>
+  </tr>
+  <tr>
+    <td>ignite.jdbc.url</td>
+    <td>jdbc:ignite:cfg://default-ignite-jdbc.xml</td>
+    <td>Ignite JDBC connection URL.</td>
+  </tr>
   <tr>
-      <th>Property Name</th>
-      <th>value</th>
-      <th>Description</th>
-  </tr>
-  <tr>
-      <td>ignite.addresses</td>
-      <td>127.0.0.1:47500..47509</td>
-      <td>Coma separated list of Ignite cluster hosts. See <a 
href="https://apacheignite.readme.io/v1.2/docs/cluster-config";>Ignite Cluster 
Configuration</a> section for more details.</td>
-  </tr>
-  <tr>
-      <td>ignite.clientMode</td>
-      <td>true</td>
-      <td>You can connect to the Ignite cluster as client or server node. See 
<a href="https://apacheignite.readme.io/v1.2/docs/clients-vs-servers";>Ignite 
Clients vs. Servers</a> section for details. Use true or false values in order 
to connect in client or server mode respectively.</td>
-  </tr>
-  <tr>
-      <td>ignite.config.url</td>
-      <td></td>
-      <td>Configuration URL. Overrides all other settings.</td>
-   </tr
-   <tr>
-      <td>ignite.jdbc.url</td>
-      <td>jdbc:ignite:cfg://default-ignite-jdbc.xml</td>
-      <td>Ignite JDBC connection URL.</td>
-   </tr>
-   <tr>
-      <td>ignite.peerClassLoadingEnabled</td>
-      <td>true</td>
-      <td>Enables peer-class-loading. See <a 
href="https://apacheignite.readme.io/v1.2/docs/zero-deployment";>Zero 
Deployment</a> section for details. Use true or false values in order to enable 
or disable P2P class loading respectively.</td>
+    <td>ignite.peerClassLoadingEnabled</td>
+    <td>true</td>
+    <td>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.</td>
   </tr>
- </table></p>
+</table>
 
 <p><img 
src="../assets/themes/zeppelin/img/docs-img/ignite-interpreter-setting.png" 
alt="Configuration of Ignite Interpreter"></p>
 
@@ -221,27 +221,27 @@
 <p>In order to execute SQL query, use <code>%ignite.ignitesql</code> prefix. 
<br>
 Supposing you are running 
<code>org.apache.ignite.examples.streaming.wordcount.StreamWords</code>, then 
you can use &quot;words&quot; cache( Of course you have to specify this cache 
name to the Ignite interpreter setting section <code>ignite.jdbc.url</code> of 
Zeppelin ). 
 For example, you can select top 10 words in the words cache using the 
following query</p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 %ignite.ignitesql 
-  select _val, count(_val) as cnt from String group by _val order by cnt desc 
limit 10 
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">%ignite.ignitesql 
+select _val, count(_val) as cnt from String group by _val order by cnt desc 
limit 10 
 </code></pre></div>
 <p><img src="../assets/themes/zeppelin/img/docs-img/ignite-sql-example.png" 
alt="IgniteSql on Zeppelin"></p>
 
 <p>As long as your Ignite version and Zeppelin Ignite version is same, you can 
also use scala code. Please check the Zeppelin Ignite version before you 
download your own Ignite. </p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 %ignite
-  import org.apache.ignite._
-  import org.apache.ignite.cache.affinity._
-  import org.apache.ignite.cache.query._
-  import org.apache.ignite.configuration._
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">%ignite
+import org.apache.ignite._
+import org.apache.ignite.cache.affinity._
+import org.apache.ignite.cache.query._
+import org.apache.ignite.configuration._
 
-  import scala.collection.JavaConversions._
+import scala.collection.JavaConversions._
 
-  val cache: IgniteCache[AffinityUuid, String] = 
ignite.cache(&quot;words&quot;)
+val cache: IgniteCache[AffinityUuid, String] = ignite.cache(&quot;words&quot;)
 
-  val qry = new SqlFieldsQuery(&quot;select avg(cnt), min(cnt), max(cnt) from 
(select count(_val) as cnt from String group by _val)&quot;, true)
+val qry = new SqlFieldsQuery(&quot;select avg(cnt), min(cnt), max(cnt) from 
(select count(_val) as cnt from String group by _val)&quot;, true)
 
-  val res = cache.query(qry).getAll()
+val res = cache.query(qry).getAll()
 
-  collectionAsScalaIterable(res).foreach(println _)
+collectionAsScalaIterable(res).foreach(println _)
 </code></pre></div>
 <p><img src="../assets/themes/zeppelin/img/docs-img/ignite-scala-example.png" 
alt="Using Scala Code"></p>
 

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/lens.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/lens.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/lens.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/lens.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -153,69 +154,69 @@
 <ol>
 <li>Download Lens for latest version from <a 
href="http://www.apache.org/dyn/closer.lua/lens/2.3-beta";>the ASF</a>. Or the 
older release can be found <a href="http://archive.apache.org/dist/lens/";>in 
the Archives</a>.</li>
 <li>Before running Lens, you have to set HIVE<em>HOME and HADOOP</em>HOME. If 
you want to get more information about this, please refer to <a 
href="http://lens.apache.org/lenshome/install-and-run.html#Installation";>here</a>.
 Lens also provides Pseudo Distributed mode. <a 
href="http://lens.apache.org/lenshome/pseudo-distributed-setup.html";>Lens 
pseudo-distributed setup</a> is done by using <a 
href="https://www.docker.com/";>docker</a>. Hive server and hadoop daemons are 
run as separate processes in lens pseudo-distributed setup. </li>
-<li><p>Now, you can start lens server (or stop).</p>
-<div class="highlight"><pre><code class="text language-text" 
data-lang="text">./bin/lens-ctl start (or stop)
-</code></pre></div></li>
+<li>Now, you can start lens server (or stop).</li>
 </ol>
-
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">./bin/lens-ctl start (or stop)
+</code></pre></div>
 <h3>Configuring Lens Interpreter</h3>
 
 <p>At the &quot;Interpreters&quot; menu, you can edit Lens interpreter or 
create new one. Zeppelin provides these properties for Lens.</p>
 
-<p><table class="table-configuration">
+<table class="table-configuration">
   <tr>
-      <th>Property Name</th>
-      <th>value</th>
-      <th>Description</th>
+    <th>Property Name</th>
+    <th>value</th>
+    <th>Description</th>
   </tr>
   <tr>
-      <td>lens.client.dbname</td>
-      <td>default</td>
-      <td>The database schema name</td>
+    <td>lens.client.dbname</td>
+    <td>default</td>
+    <td>The database schema name</td>
   </tr>
   <tr>
-      <td>lens.query.enable.persistent.resultset</td>
-      <td>false</td>
-      <td>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. The file name of query output is queryhandle-id, with 
configured extensions</td>
+    <td>lens.query.enable.persistent.resultset</td>
+    <td>false</td>
+    <td>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. The file name of query output is queryhandle-id, with 
configured extensions</td>
   </tr>
   <tr>
-      <td>lens.server.base.url</td>
-      <td>http://hostname:port/lensapi</td>
-      <td>The base url for the lens server. you have to edit 
&quot;hostname&quot; and &quot;port&quot; that you may use(ex. 
http://0.0.0.0:9999/lensapi)</td>
+    <td>lens.server.base.url</td>
+    <td>http://hostname:port/lensapi</td>
+    <td>The base url for the lens server. you have to edit "hostname" and 
"port" that you may use(ex. http://0.0.0.0:9999/lensapi)</td>
    </tr>
    <tr>
-      <td>lens.session.cluster.user </td>
-      <td>default</td>
-      <td>Hadoop cluster username</td>
+    <td>lens.session.cluster.user </td>
+    <td>default</td>
+    <td>Hadoop cluster username</td>
   </tr>
   <tr>
-      <td>zeppelin.lens.maxResult</td>
-      <td>1000</td>
-      <td>Max number of rows to display</td>
+    <td>zeppelin.lens.maxResult</td>
+    <td>1000</td>
+    <td>Max number of rows to display</td>
   </tr>
   <tr>
-      <td>zeppelin.lens.maxThreads</td>
-      <td>10</td>
-      <td>If concurrency is true then how many threads?</td>
+    <td>zeppelin.lens.maxThreads</td>
+    <td>10</td>
+    <td>If concurrency is true then how many threads?</td>
   </tr>
   <tr>
-      <td>zeppelin.lens.run.concurrent</td>
-      <td>true</td>
-      <td>Run concurrent Lens Sessions</td>
+    <td>zeppelin.lens.run.concurrent</td>
+    <td>true</td>
+    <td>Run concurrent Lens Sessions</td>
   </tr>
   <tr>
-      <td>xxx</td>
-      <td>yyy</td>
-      <td>anything else from <a 
href="https://lens.apache.org/admin/config-server.html";>Configuring lens 
server</a></td>
+    <td>xxx</td>
+    <td>yyy</td>
+    <td>anything else from [Configuring lens 
server](https://lens.apache.org/admin/config-server.html)</td>
   </tr>
- </table></p>
+</table>
 
 <p><img 
src="../assets/themes/zeppelin/img/docs-img/lens-interpreter-setting.png" 
alt="Apache Lens Interpreter Setting"></p>
 
 <h3>Interpreter Bindging for Zeppelin Notebook</h3>
 
-<p>After configuring Lens interpreter, create your own notebook, then you can 
bind interpreters like below image. 
-<img src="../assets/themes/zeppelin/img/docs-img/lens-interpreter-binding.png" 
alt="Zeppelin Notebook Interpreter Biding"></p>
+<p>After configuring Lens interpreter, create your own notebook, then you can 
bind interpreters like below image.</p>
+
+<p><img 
src="../assets/themes/zeppelin/img/docs-img/lens-interpreter-binding.png" 
alt="Zeppelin Notebook Interpreter Biding"></p>
 
 <p>For more interpreter binding information see <a 
href="http://zeppelin.incubator.apache.org/docs/manual/interpreters.html";>here</a>.</p>
 
@@ -226,32 +227,32 @@ You may experience OLAP Cube like this <
 As you can see in this video, they are using Lens Client 
Shell(./bin/lens-cli.sh). All of these functions also can be used on Zeppelin 
by using Lens interpreter.</p>
 
 <p><li> Create and Use(Switch) Databases.</p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 create database newDb
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  use newDb
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">create database newDb
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">use newDb
 </code></pre></div>
 <p><li> Create Storage.</p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 create storage your/path/to/lens/client/examples/resources/db-storage.xml
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">create storage 
your/path/to/lens/client/examples/resources/db-storage.xml
 </code></pre></div>
 <p><li> Create Dimensions, Show fields and join-chains of them. </p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 create dimension your/path/to/lens/client/examples/resources/customer.xml
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  dimension show fields customer
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  dimension show joinchains customer
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">create dimension 
your/path/to/lens/client/examples/resources/customer.xml
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">dimension show fields customer
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">dimension show joinchains customer
 </code></pre></div>
 <p><li> Create Caches, Show fields and join-chains of them.</p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 create cube your/path/to/lens/client/examples/resources/sales-cube.xml 
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  cube show fields sales
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  cube show joinchains sales
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">create cube 
your/path/to/lens/client/examples/resources/sales-cube.xml 
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">cube show fields sales
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">cube show joinchains sales
 </code></pre></div>
 <p><li> Create Dimtables and Fact. </p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 create dimtable your/path/to/lens/client/examples/resources/customer_table.xml
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  create fact 
your/path/to/lens/client/examples/resources/sales-raw-fact.xml
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">create dimtable 
your/path/to/lens/client/examples/resources/customer_table.xml
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">create fact 
your/path/to/lens/client/examples/resources/sales-raw-fact.xml
 </code></pre></div>
 <p><li> Add partitions to Dimtable and Fact.</p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 dimtable add single-partition --dimtable_name customer_table --storage_name 
local --path your/path/to/lens/client/examples/resources/customer-local-part.xml
-</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">  fact add partitions --fact_name 
sales_raw_fact --storage_name local --path 
your/path/to/lens/client/examples/resources/sales-raw-local-parts.xml
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">dimtable add single-partition --dimtable_name customer_table 
--storage_name local --path 
your/path/to/lens/client/examples/resources/customer-local-part.xml
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">fact add partitions --fact_name sales_raw_fact 
--storage_name local --path 
your/path/to/lens/client/examples/resources/sales-raw-local-parts.xml
 </code></pre></div>
 <p><li> Now, you can run queries on cubes.</p>
-<div class="highlight"><pre><code class="text language-text" data-lang="text"> 
 query execute cube select customer_city_name, product_details.description, 
product_details.category, product_details.color, store_sales from sales where 
time_range_in(delivery_time, &#39;2015-04-11-00&#39;, &#39;2015-04-13-00&#39;)
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">query execute cube select customer_city_name, 
product_details.description, product_details.category, product_details.color, 
store_sales from sales where time_range_in(delivery_time, 
&#39;2015-04-11-00&#39;, &#39;2015-04-13-00&#39;)
 </code></pre></div>
 <p><img src="../assets/themes/zeppelin/img/docs-img/lens-result.png" alt="Lens 
Query Result"></p>
 

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/markdown.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/markdown.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/markdown.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/markdown.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/postgresql.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/postgresql.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/postgresql.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/postgresql.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -140,7 +141,6 @@
   <div class="col-md-12">
     <h2>PostgreSQL, HAWQ  Interpreter for Apache Zeppelin</h2>
 
-<p><br/>
 <table class="table-configuration">
   <tr>
     <th>Name</th>
@@ -152,10 +152,9 @@
     <td>PostgreSqlInterpreter</td>
     <td>Provides SQL environment for PostgreSQL, HAWQ and Greenplum</td>
   </tr>
-</table></p>
+</table>
 
-<p><br/>
-<a href="https://www.youtube.com/watch?v=wqXXQhJ5Uk8";><img align="right" 
src="http://img.youtube.com/vi/wqXXQhJ5Uk8/0.jpg"; alt="zeppelin-view" 
hspace="10" width="250"></img></a></p>
+<p><a href="https://www.youtube.com/watch?v=wqXXQhJ5Uk8";><img align="right" 
src="http://img.youtube.com/vi/wqXXQhJ5Uk8/0.jpg"; alt="zeppelin-view" 
hspace="10" width="250"></img></a></p>
 
 <p>This interpreter seamlessly supports the following SQL data processing 
engines:</p>
 
@@ -187,38 +186,38 @@
 
 <p>You can modify the configuration of the PSQL from the 
<code>Interpreter</code> section.  The PSQL interpreter expenses the following 
properties:</p>
 
-<p><table class="table-configuration">
-   <tr>
-     <th>Property Name</th>
-     <th>Description</th>
-     <th>Default Value</th>
-   </tr>
-   <tr>
-     <td>postgresql.url</td>
-     <td>JDBC URL to connect to </td>
-     <td>jdbc:postgresql://localhost:5432</td>
-   </tr>
-   <tr>
-     <td>postgresql.user</td>
-     <td>JDBC user name</td>
-     <td>gpadmin</td>
-   </tr>
-   <tr>
-     <td>postgresql.password</td>
-     <td>JDBC password</td>
-     <td></td>
-   </tr>
-   <tr>
-     <td>postgresql.driver.name</td>
-     <td>JDBC driver name. In this version the driver name is fixed and should 
not be changed</td>
-     <td>org.postgresql.Driver</td>
-   </tr>
-   <tr>
-     <td>postgresql.max.result</td>
-     <td>Max number of SQL result to display to prevent the browser 
overload</td>
-     <td>1000</td>
-   </tr><br>
- </table></p>
+<table class="table-configuration">
+  <tr>
+    <th>Property Name</th>
+    <th>Description</th>
+    <th>Default Value</th>
+  </tr>
+  <tr>
+    <td>postgresql.url</td>
+    <td>JDBC URL to connect to </td>
+    <td>jdbc:postgresql://localhost:5432</td>
+  </tr>
+  <tr>
+    <td>postgresql.user</td>
+    <td>JDBC user name</td>
+    <td>gpadmin</td>
+  </tr>
+  <tr>
+    <td>postgresql.password</td>
+    <td>JDBC password</td>
+    <td></td>
+  </tr>
+  <tr>
+    <td>postgresql.driver.name</td>
+    <td>JDBC driver name. In this version the driver name is fixed and should 
not be changed</td>
+    <td>org.postgresql.Driver</td>
+  </tr>
+  <tr>
+    <td>postgresql.max.result</td>
+    <td>Max number of SQL result to display to prevent the browser 
overload</td>
+    <td>1000</td>
+  </tr>
+</table>
 
 <h3>How to use</h3>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">Tip: Use (CTRL + .) for SQL auto-completion.

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/scalding.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/scalding.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/scalding.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/scalding.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -151,11 +152,13 @@
 
 <p>In a notebook, to enable the <strong>Scalding</strong> interpreter, click 
on the <strong>Gear</strong> icon,select <strong>Scalding</strong>, and hit 
<strong>Save</strong>.</p>
 
-<p><center>
- <img 
src="../assets/themes/zeppelin/img/docs-img/scalding-InterpreterBinding.png" 
alt="Interpreter Binding"></p>
+<p><center></p>
 
-<p><img 
src="../assets/themes/zeppelin/img/docs-img/scalding-InterpreterSelection.png" 
alt="Interpreter Selection">
- </center></p>
+<p><img 
src="../assets/themes/zeppelin/img/docs-img/scalding-InterpreterBinding.png" 
alt="Interpreter Binding"></p>
+
+<p><img 
src="../assets/themes/zeppelin/img/docs-img/scalding-InterpreterSelection.png" 
alt="Interpreter Selection"></p>
+
+<p></center></p>
 
 <h3>Configuring the Interpreter</h3>
 

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/spark.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/spark.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/spark.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/interpreter/spark.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -171,8 +172,6 @@ Spark Interpreter group, which consisted
   </tr>
 </table>
 
-<p><br /></p>
-
 <h2>Configuration</h2>
 
 <p>Without any configuration, Spark interpreter works out of box in local 
mode. But if you want to connect to your Spark cluster, you&#39;ll need to 
follow below two simple steps.</p>
@@ -207,8 +206,6 @@ Spark Interpreter group, which consisted
 <p>Note that without exporting <code>SPARK_HOME</code>, it&#39;s running in 
local mode with included version of Spark. The included version may vary 
depending on the build profile.</p>
 </blockquote>
 
-<p><br /></p>
-
 <h2>SparkContext, SQLContext, ZeppelinContext</h2>
 
 <p>SparkContext, SQLContext, ZeppelinContext are automatically created and 
exposed as variable names &#39;sc&#39;, &#39;sqlContext&#39; and &#39;z&#39;, 
respectively, both in scala and python environments.</p>
@@ -217,8 +214,7 @@ Spark Interpreter group, which consisted
 <p>Note that scala / python environment shares the same SparkContext, 
SQLContext, ZeppelinContext instance.</p>
 </blockquote>
 
-<p><br />
-<a name="dependencyloading"> </a></p>
+<p><a name="dependencyloading"> </a></p>
 
 <h2>Dependency Management</h2>
 
@@ -319,8 +315,6 @@ spark.files             /path/mylib1.py,
 </code></pre></div></li>
 </ul>
 
-<p><br /></p>
-
 <h2>ZeppelinContext</h2>
 
 <p>Zeppelin automatically injects ZeppelinContext as variable &#39;z&#39; in 
your scala/python environment. ZeppelinContext provides some additional 
functions and utility.</p>
@@ -328,9 +322,11 @@ spark.files             /path/mylib1.py,
 <h3>Object Exchange</h3>
 
 <p>ZeppelinContext extends map and it&#39;s shared between scala, python 
environment.
-So you can put some object from scala and read it from python, vise versa.
+So you can put some object from scala and read it from python, vise versa.</p>
+
 <div class="codetabs">
-  <div data-lang="scala" markdown="1"></p>
+  <div data-lang="scala" markdown="1">
+
 
 <div class="highlight"><pre><code class="scala"><span class="c1">// Put object 
from scala</span>
 <span class="o">%</span><span class="n">spark</span>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicform.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicform.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicform.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicform.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Added: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html?rev=1725856&view=auto
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html
 (added)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html
 Thu Jan 21 02:24:45 2016
@@ -0,0 +1,291 @@
+
+<!DOCTYPE html>
+<html lang="en">
+  <head>
+    <meta charset="utf-8">
+    <title>Dynamic Interpreter Loading</title>
+    <meta name="description" content="">
+    <meta name="author" content="The Apache Software Foundation">
+
+    <!-- Enable responsive viewport -->
+    <meta name="viewport" content="width=device-width, initial-scale=1.0">
+
+    <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
+    <!--[if lt IE 9]>
+      <script 
src="http://html5shim.googlecode.com/svn/trunk/html5.js";></script>
+    <![endif]-->
+
+    <!-- Le styles -->
+    <link 
href="/docs/0.6.0-incubating-SNAPSHOT/assets/themes/zeppelin/bootstrap/css/bootstrap.css"
 rel="stylesheet">
+    <link 
href="/docs/0.6.0-incubating-SNAPSHOT/assets/themes/zeppelin/css/style.css?body=1"
 rel="stylesheet" type="text/css">
+    <link 
href="/docs/0.6.0-incubating-SNAPSHOT/assets/themes/zeppelin/css/syntax.css" 
rel="stylesheet"  type="text/css" media="screen" /> 
+    <!-- Le fav and touch icons -->
+    <!-- Update these with your own images
+    <link rel="shortcut icon" href="images/favicon.ico">
+    <link rel="apple-touch-icon" href="images/apple-touch-icon.png">
+    <link rel="apple-touch-icon" sizes="72x72" 
href="images/apple-touch-icon-72x72.png">
+    <link rel="apple-touch-icon" sizes="114x114" 
href="images/apple-touch-icon-114x114.png">
+    -->
+
+    <!-- Js -->
+    <script src="https://code.jquery.com/jquery-1.10.2.min.js";></script>
+    <script 
src="/docs/0.6.0-incubating-SNAPSHOT/assets/themes/zeppelin/bootstrap/js/bootstrap.min.js"></script>
+    <script 
src="/docs/0.6.0-incubating-SNAPSHOT/assets/themes/zeppelin/js/docs.js"></script>
+
+    <!-- atom & rss feed -->
+    <link href="/docs/0.6.0-incubating-SNAPSHOT/atom.xml" 
type="application/atom+xml" rel="alternate" title="Sitewide ATOM Feed">
+    <link href="/docs/0.6.0-incubating-SNAPSHOT/rss.xml" 
type="application/rss+xml" rel="alternate" title="Sitewide RSS Feed">
+  </head>
+
+  <body>
+    
+        <div id="menu" class="navbar navbar-inverse navbar-fixed-top" 
role="navigation">
+      <div class="container">
+        <div class="navbar-header">
+          <button type="button" class="navbar-toggle" data-toggle="collapse" 
data-target=".navbar-collapse">
+            <span class="sr-only">Toggle navigation</span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+            <span class="icon-bar"></span>
+          </button>
+          <a class="navbar-brand" href="/docs/0.6.0-incubating-SNAPSHOT">
+            <img src="/assets/themes/zeppelin/img/zeppelin_logo.png" 
width="50" alt="I'm zeppelin">
+            <span style="vertical-align:middle">Zeppelin</span>
+            <span 
style="vertical-align:baseline"><small>(0.6.0-incubating-SNAPSHOT)</small></span>
+          </a>
+        </div>
+        <nav class="navbar-collapse collapse" role="navigation">
+          <ul class="nav navbar-nav">
+            <li>
+              <a href="#" data-toggle="dropdown" class="dropdown-toggle">Quick 
Start <b class="caret"></b></a>
+              <ul class="dropdown-menu">
+                <!-- li><span><b>Overview</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/index.html">Overview</a></li>
+                <li role="separator" class="divider"></li>
+                <!-- li><span><b>Install</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/install/install.html">Install</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/install/yarn_install.html">YARN 
Install</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/install/virtual_machine.html">Virtual 
Machine Install</a></li>
+                <li role="separator" class="divider"></li>
+                <!-- li><span><b>Tutorial</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/tutorial/tutorial.html">Tutorial</a></li>
+                <li role="separator" class="divider"></li>
+                <!-- li><span><b>Guide</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicform.html">Dynamic 
Form</a></li>
+              </ul>
+            </li>
+            <li>
+              <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
+              <ul class="dropdown-menu">
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
+                <li role="separator" class="divider"></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/flink.html">Flink</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/geode.html">Geode</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/hive.html">Hive</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/ignite.html">Ignite</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/lens.html">Lens</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/markdown.html">Markdown</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/postgresql.html">Postgresql, 
hawq</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/scalding.html">Scalding</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/pleasecontribute.html">Shell</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/spark.html">Spark</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/pleasecontribute.html">Tajo</a></li>
+              </ul>
+            </li>
+            <li>
+              <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Display System <b class="caret"></b></a>
+              <ul class="dropdown-menu">
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/displaysystem/display.html">Text</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/displaysystem/display.html#html">Html</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/displaysystem/table.html">Table</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/displaysystem/angular.html">Angular</a></li>
+              </ul>
+            </li>
+            <li>
+              <a href="#" data-toggle="dropdown" class="dropdown-toggle">More 
<b class="caret"></b></a>
+              <ul class="dropdown-menu">
+                <!-- li><span><b>Manual</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/notebookashomepage.html">Notebook 
as Homepage</a></li>
+                <li role="separator" class="divider"></li>
+                <!-- li><span><b>Notebook Storage</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html#Git">Git 
Storage</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html#S3">S3 
Storage</a></li>
+                <li role="separator" class="divider"></li>
+                <!-- li><span><b>REST API</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-interpreter.html">Interpreter
 API</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-notebook.html">Notebook 
API</a></li>
+                <li role="separator" class="divider"></li>
+                <!-- li><span><b>Development</b><span></li -->
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/development/writingzeppelininterpreter.html">Writing
 Zeppelin Interpreter</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/development/howtocontribute.html">How to 
contribute (code)</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/development/howtocontributewebsite.html">How
 to contribute (website)</a></li>
+              </ul>
+            </li>
+          </ul>
+        </nav><!--/.navbar-collapse -->
+      </div>
+    </div>
+
+
+    <div class="container">
+      
+<!--<div class="hero-unit Dynamic Interpreter Loading">
+  <h1></h1>
+</div>
+-->
+
+<div class="row">
+  <div class="col-md-12">
+    <!--
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+-->
+
+<h2>Dynamic Interpreter Loading using REST API</h2>
+
+<p>Zeppelin provides pluggable interpreter architecture which results in a 
wide and variety of the supported backend system. In this section, we will 
introduce <strong>Dynamic interpreter loading</strong> using <strong>REST 
API</strong>. This concept actually comes from <a 
href="https://cwiki.apache.org/confluence/display/ZEPPELIN/Helium+proposal";>Zeppelin
 Helium Proposal</a>.
+Before we start, if you are not familiar with the concept of <strong>Zeppelin 
interpreter</strong>, you can check out <a 
href="../manual/interpreters.html">Overview of Zeppelin interpreter</a> 
first.</p>
+
+<p><br/></p>
+
+<h2>Overview</h2>
+
+<p>In the past, Zeppelin was loading interpreter binaries from 
<code>/interpreter/[interpreter_name]</code> directory. They were configured by 
<code>zeppelin.interpreters</code> property in 
<code>conf/zeppelin-site.xml</code> or <code>ZEPPELIN_INTERPRETERS</code> env 
variables in <code>conf/zeppelin-env.sh</code>. They were loaded on Zeppelin 
server startup and stayed alive until the server was stopped.
+In order to simplify using 3rd party interpreters, we changed this way to 
<strong>dynamically</strong> load interpreters from <strong>Maven 
Repository</strong> using <strong>REST API</strong>. Hopefully, the picture 
below will help you to understand the process. 
+<center><img src="../assets/themes/zeppelin/img/docs-img/zeppelin_user.png" 
height="85%" width="85%"></center></p>
+
+<h2>Load &amp; Unload Interpreters Using REST API</h2>
+
+<h3>1. Load</h3>
+
+<p>You can <strong>load</strong> interpreters located in Maven repository 
using REST API, like this:</p>
+
+<p>( Maybe, you are unfamiliar with <code>[interpreter_group_name]</code> or 
<code>[interpreter_name]</code>. If so, please checkout <a 
href="../manual/interpreter.html">Interpreters in Zeppelin</a> again. )</p>
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">http://[zeppelin-server]:[zeppelin-port]/api/interpreter/load/[interpreter_group_name]/[interpreter_name]
+</code></pre></div>
+<p>The Restful method will be <code><strong>POST</strong></code>. And the 
parameters you need are:</p>
+
+<ol>
+<li><p><strong>Artifact:</strong> Maven artifact ( groupId:artifactId:version 
) </p></li>
+<li><p><strong>Class Name:</strong> Package name + Interpreter class 
name</p></li>
+<li><p><strong>Repository ( optional ):</strong> Additional maven repository 
address</p></li>
+</ol>
+
+<p>For example, if you want to load <code>markdown</code> interpreter to your 
Zeppelin, the parameters and URL you need may look like:</p>
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">http://127.0.0.1:8080/api/interpreter/load/md/markdown
+</code></pre></div><div class="highlight"><pre><code class="text 
language-text" data-lang="text">{
+  &quot;artifact&quot;: 
&quot;org.apache.zeppelin:zeppelin-markdown:0.6.0-incubating-SNAPSHOT&quot;,
+  &quot;className&quot;: &quot;org.apache.zeppelin.markdown.Markdown&quot;,
+  &quot;repository&quot;: {
+    &quot;url&quot;: &quot;http://dl.bintray.com/spark-packages/maven&quot;,
+    &quot;snapshot&quot;: false
+  }
+}
+</code></pre></div>
+<p>The meaning of each parameters is: </p>
+
+<ol>
+<li><p><strong>Artifact</strong></p>
+
+<ul>
+<li>groupId: org.apache.zeppelin</li>
+<li>artifactId: zeppelin-markdown</li>
+<li>version: 0.6.0-incubating-SNAPSHOT</li>
+</ul></li>
+<li><p><strong>Class Name</strong></p>
+
+<ul>
+<li>Package Name: org.apache.zeppelin</li>
+<li>Interpreter Class Name: markdown.Markdown</li>
+</ul></li>
+<li><p><strong>Repository ( optional )</strong></p>
+
+<ul>
+<li>Url: http://dl.bintray.com/spark-packages/maven</li>
+<li>Snapshot: false</li>
+</ul></li>
+</ol>
+
+<blockquote>
+<p><b>Please note: </b>The interpreters you downloaded need to be 
<strong>reload</strong>, when your Zeppelin server is down. </p>
+</blockquote>
+
+<h3>2. Unload</h3>
+
+<p>If you want to <strong>unload</strong> the interpreters using REST API, </p>
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">http://[zeppelin-server]:[zeppelin-port]/api/interpreter/unload/[interpreter_group_name]/[interpreter_name]
+</code></pre></div>
+<p>In this case, the Restful method will be 
<code><strong>DELETE</strong></code>.</p>
+
+<p><br/></p>
+
+<h2>What is the next step after Loading ?</h2>
+
+<h3>Q1. Where is the location of interpreters you downloaded ?</h3>
+
+<p>Actually, the answer about this question is in the above picture. Once the 
REST API is called, the <code>.jar</code> files of interpreters you get are 
saved under <code>ZEPPELIN_HOME/local-repo</code> first. Then, they will be 
copied to <code>ZEPPELIN_HOME/interpreter</code> directory. So, please checkout 
your <code>ZEPPELIN_HOME/interpreter</code>.</p>
+
+<h3>Q2. Then, how can I use this interpreter ?</h3>
+
+<p>After loading an interpreter, you can use it by creating and configuring it 
in Zeppelin&#39;s <strong>Interpreter tab</strong>.</p>
+
+<p>Oh, you don&#39;t need to restart your Zeppelin server. Because it is 
<strong>Dynamic Loading</strong>, you can configure and load it <strong>at 
runtime</strong> !</p>
+
+<ol>
+<li><p>After Zeppelin server up, browse Zeppelin home and click 
<strong>Interpreter tab</strong>.
+<center><img 
src="../assets/themes/zeppelin/img/docs-img/interpreter_setting_1.png" 
height="85%" width="85%"></center></p></li>
+<li><p>At the <strong>Interpreter</strong> section, click 
<strong>+Create</strong> button. 
+<center><img 
src="../assets/themes/zeppelin/img/docs-img/interpreter_setting_2.png" 
height="85%" width="85%"></center></p></li>
+<li><p>Then, you can verify the interpreter list that you loaded.
+<center><img 
src="../assets/themes/zeppelin/img/docs-img/interpreter_setting_3.png" 
height="85%" width="85%"></center></p></li>
+<li><p>After choosing an interpreter, you can configure and use it. Don&#39;t 
forget to save it.</p></li>
+<li><p>Create a new notebook in the <strong>Notebook</strong> section, then 
you can bind the interpreters from your interpreter list. Just drag and drop !
+<center><img 
src="../assets/themes/zeppelin/img/docs-img/interpreter_binding_1.png" 
height="85%" width="85%"></center>
+<center><img 
src="../assets/themes/zeppelin/img/docs-img/interpreter_binding_2.png" 
height="85%" width="85%"></center></p></li>
+<li><p>At last, you can use your interpreter !</p></li>
+</ol>
+
+<p>If you want to get the specific information about respective interpreters, 
please checkout each interpreter documentation. </p>
+
+  </div>
+</div>
+
+
+      <hr>
+      <footer>
+        <!-- <p>&copy; 2016 The Apache Software Foundation</p>-->
+      </footer>
+    </div>
+
+    
+
+
+  <script type="text/javascript">
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new 
Date();a=s.createElement(o),
+  
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-45176241-5', 'zeppelin.incubator.apache.org');
+  ga('require', 'linkid', 'linkid.js');
+  ga('send', 'pageview');
+
+</script>
+
+
+
+  </body>
+</html>
+

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>
@@ -158,8 +159,6 @@ limitations under the License.
 The concept of Zeppelin interpreter allows any 
language/data-processing-backend to be plugged into Zeppelin.
 Currently, Zeppelin supports many interpreters such as Scala ( with Apache 
Spark ), Python ( with Apache Spark ), SparkSQL, Hive, Markdown, Shell and so 
on.</p>
 
-<p><br/></p>
-
 <h2>What is Zeppelin interpreter?</h2>
 
 <p>Zeppelin Interpreter is a plug-in which enables Zeppelin users to use a 
specific language/data-processing-backend. For example, to use scala code in 
Zeppelin, you need <code>%spark</code> interpreter.</p>
@@ -168,16 +167,12 @@ Currently, Zeppelin supports many interp
 
 <p><img 
src="/assets/themes/zeppelin/img/screenshots/interpreter_create.png"></p>
 
-<p><br/></p>
-
 <h2>What is Zeppelin Interpreter Setting?</h2>
 
 <p>Zeppelin interpreter setting is the configuration of a given interpreter on 
Zeppelin server. For example, the properties are required for hive JDBC 
interpreter to connect to the Hive server.</p>
 
 <p><img 
src="/assets/themes/zeppelin/img/screenshots/interpreter_setting.png"></p>
 
-<p><br/></p>
-
 <h2>What is Zeppelin Interpreter Group?</h2>
 
 <p>Every Interpreter is belonged to an <strong>Interpreter Group</strong>. 
Interpreter Group is a unit of start/stop interpreter.
@@ -189,8 +184,6 @@ SparkSQL and the dependency loader.</p>
 <p>Each interpreters is belonged to a single group and registered together. 
All of their properties are listed in the interpreter setting like below image.
 <img 
src="/assets/themes/zeppelin/img/screenshots/interpreter_setting_spark.png"></p>
 
-<p><br/></p>
-
 <h2>Programming Languages for Interpreter</h2>
 
 <p>If the interpreter uses a specific programming language ( like Scala, 
Python, SQL ), it is generally recommended to add a syntax highlighting 
supported for that to the notebook paragraph editor.  </p>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/notebookashomepage.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/notebookashomepage.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/notebookashomepage.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/manual/notebookashomepage.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/pleasecontribute.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/pleasecontribute.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/pleasecontribute.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/pleasecontribute.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-interpreter.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-interpreter.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-interpreter.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-interpreter.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-notebook.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-notebook.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-notebook.html
 (original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rest-api/rest-notebook.html
 Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rss.xml
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rss.xml?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rss.xml (original)
+++ incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/rss.xml Thu Jan 21 
02:24:45 2016
@@ -5,8 +5,8 @@
         <description>Apache Zeppelin (incubating) - The Apache Software 
Foundation</description>
         <link>http://zeppelin.incubator.apache.org</link>
         <link>http://zeppelin.incubator.apache.org</link>
-        <lastBuildDate>2016-01-17T08:21:02-08:00</lastBuildDate>
-        <pubDate>2016-01-17T08:21:02-08:00</pubDate>
+        <lastBuildDate>2016-01-20T18:24:16-08:00</lastBuildDate>
+        <pubDate>2016-01-20T18:24:16-08:00</pubDate>
         <ttl>1800</ttl>
 
 

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/screenshots.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/screenshots.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/screenshots.html 
(original)
+++ incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/screenshots.html Thu 
Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/sitemap.txt
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/sitemap.txt?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/sitemap.txt 
(original)
+++ incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/sitemap.txt Thu Jan 
21 02:24:45 2016
@@ -22,6 +22,7 @@ http://zeppelin.incubator.apache.org/int
 http://zeppelin.incubator.apache.org/interpreter/scalding.html
 http://zeppelin.incubator.apache.org/interpreter/spark.html
 http://zeppelin.incubator.apache.org/manual/dynamicform.html
+http://zeppelin.incubator.apache.org/manual/dynamicinterpreterload.html
 http://zeppelin.incubator.apache.org/manual/interpreters.html
 http://zeppelin.incubator.apache.org/manual/notebookashomepage.html
 http://zeppelin.incubator.apache.org/pleasecontribute.html

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html 
(original)
+++ incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/storage/storage.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>

Modified: 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/tutorial/tutorial.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/tutorial/tutorial.html?rev=1725856&r1=1725855&r2=1725856&view=diff
==============================================================================
--- 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/tutorial/tutorial.html 
(original)
+++ 
incubator/zeppelin/site/docs/0.6.0-incubating-SNAPSHOT/tutorial/tutorial.html 
Thu Jan 21 02:24:45 2016
@@ -78,6 +78,7 @@
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Interpreter <b class="caret"></b></a>
               <ul class="dropdown-menu">
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/interpreters.html">Overview</a></li>
+                <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/manual/dynamicinterpreterload.html">Dynamic
 Interpreter Loading</a></li>
                 <li role="separator" class="divider"></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/cassandra.html">Cassandra</a></li>
                 <li><a 
href="/docs/0.6.0-incubating-SNAPSHOT/interpreter/elasticsearch.html">Elasticsearch</a></li>


Reply via email to