You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by dl...@apache.org on 2014/02/14 03:45:08 UTC

svn commit: r1568193 - in /mesos/site: publish/documentation/getting-started/index.html publish/documentation/latest/getting-started/index.html publish/gettingstarted/index.html source/documentation/latest/getting-started.md

Author: dlester
Date: Fri Feb 14 02:45:07 2014
New Revision: 1568193

URL: http://svn.apache.org/r1568193
Log:
Updates documentation.

Modified:
    mesos/site/publish/documentation/getting-started/index.html
    mesos/site/publish/documentation/latest/getting-started/index.html
    mesos/site/publish/gettingstarted/index.html
    mesos/site/source/documentation/latest/getting-started.md

Modified: mesos/site/publish/documentation/getting-started/index.html
URL: http://svn.apache.org/viewvc/mesos/site/publish/documentation/getting-started/index.html?rev=1568193&r1=1568192&r2=1568193&view=diff
==============================================================================
--- mesos/site/publish/documentation/getting-started/index.html (original)
+++ mesos/site/publish/documentation/getting-started/index.html Fri Feb 14 02:45:07 2014
@@ -109,8 +109,8 @@
 <ol>
 <li><p>Download the latest stable release from <a href="http://mesos.apache.org/downloads/">Apache</a> (<strong><em>Recommended</em></strong>)</p>
 
-<pre><code> $ wget http://www.apache.org/dist/mesos/0.14.0/mesos-0.14.0.tar.gz
- $ tar -zxf mesos-0.14.0.tar.gz
+<pre><code> $ wget http://www.apache.org/dist/mesos/0.16.0/mesos-0.16.0.tar.gz
+ $ tar -zxf mesos-0.16.0.tar.gz
 </code></pre></li>
 <li><p>Clone the Mesos git <a href="http://git-wip-us.apache.org/repos/asf/mesos.git">repository</a> (<strong><em>Advanced Users Only</em></strong>)</p>
 
@@ -137,23 +137,22 @@
  # Install devel python.
  $ sudo apt-get install python-dev
 
- # Install devel libcurl (***Optional***).
+ # Install devel libcurl
  $ sudo apt-get install libcurl4-nss-dev
 
  # Install devel libsasl (***Only required for Mesos 0.14.0 or newer***).
  $ sudo apt-get install libsasl2-dev
 </code></pre></li>
-</ul>
-
+<li><p>If you are building from git repository, you will need to additionally install the following packages.</p>
 
-<p>If you are building from git repository, you will need to additionally install the following packages.</p>
+<pre><code> # Install autotoconf and automake.
+ $ sudo apt-get install autoconf
 
-<pre><code>    # Install autotoconf and automake.
-    $ sudo apt-get install autoconf
+ # Install libtool.
+ $ sudo apt-get install libtool
+</code></pre></li>
+</ul>
 
-    # Install libtool.
-    $ sudo apt-get install libtool
-</code></pre>
 
 <h2>Building Mesos</h2>
 
@@ -178,29 +177,32 @@
 
 <h2>Examples</h2>
 
-<p>Mesos comes bundled with example frameworks written in <code>C++</code>, <code>Java</code> and <code>Python</code>.</p>
+<ul>
+<li><p>Mesos comes bundled with example frameworks written in <code>C++</code>, <code>Java</code> and <code>Python</code>.</p>
 
-<pre><code>    # Change into build directory.
-    $ cd build
+<pre><code> # Change into build directory.
+ $ cd build
 
-    # Start mesos master.
-    $ ./bin/mesos-master.sh --ip=127.0.0.1
+ # Start mesos master.
+ $ ./bin/mesos-master.sh --ip=127.0.0.1
 
-    # Start mesos slave.
-    $ ./bin/mesos-slave.sh --master=127.0.0.1:5050
+ # Start mesos slave.
+ $ ./bin/mesos-slave.sh --master=127.0.0.1:5050
 
