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 2019/04/10 08:58:46 UTC

svn commit: r1857237 - in /zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution: how_to_contribute_code.html how_to_contribute_website.html

Author: moon
Date: Wed Apr 10 08:58:45 2019
New Revision: 1857237

URL: http://svn.apache.org/viewvc?rev=1857237&view=rev
Log:
ZEPPELIN-4040

Modified:
    zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_code.html
    zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_website.html

Modified: zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_code.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_code.html?rev=1857237&r1=1857236&r2=1857237&view=diff
==============================================================================
--- zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_code.html (original)
+++ zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_code.html Wed Apr 10 08:58:45 2019
@@ -197,6 +197,7 @@
                 <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/scalding.html">Scalding</a></li>
                 <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/scio.html">Scio</a></li>
                 <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/shell.html">Shell</a></li>
+                <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/submarine.html">Submarine</a></li>
               </ul>
             </li>
             <li>
@@ -291,15 +292,15 @@ Any contributions to Zeppelin (Source co
 
 <h2>Getting the source code</h2>
 
-<p>First of all, you need Zeppelin source code. The official location of Zeppelin is <a href="http://git.apache.org/zeppelin.git">http://git.apache.org/zeppelin.git</a>.</p>
+<p>First of all, you need Zeppelin source code. The official location of Zeppelin is <a href="https://gitbox.apache.org/repos/asf/zeppelin.git">https://gitbox.apache.org/repos/asf/zeppelin.git</a>.</p>
 
 <h3>git access</h3>
 
 <p>Get the source code on your development machine using git.</p>
-<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">git clone git://git.apache.org/zeppelin.git zeppelin
+<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">git clone git://gitbox.apache.org/repos/asf/zeppelin.git zeppelin
 </code></pre></div>
 <p>You may also want to develop against a specific branch. For example, for branch-0.5.6</p>
-<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">git clone -b branch-0.5.6 git://git.apache.org/zeppelin.git zeppelin
+<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">git clone -b branch-0.5.6 git://gitbox.apache.org/repos/asf/zeppelin.git zeppelin
 </code></pre></div>
 <p>Apache Zeppelin follows <a href="https://github.com/sevntu-checkstyle/sevntu.checkstyle/wiki/Development-workflow-with-Git:-Fork,-Branching,-Commits,-and-Pull-Request">Fork &amp; Pull</a> as a source control workflow.
 If you want to not only build Zeppelin but also make any changes, then you need to fork <a href="https://github.com/apache/zeppelin">Zeppelin github mirror repository</a> and make a pull request.</p>

Modified: zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_website.html
URL: http://svn.apache.org/viewvc/zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_website.html?rev=1857237&r1=1857236&r2=1857237&view=diff
==============================================================================
--- zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_website.html (original)
+++ zeppelin/site/docs/0.9.0-SNAPSHOT/development/contribution/how_to_contribute_website.html Wed Apr 10 08:58:45 2019
@@ -197,6 +197,7 @@
                 <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/scalding.html">Scalding</a></li>
                 <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/scio.html">Scio</a></li>
                 <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/shell.html">Shell</a></li>
+                <li><a href="/docs/0.9.0-SNAPSHOT/interpreter/submarine.html">Submarine</a></li>
               </ul>
             </li>
             <li>
@@ -273,14 +274,14 @@ Any contributions to Zeppelin (Source co
 
 <h2>Getting the source code</h2>
 
-<p>First of all, you need Zeppelin source code. The official location of Zeppelin is <a href="http://git.apache.org/zeppelin.git">http://git.apache.org/zeppelin.git</a>.
+<p>First of all, you need Zeppelin source code. The official location of Zeppelin is <a href="https://gitbox.apache.org/repos/asf/zeppelin.git">https://gitbox.apache.org/repos/asf/zeppelin.git</a>.
 Documentation website is hosted in &#39;master&#39; branch under <code>/docs/</code> dir.</p>
 
 <h3>git access</h3>
 
-<p>First of all, you need the website source code. The official location of mirror for Zeppelin is <a href="http://git.apache.org/zeppelin.git">http://git.apache.org/zeppelin.git</a>.
+<p>First of all, you need the website source code. The official location of mirror for Zeppelin is <a href="https://gitbox.apache.org/repos/asf/zeppelin.git">https://gitbox.apache.org/repos/asf/zeppelin.git</a>.
 Get the source code on your development machine using git.</p>
-<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">git clone git://git.apache.org/zeppelin.git
+<div class="highlight"><pre><code class="bash language-bash" data-lang="bash">git clone git://gitbox.apache.org/repos/asf/zeppelin.git
 <span class="nb">cd </span>docs
 </code></pre></div>
 <p>Apache Zeppelin follows <a href="https://github.com/sevntu-checkstyle/sevntu.checkstyle/wiki/Development-workflow-with-Git:-Fork,-Branching,-Commits,-and-Pull-Request">Fork &amp; Pull</a> as a source control workflow.