Author: moon
Date: Sun Apr 12 06:14:19 2015
New Revision: 1672983

URL: http://svn.apache.org/r1672983
Log:
Update github address to apache's one. Update package/gropuId

Modified:
    incubator/zeppelin/site/atom.xml
    incubator/zeppelin/site/community.html
    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/index.html
    incubator/zeppelin/site/docs/install/install.html
    incubator/zeppelin/site/docs/interpreter/spark.html
    incubator/zeppelin/site/docs/tutorial/tutorial.html
    incubator/zeppelin/site/download.html
    incubator/zeppelin/site/index.html
    incubator/zeppelin/site/rss.xml
    incubator/zeppelin/site/screenshots.html

Modified: incubator/zeppelin/site/atom.xml
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/atom.xml?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/atom.xml (original)
+++ incubator/zeppelin/site/atom.xml Sun Apr 12 06:14:19 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-02T09:07:22+09:00</updated>
+ <updated>2015-04-12T15:10:14+09:00</updated>
  <id>http://zeppelin-project.org</id>
  <author>
    <name>The Apache Software Foundation</name>

Modified: incubator/zeppelin/site/community.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/community.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/community.html (original)
+++ incubator/zeppelin/site/community.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/docs/development/howtocontribute.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/development/howtocontribute.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/development/howtocontribute.html (original)
+++ incubator/zeppelin/site/docs/development/howtocontribute.html Sun Apr 12 
06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">
@@ -240,7 +240,7 @@ Any contribution to Zeppelin (Source cod
 
 <h4>Software Configuration Management(SCM)</h4>
 
-<p>Zeppelin uses Git for it&#39;s SCM system. Hosted by github.com. 
https://github.com/nflabs/zeppelin You&#39;ll need git client installed in your 
development machine. </p>
+<p>Zeppelin uses Git for it&#39;s SCM system. Hosted by github.com. 
<code>https://github.com/apache/incubator-zeppelin</code> You&#39;ll need git 
client installed in your development machine. </p>
 
 <h4>Integrated Development Environment(IDE)</h4>
 
@@ -254,15 +254,15 @@ Apache Maven</p>
 
 <h3>Getting the source code</h3>
 
-<p>First of all, you need the Zeppelin source code. The official location for 
Zeppelin is <a 
href="https://github.com/nflabs/zeppelin";>https://github.com/nflabs/zeppelin</a></p>
+<p>First of all, you need the Zeppelin source code. The official location for 
Zeppelin is <a 
href="https://github.com/apache/incubator-zeppelin";>https://github.com/apache/incubator-zeppelin</a></p>
 
 <h4>git access</h4>
 
 <p>Get the source code on your development machine using git.</p>
-<div class="highlight"><pre><code class="text language-text" 
data-lang="text">git clone https://github.com/NFLabs/zeppelin.git zeppelin
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">git clone https://github.com/apache/incubator-zeppelin.git 
zeppelin
 </code></pre></div>
 <p>You may also want to develop against a specific release. For example, for 
branch-0.1</p>
-<div class="highlight"><pre><code class="text language-text" 
data-lang="text">git clone -b branch-0.1 https://github.com/NFLabs/zeppelin.git 
zeppelin
+<div class="highlight"><pre><code class="text language-text" 
data-lang="text">git clone -b branch-0.1 
https://github.com/apache/incubator-zeppelin.git zeppelin
 </code></pre></div>
 <h4>Fork repository</h4>
 
@@ -279,7 +279,7 @@ Apache Maven</p>
 </code></pre></div>
 <h3>Run Zepplin server in development mode</h3>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">cd zeppelin-server
-HADOOP_HOME=YOUR_HADOOP_HOME JAVA_HOME=YOUR_JAVA_HOME mvn exec:java 
-Dexec.mainClass=&quot;com.nflabs.zeppelin.server.ZeppelinServer&quot; 
-Dexec.args=&quot;&quot;
+HADOOP_HOME=YOUR_HADOOP_HOME JAVA_HOME=YOUR_JAVA_HOME mvn exec:java 
-Dexec.mainClass=&quot;org.apache.zeppelin.server.ZeppelinServer&quot; 
-Dexec.args=&quot;&quot;
 </code></pre></div>
 <p>or use daemon script</p>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">bin/zeppelin-daemon start

Modified: 
incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html 
(original)
+++ incubator/zeppelin/site/docs/development/writingzeppelininterpreter.html 
Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">
@@ -241,9 +241,9 @@ Interpreters in the same InterpreterGrou
 
 <h3>Make your own Interpreter</h3>
 
-<p>Creating a new interpreter is quite simple. Just extends <a 
href="https://github.com/NFLabs/zeppelin/blob/master/zeppelin-interpreter/src/main/java/com/nflabs/zeppelin/interpreter/Interpreter.java";>com.nflabs.zeppelin.interpreter</a>
 abstract class and implement some methods.</p>
+<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>You can include com.nflabs.zeppelin:zeppelin-interpreter:[VERSION] artifact 
in your build system.</p>
+<p>You can include org.apache.zeppelin:zeppelin-interpreter:[VERSION] artifact 
in your build system.</p>
 
 <h3>Install your interpreter binary</h3>
 
@@ -258,7 +258,7 @@ Property value is comma separated [INTER
 <p>for example, </p>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">&lt;property&gt;
   &lt;name&gt;zeppelin.interpreters&lt;/name&gt;
-  
&lt;value&gt;com.nflabs.zeppelin.spark.SparkInterpreter,com.nflabs.zeppelin.spark.SparkSqlInterpreter,com.nflabs.zeppelin.markdown.Markdown,com.nflabs.zeppelin.shell.ShellInterpreter,com.me.MyNewInterpreter&lt;/value&gt;
+  
&lt;value&gt;org.apache.zeppelin.spark.SparkInterpreter,org.apache.zeppelin.spark.PySparkInterpreter,org.apache.zeppelin.spark.SparkSqlInterpreter,org.apache.zeppelin.spark.DepInterpreter,org.apache.zeppelin.markdown.Markdown,org.apache.zeppelin.shell.ShellInterpreter,org.apache.zeppelin.hive.HiveInterpreter,com.me.MyNewInterpreter&lt;/value&gt;
 &lt;/property&gt;
 </code></pre></div>
 <h3>Use your interpreter</h3>
@@ -277,9 +277,10 @@ println(a)
 <p>Check some interpreters shipped by default.</p>
 
 <ul>
-<li><a 
href="https://github.com/NFLabs/zeppelin/tree/master/spark";>spark</a></li>
-<li><a 
href="https://github.com/NFLabs/zeppelin/tree/master/markdown";>markdown</a></li>
-<li><a 
href="https://github.com/NFLabs/zeppelin/tree/master/shell";>shell</a></li>
+<li><a 
href="https://github.com/apache/incubator-zeppelin/tree/master/spark";>spark</a></li>
+<li><a 
href="https://github.com/apache/incubator-zeppelin/tree/master/markdown";>markdown</a></li>
+<li><a 
href="https://github.com/apache/incubator-zeppelin/tree/master/shell";>shell</a></li>
+<li><a 
href="https://github.com/apache/incubator-zeppelin/tree/master/hive";>hive</a></li>
 </ul>
 
   </div>

Modified: incubator/zeppelin/site/docs/display.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/display.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/display.html (original)
+++ incubator/zeppelin/site/docs/display.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/docs/dynamicform.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/dynamicform.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/dynamicform.html (original)
+++ incubator/zeppelin/site/docs/dynamicform.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/docs/index.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/index.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/index.html (original)
+++ incubator/zeppelin/site/docs/index.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/docs/install/install.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/install/install.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/install/install.html (original)
+++ incubator/zeppelin/site/docs/install/install.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">
@@ -241,7 +241,7 @@
 
 <p>Build tested on OSX, CentOS 6.</p>
 
-<p>Checkout source code from <a 
href="https://github.com/NFLabs/zeppelin";>https://github.com/NFLabs/zeppelin</a></p>
+<p>Checkout source code from <a 
href="https://github.com/apache/incubator-zeppelin";>https://github.com/apache/incubator-zeppelin</a></p>
 
 <h4>Local mode</h4>
 <div class="highlight"><pre><code class="text language-text" 
data-lang="text">mvn install -DskipTests
@@ -286,8 +286,8 @@
     <td>ZEPPELIN_INTERPRETERS</td>
     <td>zeppelin.interpreters</td>
   <description></description>
-    <td>spark:com.nflabs.zeppelin.spark.SparkInterpreter,<br 
/>sql:com.nflabs.zeppelin.spark.SparkSqlInterpreter,<br 
/>md:com.nflabs.zeppelin.markdown.Markdown,<br 
/>sh:com.nflabs.zeppelin.shell.ShellInterpreter</td>
-    <td>Comma separated interpreter configurations [Name]:[Class]. First 
interpreter become a default</td>
+    <td>org.apache.zeppelin.spark.SparkInterpreter,<br 
/>org.apache.zeppelin.spark.PySparkInterpreter,<br 
/>org.apache.zeppelin.spark.SparkSqlInterpreter,<br 
/>org.apache.zeppelin.spark.DepInterpreter,<br 
/>org.apache.zeppelin.markdown.Markdown,<br 
/>org.apache.zeppelin.shell.ShellInterpreter,<br 
/>org.apache.zeppelin.hive.HiveInterpreter</td>
+    <td>Comma separated interpreter configurations [Class]. First interpreter 
become a default</td>
   </tr>
   <tr>
     <td>ZEPPELIN_INTERPRETER_DIR</td>

Modified: incubator/zeppelin/site/docs/interpreter/spark.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/interpreter/spark.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/interpreter/spark.html (original)
+++ incubator/zeppelin/site/docs/interpreter/spark.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/docs/tutorial/tutorial.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/docs/tutorial/tutorial.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/docs/tutorial/tutorial.html (original)
+++ incubator/zeppelin/site/docs/tutorial/tutorial.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/download.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/download.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/download.html (original)
+++ incubator/zeppelin/site/download.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">

Modified: incubator/zeppelin/site/index.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/index.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/index.html (original)
+++ incubator/zeppelin/site/index.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">
@@ -264,7 +264,7 @@
 <h3>Multiple language backend</h3>
 
 <p>Zeppelin interpreter concept allows any language/data-processing-backend to 
be plugged into Zeppelin.
-Current languages included in the Zeppelin interpreter are: Scala(with Apache 
Spark), Python(with Apache Spark), SparkSQL, Markdown and Shell.</p>
+Current languages included in the Zeppelin interpreter are: Scala(with Apache 
Spark), Python(with Apache Spark), SparkSQL, Hive, Markdown and Shell.</p>
 
 <p><img class="img-responsive" 
src="assets/themes/zeppelin/img/screenshots/multiple_language_backend.png" 
/></p>
 
@@ -346,7 +346,7 @@ This way, you can easily embed it as an
 
 <h3>100% Opensource</h3>
 
-<p>Apache Zeppelin (incubating) is Apache2 Licensed software. Please check out 
the <a href="https://github.com/NFLabs/zeppelin";>source repository</a> and <a 
href="./docs/development/howtocontribute.html">How to contribute</a></p>
+<p>Apache Zeppelin (incubating) is Apache2 Licensed software. Please check out 
the <a href="https://github.com/apache/incubator-zeppelin";>source 
repository</a> and <a href="./docs/development/howtocontribute.html">How to 
contribute</a></p>
 
 <p>Zeppelin has a very active development community.
 Join the <a href="./community.html">Mailing list</a> and report issues on our 
<a href="https://issues.apache.org/jira/browse/ZEPPELIN";>Issue tracker</a>.</p>

Modified: incubator/zeppelin/site/rss.xml
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/rss.xml?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/rss.xml (original)
+++ incubator/zeppelin/site/rss.xml Sun Apr 12 06:14:19 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-02T09:07:22+09:00</lastBuildDate>
-        <pubDate>2015-04-02T09:07:22+09:00</pubDate>
+        <lastBuildDate>2015-04-12T15:10:14+09:00</lastBuildDate>
+        <pubDate>2015-04-12T15:10:14+09:00</pubDate>
         <ttl>1800</ttl>
 
 

Modified: incubator/zeppelin/site/screenshots.html
URL: 
http://svn.apache.org/viewvc/incubator/zeppelin/site/screenshots.html?rev=1672983&r1=1672982&r2=1672983&view=diff
==============================================================================
--- incubator/zeppelin/site/screenshots.html (original)
+++ incubator/zeppelin/site/screenshots.html Sun Apr 12 06:14:19 2015
@@ -202,7 +202,7 @@
 
 
 
-            <li><a href="https://github.com/NFLabs/zeppelin";>GitHub</a></li>
+            <li><a 
href="https://github.com/apache/incubator-zeppelin";>GitHub</a></li>
             <li id="apache">
               <a href="#" data-toggle="dropdown" 
class="dropdown-toggle">Apache<b class="caret"></b></a>
                <ul class="dropdown-menu">


Reply via email to