-    # Visit the mesos web page.
-    $ http://127.0.0.1:5050
+ # Visit the mesos web page.
+ $ http://127.0.0.1:5050
 
-    # Run C++ framework (***Exits after successfully running some tasks.***).
-    $ ./src/test-framework --master=127.0.0.1:5050
+ # Run C++ framework (***Exits after successfully running some tasks.***).
+ $ ./src/test-framework --master=127.0.0.1:5050
 
-    # Run Java framework (***Exits after successfully running some tasks.***).
-    $ ./src/examples/java/test-framework 127.0.0.1:5050
+ # Run Java framework (***Exits after successfully running some tasks.***).
+ $ ./src/examples/java/test-framework 127.0.0.1:5050
+
+ # Run Python framework (***Exits after successfully running some tasks.***).
+ $ ./src/examples/python/test-framework 127.0.0.1:5050
+</code></pre></li>
+</ul>
 
-    # Run Python framework (***Exits after successfully running some tasks.***).
-    $ ./src/examples/python/test-framework 127.0.0.1:5050
-</code></pre>
 
 <p><em>NOTE: To build the example frameworks, make sure you build the test suite by doing <code>make check</code>.</em></p>
 

Modified: mesos/site/publish/documentation/latest/getting-started/index.html
URL: http://svn.apache.org/viewvc/mesos/site/publish/documentation/latest/getting-started/index.html?rev=1568193&r1=1568192&r2=1568193&view=diff
==============================================================================
--- mesos/site/publish/documentation/latest/getting-started/index.html (original)
+++ mesos/site/publish/documentation/latest/getting-started/index.html Fri Feb 14 02:45:07 2014
@@ -109,8 +109,8 @@
 <ol>
 <li><p>Download the latest stable release from <a href="http://mesos.apache.org/downloads/">Apache</a> (<strong><em>Recommended</em></strong>)</p>
 
-<pre><code> $ wget http://www.apache.org/dist/mesos/0.14.0/mesos-0.14.0.tar.gz
- $ tar -zxf mesos-0.14.0.tar.gz
+<pre><code> $ wget http://www.apache.org/dist/mesos/0.16.0/mesos-0.16.0.tar.gz
+ $ tar -zxf mesos-0.16.0.tar.gz
 </code></pre></li>
 <li><p>Clone the Mesos git <a href="http://git-wip-us.apache.org/repos/asf/mesos.git">repository</a> (<strong><em>Advanced Users Only</em></strong>)</p>
 
@@ -137,23 +137,22 @@
  # Install devel python.
  $ sudo apt-get install python-dev
 
- # Install devel libcurl (***Optional***).
+ # Install devel libcurl
  $ sudo apt-get install libcurl4-nss-dev
 
  # Install devel libsasl (***Only required for Mesos 0.14.0 or newer***).
  $ sudo apt-get install libsasl2-dev
 </code></pre></li>
-</ul>
-
+<li><p>If you are building from git repository, you will need to additionally install the following packages.</p>
 
-<p>If you are building from git repository, you will need to additionally install the following packages.</p>
+<pre><code> # Install autotoconf and automake.
+ $ sudo apt-get install autoconf
 
-<pre><code>    # Install autotoconf and automake.
-    $ sudo apt-get install autoconf
+ # Install libtool.
+ $ sudo apt-get install libtool
+</code></pre></li>
+</ul>
 
-    # Install libtool.
-    $ sudo apt-get install libtool
-</code></pre>
 
 <h2>Building Mesos</h2>
 
@@ -178,29 +177,32 @@
 
 <h2>Examples</h2>
 
-<p>Mesos comes bundled with example frameworks written in <code>C++</code>, <code>Java</code> and <code>Python</code>.</p>
+<ul>
+<li><p>Mesos comes bundled with example frameworks written in <code>C++</code>, <code>Java</code> and <code>Python</code>.</p>
 
-<pre><code>    # Change into build directory.
-    $ cd build
+<pre><code> # Change into build directory.
+ $ cd build
 
