You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by mo...@apache.org on 2015/04/25 01:43:23 UTC

svn commit: r1675985 - in /incubator/zeppelin/site: atom.xml docs/development/howtocontribute.html docs/development/writingzeppelininterpreter.html docs/display.html docs/dynamicform.html docs/interpreter/spark.html rss.xml

Author: moon
Date: Fri Apr 24 23:43:23 2015
New Revision: 1675985

URL: http://svn.apache.org/r1675985
Log:
Minor editing in documentation pages
https://github.com/apache/incubator-zeppelin/pull/43


Modified:
    incubator/zeppelin/site/atom.xml
    incubator/zeppelin/site/docs/development/howtocontribute.html
    incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html
    incubator/zeppelin/site/docs/display.html
    incubator/zeppelin/site/docs/dynamicform.html
    incubator/zeppelin/site/docs/interpreter/spark.html
    incubator/zeppelin/site/rss.xml

Modified: incubator/zeppelin/site/atom.xml
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/atom.xml?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/atom.xml (original)
+++ incubator/zeppelin/site/atom.xml Fri Apr 24 23:43:23 2015
@@ -4,7 +4,7 @@
  <title>Zeppelin</title>
  <link href="http://zeppelin-project.org/" rel="self"/>
  <link href="http://zeppelin-project.org"/>
- <updated>2015-04-12T15:10:14+09:00</updated>
+ <updated>2015-04-25T08:41:46+09:00</updated>
  <id>http://zeppelin-project.org</id>
  <author>
    <name>The Apache Software Foundation</name>