-    # Start mesos master.
-    $ ./bin/mesos-master.sh --ip=127.0.0.1
+ # Start mesos master.
+ $ ./bin/mesos-master.sh --ip=127.0.0.1
 
-    # Start mesos slave.
-    $ ./bin/mesos-slave.sh --master=127.0.0.1:5050
+ # Start mesos slave.
+ $ ./bin/mesos-slave.sh --master=127.0.0.1:5050
 
-    # Visit the mesos web page.
-    $ http://127.0.0.1:5050
+ # Visit the mesos web page.
+ $ http://127.0.0.1:5050
 
-    # Run C++ framework (***Exits after successfully running some tasks.***).
-    $ ./src/test-framework --master=127.0.0.1:5050
+ # Run C++ framework (***Exits after successfully running some tasks.***).
+ $ ./src/test-framework --master=127.0.0.1:5050
 
-    # Run Java framework (***Exits after successfully running some tasks.***).
-    $ ./src/examples/java/test-framework 127.0.0.1:5050
+ # Run Java framework (***Exits after successfully running some tasks.***).
+ $ ./src/examples/java/test-framework 127.0.0.1:5050
+
+ # Run Python framework (***Exits after successfully running some tasks.***).
+ $ ./src/examples/python/test-framework 127.0.0.1:5050
+</code></pre></li>
+</ul>
 
-    # Run Python framework (***Exits after successfully running some tasks.***).
-    $ ./src/examples/python/test-framework 127.0.0.1:5050
-</code></pre>
 
 <p><em>NOTE: To build the example frameworks, make sure you build the test suite by doing <code>make check</code>.</em></p>
 

Modified: mesos/site/publish/gettingstarted/index.html
URL: http://svn.apache.org/viewvc/mesos/site/publish/gettingstarted/index.html?rev=1568193&r1=1568192&r2=1568193&view=diff
==============================================================================
--- mesos/site/publish/gettingstarted/index.html (original)
+++ mesos/site/publish/gettingstarted/index.html Fri Feb 14 02:45:07 2014
@@ -109,8 +109,8 @@
 <ol>
 <li><p>Download the latest stable release from <a href="http://mesos.apache.org/downloads/">Apache</a> (<strong><em>Recommended</em></strong>)</p>
 
-<pre><code> $ wget http://www.apache.org/dist/mesos/0.14.0/mesos-0.14.0.tar.gz
- $ tar -zxf mesos-0.14.0.tar.gz
+<pre><code> $ wget http://www.apache.org/dist/mesos/0.16.0/mesos-0.16.0.tar.gz
+ $ tar -zxf mesos-0.16.0.tar.gz
 </code></pre></li>
 <li><p>Clone the Mesos git <a href="http://git-wip-us.apache.org/repos/asf/mesos.git">repository</a> (<strong><em>Advanced Users Only</em></strong>)</p>
 
@@ -137,23 +137,22 @@
  # Install devel python.
  $ sudo apt-get install python-dev
 
- # Install devel libcurl (***Optional***).
+ # Install devel libcurl
  $ sudo apt-get install libcurl4-nss-dev
 
  # Install devel libsasl (***Only required for Mesos 0.14.0 or newer***).
  $ sudo apt-get install libsasl2-dev
 </code></pre></li>
-</ul>
-
+<li><p>If you are building from git repository, you will need to additionally install the following packages.</p>
 
-<p>If you are building from git repository, you will need to additionally install the following packages.</p>
+<pre><code> # Install autotoconf and automake.
+ $ sudo apt-get install autoconf
 
-<pre><code>    # Install autotoconf and automake.
-    $ sudo apt-get install autoconf
+ # Install libtool.
+ $ sudo apt-get install libtool
+</code></pre></li>
+</ul>
 
-    # Install libtool.
-    $ sudo apt-get install libtool
-</code></pre>
 
 <h2>Building Mesos</h2>
 
@@ -178,29 +177,32 @@
 
 <h2>Examples</h2>
 
-<p>Mesos comes bundled with example frameworks written in <code>C++</code>, <code>Java</code> and <code>Python</code>.</p>
+<ul>
+<li><p>Mesos comes bundled with example frameworks written in <code>C++</code>, <code>Java</code> and <code>Python</code>.</p>
 
-<pre><code>    # Change into build directory.
-    $ cd build
+<pre><code> # Change into build directory.
+ $ cd build
 
-    # Start mesos master.
-    $ ./bin/mesos-master.sh --ip=127.0.0.1
+ # Start mesos master.
+ $ ./bin/mesos-master.sh --ip=127.0.0.1
 
-    # Start mesos slave.
-    $ ./bin/mesos-slave.sh --master=127.0.0.1:5050
+ # Start mesos slave.
+ $ ./bin/mesos-slave.sh --master=127.0.0.1:5050
 
-    # Visit the mesos web page.
-    $ http://127.0.0.1:5050
+ # Visit the mesos web page.
+ $ http://127.0.0.1:5050
 
-    # Run C++ framework (***Exits after successfully running some tasks.***).
-    $ ./src/test-framework --master=127.0.0.1:5050
+ # Run C++ framework (***Exits after successfully running some tasks.***).
+ $ ./src/test-framework --master=127.0.0.1:5050
 
-    # Run Java framework (***Exits after successfully running some tasks.***).
-    $ ./src/examples/java/test-framework 127.0.0.1:5050
+ # Run Java framework (***Exits after successfully running some tasks.***).
+ $ ./src/examples/java/test-framework 127.0.0.1:5050
+
+ # Run Python framework (***Exits after successfully running some tasks.***).
+ $ ./src/examples/python/test-framework 127.0.0.1:5050
+</code></pre></li>
+</ul>
 
-    # Run Python framework (***Exits after successfully running some tasks.***).
-    $ ./src/examples/python/test-framework 127.0.0.1:5050
-</code></pre>
 
 <p><em>NOTE: To build the example frameworks, make sure you build the test suite by doing <code>make check</code>.</em></p>
 

Modified: mesos/site/source/documentation/latest/getting-started.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/getting-started.md?rev=1568193&r1=1568192&r2=1568193&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/getting-started.md (original)
+++ mesos/site/source/documentation/latest/getting-started.md Fri Feb 14 02:45:07 2014
@@ -10,8 +10,8 @@ There are different ways you can get Mes
 
 1. Download the latest stable release from [Apache](http://mesos.apache.org/downloads/) (***Recommended***)
 
-        $ wget http://www.apache.org/dist/mesos/0.14.0/mesos-0.14.0.tar.gz
-        $ tar -zxf mesos-0.14.0.tar.gz
+        $ wget http://www.apache.org/dist/mesos/0.16.0/mesos-0.16.0.tar.gz
+        $ tar -zxf mesos-0.16.0.tar.gz
 
 2. Clone the Mesos git [repository](http://git-wip-us.apache.org/repos/asf/mesos.git) (***Advanced Users Only***)
 
@@ -35,14 +35,14 @@ There are different ways you can get Mes
         # Install devel python.
         $ sudo apt-get install python-dev
 
-        # Install devel libcurl (***Optional***).
+        # Install devel libcurl
         $ sudo apt-get install libcurl4-nss-dev
 
         # Install devel libsasl (***Only required for Mesos 0.14.0 or newer***).
         $ sudo apt-get install libsasl2-dev
 
 
-If you are building from git repository, you will need to additionally install the following packages.
+-  If you are building from git repository, you will need to additionally install the following packages.
 
         # Install autotoconf and automake.
         $ sudo apt-get install autoconf
@@ -72,7 +72,7 @@ If you are building from git repository,
         $ make install
 
 ## Examples
-Mesos comes bundled with example frameworks written in `C++`, `Java` and `Python`.
+-  Mesos comes bundled with example frameworks written in `C++`, `Java` and `Python`.
 
         # Change into build directory.
         $ cd build