Modified: incubator/zeppelin/site/docs/development/howtocontribute.html
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/development/howtocontribute.html?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/development/howtocontribute.html (original)
+++ incubator/zeppelin/site/docs/development/howtocontribute.html Fri Apr 24 23:43:23 2015
@@ -236,7 +236,7 @@ Any contribution to Zeppelin (Source cod
 
 <h3>Setting up</h3>
 
-<p>Here are some things you will need to build and test Zeppelin. </p>
+<p>Here are some things you will need to do to build and test Zeppelin. </p>
 
 <h4>Software Configuration Management(SCM)</h4>
 
@@ -266,7 +266,7 @@ Apache Maven</p>
 </code></pre></div>
 <h4>Fork repository</h4>
 
-<p>If you want not only build Zeppelin but also make change, then you need fork Zeppelin repository and make pull request.</p>
+<p>If you want not only build Zeppelin but also make changes, then you need to fork Zeppelin repository and make pull request.</p>
 
 <h3>Build</h3>
 <div class="highlight"><pre><code class="text language-text" data-lang="text">mvn install

Modified: incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html (original)
+++ incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html Fri Apr 24 23:43:23 2015
@@ -231,17 +231,17 @@
   <div class="col-md-12">
     <h3>What is Zeppelin Interpreter</h3>
 
-<p>Zeppelin Interpreter is language backend. For example to use scala code in Zeppelin, you need scala interpreter.
-Every Interpreter&#39;s are belongs to InterpreterGroup. InterpreterGroup is unit of start/stop interpreter.
-Interpreters in the same InterpreterGroup can reference each other. For example, SparkSqlInterpreter can refernece SparkInterpreter to get SparkContext from it while they&#39;re in the same group. </p>
+<p>Zeppelin Interpreter is a language backend. For example to use scala code in Zeppelin, you need scala interpreter.
+Every Interpreter belongs to an InterpreterGroup. InterpreterGroup is a unit of start/stop interpreter.
+Interpreters in the same InterpreterGroup can reference each other. For example, SparkSqlInterpreter can reference SparkInterpreter to get SparkContext from it while they&#39;re in the same group. </p>
 
 <p><img class="img-responsive" style="width:50%; border: 1px solid #ecf0f1;" height="auto" src="../../assets/themes/zeppelin/img/interpreter.png" /></p>
 
-<p>Interpreter can be launched either using separate classloader or separate JVM process. Sometimes separate classloader cause problem especially when your interpreter uses reflections or trying to grab standard out/err. In this case, separate JVM process is the option you can select. (by checking &#39;fork&#39; in Interpreter menu, which is default value) When Interpreter is running in separate JVM process, it&#39;s communicating with Zeppelin via thrift.</p>
+<p>Interpreter can be launched either using separate classloader or separate JVM process. Sometimes separate classloader causes problem especially when your interpreter uses reflections or trying to grab standard out/err. In this case, separate JVM process is the option you can select. (by checking &#39;fork&#39; in Interpreter menu, which is default value) When Interpreter is running in separate JVM process, it&#39;s communicating with Zeppelin via thrift.</p>
 
 <h3>Make your own Interpreter</h3>
 
-<p>Creating a new interpreter is quite simple. Just extends <a href="https://github.com/apache/incubator-zeppelin/blob/master/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java">org.apache.zeppelin.interpreter</a> abstract class and implement some methods.</p>
+<p>Creating a new interpreter is quite simple. Just extend <a href="https://github.com/apache/incubator-zeppelin/blob/master/zeppelin-interpreter/src/main/java/org/apache/zeppelin/interpreter/Interpreter.java">org.apache.zeppelin.interpreter</a> abstract class and implement some methods.</p>
 
 <p>You can include org.apache.zeppelin:zeppelin-interpreter:[VERSION] artifact in your build system.</p>
 

Modified: incubator/zeppelin/site/docs/display.html
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/display.html?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/display.html (original)
+++ incubator/zeppelin/site/docs/display.html Fri Apr 24 23:43:23 2015
@@ -231,8 +231,8 @@
   <div class="col-md-12">
     <h3>Display</h3>
 
-<p>Zeppelin prints output of langauge backend in text, default.
-However, if output contains some magic keyword, Zeppelin automatically formatting the output as Table, Chart, Image, Html.</p>
+<p>Zeppelin prints output of language backend in text, by default.
+However, if output contains some magic keyword, Zeppelin automatically formatting the output as Table, Chart, Image, or Html.</p>
 
 <p><br /></p>
 
@@ -246,7 +246,7 @@ However, if output contains some magic k
 
 <h4>Display as Html</h4>
 
-<p>If ouput starts with %html, it interpreted as a html code.</p>
+<p>If output starts with %html, it is interpreted as an html code.</p>
 
 <p><img src="../assets/themes/zeppelin/img/screenshots/display_html.png" /></p>
 
@@ -254,13 +254,13 @@ However, if output contains some magic k
 
 <h4>Display as Table, Chart</h4>
 
-<p>If ouput starts with %table, it interpreted as a table. Table can be seen as chart.</p>
+<p>If output starts with %table, it is interpreted as a table. Table can be seen as chart.</p>
 
 <p>Output&#39;s format should be, row separated by &#39;\n&#39; (newline) and column separated by &#39;\t&#39; (tab). First row is header.</p>
 
 <p><img src="../assets/themes/zeppelin/img/screenshots/display_table.png" /></p>
 
-<p>If table contents start with %html, it is interpreted as a HTML.</p>
+<p>If table contents start with %html, it is interpreted as an HTML.</p>
 
 <p><img src="../assets/themes/zeppelin/img/screenshots/display_table_html.png" /></p>
 

Modified: incubator/zeppelin/site/docs/dynamicform.html
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/dynamicform.html?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/dynamicform.html (original)
+++ incubator/zeppelin/site/docs/dynamicform.html Fri Apr 24 23:43:23 2015
@@ -231,8 +231,8 @@
   <div class="col-md-12">
     <h2>Dynamic Form</h2>
 
-<p>Zeppelin dynamically creates input forms. Depend on language backend, there&#39;re two different way to create dynamic form.
-Custom lanaugage backend can select which type of form creation he want to use.</p>
+<p>Zeppelin dynamically creates input forms. Depending on language backend, there&#39;re two different ways to create dynamic form.
+Custom language backend can select which type of form creation it wants to use.</p>
 
 <p><br /></p>
 
@@ -270,9 +270,9 @@ Custom lanaugage backend can select whic
 
 <p><br /></p>
 
-<h3>Creates Programatically</h3>
+<h3>Creates Programmatically</h3>
 
-<p>Some language backend use programtic way to create form. for example <a href="./interpreter/spark.html#zeppelincontext">ZeppelinContext</a> provides form creation API</p>
+<p>Some language backend uses programmatic way to create form. For example <a href="./interpreter/spark.html#zeppelincontext">ZeppelinContext</a> provides form creation API</p>
 
 <p>Here&#39;re some examples.</p>
 

Modified: incubator/zeppelin/site/docs/interpreter/spark.html
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/interpreter/spark.html?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/interpreter/spark.html (original)
+++ incubator/zeppelin/site/docs/interpreter/spark.html Fri Apr 24 23:43:23 2015
@@ -258,7 +258,7 @@ Spark Interpreter group, which consisted
   <tr>
     <td>%dep</td>
     <td>DepInterpreter</td>
-    <td>Depdency loader</td>
+    <td>Dependency loader</td>
   </tr>
 </table>
 
@@ -266,7 +266,7 @@ Spark Interpreter group, which consisted
 
 <h3>SparkContext, SQLContext, ZeppelinContext</h3>
 
-<p>SparkContext, SQLContext, ZeppelinContext are automatically created and exposed as variable name &#39;sc&#39;, &#39;sqlContext&#39; and &#39;z&#39; respectively, Both scala and python environment.</p>
+<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>
 
 <p>Note that scala / python environment shares the same SparkContext, SQLContext, ZeppelinContext instance.</p>
 
@@ -325,7 +325,7 @@ Spark Interpreter group, which consisted
 
 <h3>ZeppelinContext</h3>
 
-<p>Zeppelin automatically inject ZeppelinContext as variable &#39;z&#39; in your scala/python environment. ZeppelinContext provides some addtional functions and utility.</p>
+<p>Zeppelin automatically injects ZeppelinContext as variable &#39;z&#39; in your scala/python environment. ZeppelinContext provides some addtional functions and utility.</p>
 
 <p><br /></p>
 
@@ -348,7 +348,7 @@ So you can put some object from scala an
 <h4>Form creation</h4>
 
 <p>ZeppelinContext provides functions for creating forms. 
-In scala and python environment, you can create forms programtically.</p>
+In scala and python environments, you can create forms programmatically.</p>
 <div class="highlight"><pre><code class="scala language-scala" data-lang="scala"><span class="o">%</span><span class="n">spark</span>
 <span class="cm">/* Create text input form */</span>
 <span class="n">z</span><span class="o">.</span><span class="n">input</span><span class="o">(</span><span class="s">&quot;formName&quot;</span><span class="o">)</span>

Modified: incubator/zeppelin/site/rss.xml
URL: http://svn.apache.org/viewvc/incubator/zeppelin/site/rss.xml?rev=1675985&r1=1675984&r2=1675985&view=diff
==============================================================================
--- incubator/zeppelin/site/rss.xml (original)
+++ incubator/zeppelin/site/rss.xml Fri Apr 24 23:43:23 2015
@@ -5,8 +5,8 @@
         <description>Zeppelin - The Apache Software Foundation</description>
         <link>http://zeppelin-project.org</link>
         <link>http://zeppelin-project.org</link>
-        <lastBuildDate>2015-04-12T15:10:14+09:00</lastBuildDate>
-        <pubDate>2015-04-12T15:10:14+09:00</pubDate>
+        <lastBuildDate>2015-04-25T08:41:46+09:00</lastBuildDate>
+        <pubDate>2015-04-25T08:41:46+09:00</pubDate>
         <ttl>1800</ttl>