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/21 07:16:32 UTC

svn commit: r1570463 - in /mesos/site: ./ publish/documentation/latest/release-guide/ publish/documentation/release-guide/ source/documentation/ source/documentation/latest/

Author: dlester
Date: Fri Feb 21 06:16:31 2014
New Revision: 1570463

URL: http://svn.apache.org/r1570463
Log:
Fixes MESOS-1012, applying jfarrell's patch to update how we strip md extensions from documentation pages.

Modified:
    mesos/site/Rakefile
    mesos/site/publish/documentation/latest/release-guide/index.html
    mesos/site/publish/documentation/release-guide/index.html
    mesos/site/source/documentation/latest.html.md
    mesos/site/source/documentation/latest/allocation-module.md
    mesos/site/source/documentation/latest/app-framework-development-guide.md
    mesos/site/source/documentation/latest/committers-guide.md
    mesos/site/source/documentation/latest/configuration.md
    mesos/site/source/documentation/latest/deploy-scripts.md
    mesos/site/source/documentation/latest/ec2-scripts.md
    mesos/site/source/documentation/latest/high-availability.md
    mesos/site/source/documentation/latest/logging-and-debugging.md
    mesos/site/source/documentation/latest/mesos-c++-style-guide.md
    mesos/site/source/documentation/latest/mesos-code-internals.md
    mesos/site/source/documentation/latest/mesos-developers-guide.md
    mesos/site/source/documentation/latest/mesos-presentations.md
    mesos/site/source/documentation/latest/mesos-roadmap.md
    mesos/site/source/documentation/latest/powered-by-mesos.md
    mesos/site/source/documentation/latest/release-guide.md
    mesos/site/source/documentation/latest/running-a-web-application-farm-on-mesos.md
    mesos/site/source/documentation/latest/running-torque-or-mpi-on-mesos.md
    mesos/site/source/documentation/latest/slave-recovery.md
    mesos/site/source/documentation/latest/using-the-mesos-submit-tool.md

Modified: mesos/site/Rakefile
URL: http://svn.apache.org/viewvc/mesos/site/Rakefile?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/Rakefile (original)
+++ mesos/site/Rakefile Fri Feb 21 06:16:31 2014
@@ -3,14 +3,14 @@ require 'rake/clean'
 require 'fileutils'
 
 task :default => [:update_docs, :build, :clean]
- 
+
 CLEAN.include "tmp", "**/.DS_Store"
 
 desc "Build the website from source"
 task :build do
   puts "Building website from static source"
   result = system("middleman build --clean")
-  if result 
+  if result
     puts "Successfully generated the site, please commit your changes"
   else
     puts "An error was encountered when generating the site"
@@ -19,33 +19,32 @@ end
 
 desc "Update the latest docs from the Apache Mesos codebase"
 task :update_docs do
-  puts "Updating latest documentation from the Apache Mesos codebase" 
-  
+  puts "Updating latest documentation from the Apache Mesos codebase"
+
   tmp_dir = File.join(File.dirname(__FILE__), "tmp")
   docs_dir = File.join(File.dirname(__FILE__), "source/documentation")
   Rake::Task[:clean].invoke if File.exist?(tmp_dir)
-  
+
   puts "Cloning Apache Mesos codebase"
-  system("mkdir -p #{tmp_dir}")
+  FileUtils.mkdir_p(tmp_dir)
   system("git clone --depth 1 http://git-wip-us.apache.org/repos/asf/mesos.git #{tmp_dir}/mesos")
   puts "Updating docs to the latest version"
-  system("rm -f source/documentation/latest/*.md")
-  system("cp -a #{tmp_dir}/mesos/docs/*.md source/documentation/latest/")
-  puts "Parse documentation files, removing md extension and making links relative"
-  # loop through directory of files, passing filenames
-  Dir.foreach("#{docs_dir}/latest/") do |doc|
-    next if doc == "." or doc == ".."
-    # do work on real documents
-    puts "working on: #{doc}"
-    # find links, removing .md extensions from urls
-    system("sed 's/.md//g' #{docs_dir}/latest/#{doc} > #{docs_dir}/latest/#{doc}.temp")
-    system("mv #{docs_dir}/latest/#{doc}.temp #{docs_dir}/latest/#{doc}")
-  end
+  FileUtils.rm_f(Dir.glob("source/documentation/latest/*.md"))
+  FileUtils.cp_r(Dir.glob("#{tmp_dir}/mesos/docs/*.md"), File.expand_path("source/documentation/latest/"))
+  puts "Parse documentation files to removing md extension in any links"
+  Dir.chdir("#{docs_dir}/latest/") {
+    Dir.glob('*.md').each { |doc|
+      puts "working on: #{doc}"
+      IO.write(doc, File.open(doc) { |f|
+        f.read.gsub(/\((.*)(\.md)\)/, '(\1)')
+      })
+    }
+  }
   puts "Moving documentation index to its own 'latest' directory"
-  system("mv source/documentation/latest/home.md source/documentation/latest.md")
+  FileUtils.mv("source/documentation/latest/home.md", "source/documentation/latest.html.md")
   puts "Documentation updated"
 end
- 
+
 desc "Run the site in development mode. Preview available at http://localhost:4567/"
 task :dev do
   system("middleman server")

Modified: mesos/site/publish/documentation/latest/release-guide/index.html
URL: http://svn.apache.org/viewvc/mesos/site/publish/documentation/latest/release-guide/index.html?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/publish/documentation/latest/release-guide/index.html (original)
+++ mesos/site/publish/documentation/latest/release-guide/index.html Fri Feb 21 06:16:31 2014
@@ -122,7 +122,7 @@ the CHANGELOG for the release version is
 <blockquote><p>NOTE: You should use JIRA to generate the CHANGELOG for you. Click on the release
   version in <a href="https://issues.apache.org/jira/browse/MESOS#selectedTab=com.atlassian.jira.plugin.system.project%3Aversions-panel">JIRA</a> and click
   on the <code>Release Notes</code>. Make sure to configure the release notes in text format.</p></blockquote></li>
-<li><p>Update and commit the <code>docs/upgrades</code> with instructions about how to upgrade
+<li><p>Update and commit the <code>docs/upgrades.md</code> with instructions about how to upgrade
 a live cluster from the previous release version to this release version.</p></li>
 <li><p>If this is a major release please write and commit documentation for this feature.</p></li>
 </ol>

Modified: mesos/site/publish/documentation/release-guide/index.html
URL: http://svn.apache.org/viewvc/mesos/site/publish/documentation/release-guide/index.html?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/publish/documentation/release-guide/index.html (original)
+++ mesos/site/publish/documentation/release-guide/index.html Fri Feb 21 06:16:31 2014
@@ -122,7 +122,7 @@ the CHANGELOG for the release version is
 <blockquote><p>NOTE: You should use JIRA to generate the CHANGELOG for you. Click on the release
   version in <a href="https://issues.apache.org/jira/browse/MESOS#selectedTab=com.atlassian.jira.plugin.system.project%3Aversions-panel">JIRA</a> and click
   on the <code>Release Notes</code>. Make sure to configure the release notes in text format.</p></blockquote></li>
-<li><p>Update and commit the <code>docs/upgrades</code> with instructions about how to upgrade
+<li><p>Update and commit the <code>docs/upgrades.md</code> with instructions about how to upgrade
 a live cluster from the previous release version to this release version.</p></li>
 <li><p>If this is a major release please write and commit documentation for this feature.</p></li>
 </ol>

Modified: mesos/site/source/documentation/latest.html.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest.html.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest.html.md (original)
+++ mesos/site/source/documentation/latest.html.md Fri Feb 21 06:16:31 2014
@@ -6,21 +6,22 @@ layout: documentation
 
 ## Users Documentation
 
+* [Mesos Configuration](configuration) for command-line arguments
 * [Deploy Scripts](deploy-scripts) for launching a Mesos cluster on a set of machines.
 * [EC2 scripts](ec2-scripts) for launching a Mesos cluster on Amazon EC2.
-* [Logging and Debugging](logging-and-debugging) -- viewing Mesos and framework logs.
+* [Logging and Debugging](logging-and-debugging) for viewing Mesos and framework logs.
 * [High Availability](high-availability) for running multiple masters simultaneously.
-* [Slave Recovery](slave-recovery)
-* [Using Mesos Submit Tool](using-the-mesos-submit-tool) for launching a framework with a single task.
+* [Slave Recovery](slave-recovery) for doing seamless upgrades
 
 ## Running Mesos Frameworks
 
+* [Running Aurora on Mesos](https://github.com/apache/incubator-aurora/tree/master/docs)
+* [Running Chronos on Mesos](https://github.com/airbnb/chronos)
 * [Running Hadoop on Mesos](https://github.com/mesos/hadoop)
-* [Running Spark on Mesos](http://spark.incubator.apache.org/docs/latest/running-on-mesos.html)
-* [Running Torque or MPI on Mesos](running-torque-or-mpi-on-mesos)
 * [Running Jenkins on Mesos](https://github.com/jenkinsci/mesos-plugin)
-* [Running Chronos on Mesos](https://github.com/airbnb/chronos)
 * [Running Marathon on Mesos](https://github.com/mesosphere/marathon)
+* [Running Spark on Mesos](http://spark.incubator.apache.org/docs/latest/running-on-mesos.html)
+* [Running Torque or MPI on Mesos](running-torque-or-mpi-on-mesos)
 * [Using Mesos with Hypertable on EC2](https://code.google.com/p/hypertable/wiki/Mesos)
 
 ## Developing Mesos Frameworks and Applications
@@ -34,6 +35,7 @@ layout: documentation
 
 * [Mesos Developers Guide](mesos-developers-guide) includes resources for developers contributing to Mesos and the process of submitting patches for review.
 * [C++ Style Guide](mesos-c++-style-guide)
+* [Release Guide](release-guide)
 * [Mesos Development Road Map](mesos-roadmap)
 
 ## More Info about Mesos

Modified: mesos/site/source/documentation/latest/allocation-module.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/allocation-module.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/allocation-module.md (original)
+++ mesos/site/source/documentation/latest/allocation-module.md Fri Feb 21 06:16:31 2014
@@ -129,4 +129,4 @@ Sorters are implemented in C++ and inher
 
 The default @Sorter@ is the DRFSorter, which implements fair sharing and can be found at @MESOS_HOME/src/master/drf_sorter.hpp@.
 
-For DRF, if weights are specified in Sorter::add, a client's share will be divided by the weight, creating a form of priority. For example, a role that has a weight of 2 will be offered twice as many resources as a role with weight 1.
+For DRF, if weights are specified in Sorter::add, a client's share will be divided by the weight, creating a form of priority. For example, a role that has a weight of 2 will be offered twice as many resources as a role with weight 1.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/app-framework-development-guide.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/app-framework-development-guide.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/app-framework-development-guide.md (original)
+++ mesos/site/source/documentation/latest/app-framework-development-guide.md Fri Feb 21 06:16:31 2014
@@ -205,4 +205,4 @@ Declared in `MESOS_HOME/include/mesos/ex
 
 You need to put your framework somewhere that all slaves on the cluster can get it from. If you are running HDFS, you can put your executor into HDFS. Then, you tell Mesos where it is via the `ExecutorInfo` parameter of `MesosSchedulerDriver`'s constructor (e.g. see src/examples/java/TestFramework.java for an example of this). ExecutorInfo is a a Protocol Buffer Message class (defined in `include/mesos/mesos.proto`), and you set its URI field to something like "HDFS://path/to/executor/". Also, you can pass the `frameworks_home` configuration option (defaults to: `MESOS_HOME/frameworks`) to your `mesos-slave` daemons when you launch them to specify where all of your framework executors are stored (e.g. on an NFS mount that is available to all slaves), then set `ExecutorInfo` to be a relative path, and the slave will prepend the value of frameworks_home to the relative path provided.
 
-Once you are sure that your executors are available to the mesos-slaves, you should be able to run your scheduler, which will register with the Mesos master, and start receiving resource offers!
+Once you are sure that your executors are available to the mesos-slaves, you should be able to run your scheduler, which will register with the Mesos master, and start receiving resource offers!
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/committers-guide.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/committers-guide.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/committers-guide.md (original)
+++ mesos/site/source/documentation/latest/committers-guide.md Fri Feb 21 06:16:31 2014
@@ -81,4 +81,4 @@ until Jenkins gives it a 'ship it'. Note
 build, the fixes are often small and inconsequential so don't worry
 about going through a review cycle for that, just fix things (but
 don't take that as a license to "wait until the build fails to fix
-things").
+things").
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/configuration.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/configuration.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/configuration.md (original)
+++ mesos/site/source/documentation/latest/configuration.md Fri Feb 21 06:16:31 2014
@@ -85,4 +85,4 @@ The configure script itself accepts the 
 * `--with-webui`: Enable the Mesos web UI (which requires Python 2.6). Recommended.
 * `--with-java-home=DIR`: Enable Java application/framework support with a given installation of Java. Required for Hadoop and Spark.
 * `--with-java-headers=DIR`: Find Java header files (necessary for newer versions of OS X Snow Leopard).
-* `--with-included-zookeeper` or `--with-zookeeper=DIR`: Enable master fault-tolerance using an existing ZooKeeper installation or the version of ZooKeeper bundled with Mesos. For details, see [High Availability](high-availability).
+* `--with-included-zookeeper` or `--with-zookeeper=DIR`: Enable master fault-tolerance using an existing ZooKeeper installation or the version of ZooKeeper bundled with Mesos. For details, see [High Availability](high-availability).
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/deploy-scripts.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/deploy-scripts.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/deploy-scripts.md (original)
+++ mesos/site/source/documentation/latest/deploy-scripts.md Fri Feb 21 06:16:31 2014
@@ -13,4 +13,4 @@ Finally, the deploy scripts do not use Z
 ## Notes
 
 * The deploy scripts assume that Mesos is located in the same directory on all nodes.
-* If you want to enable multiple Unix users to submit to the same cluster, you need to run the Mesos slaves as root (or possibly set the right attributes on the `mesos-slave` binary). Otherwise, they will fail to `setuid`.
+* If you want to enable multiple Unix users to submit to the same cluster, you need to run the Mesos slaves as root (or possibly set the right attributes on the `mesos-slave` binary). Otherwise, they will fail to `setuid`.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/ec2-scripts.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/ec2-scripts.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/ec2-scripts.md (original)
+++ mesos/site/source/documentation/latest/ec2-scripts.md Fri Feb 21 06:16:31 2014
@@ -56,4 +56,4 @@ The `mesos-ec2` script also supports pau
 
 ## Limitations
 
-* The `mesos-ec2` script currently does not use the [deploy scripts](deploy-scripts) included with Mesos to manage its clusters. This will likely be fixed in the future.
+* The `mesos-ec2` script currently does not use the [deploy scripts](deploy-scripts) included with Mesos to manage its clusters. This will likely be fixed in the future.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/high-availability.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/high-availability.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/high-availability.md (original)
+++ mesos/site/source/documentation/latest/high-availability.md Fri Feb 21 06:16:31 2014
@@ -47,4 +47,4 @@ The following semantics are enforced:
 
 * If a slave is partitioned from the master, it will fail health-checks. The master will mark the slave as deactivated and send its tasks to LOST.
 * Deactivated slaves may not re-register with the master, and are instructed to shut down upon any further communication after deactivation.
-* When a slave is partitioned from ZooKeeper, it will enter a master-less state. It will ignore any master messages until a new master is elected.
+* When a slave is partitioned from ZooKeeper, it will enter a master-less state. It will ignore any master messages until a new master is elected.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/logging-and-debugging.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/logging-and-debugging.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/logging-and-debugging.md (original)
+++ mesos/site/source/documentation/latest/logging-and-debugging.md Fri Feb 21 06:16:31 2014
@@ -6,4 +6,4 @@ layout: documentation
 
 Mesos uses the [Google Logging library](http://code.google.com/p/google-glog) and writes logs to `MESOS_HOME/logs` by default, where `MESOS_HOME` is the location where Mesos is installed. The log directory can be [configured](configuration) using the `log_dir` parameter.
 
-Frameworks that run on Mesos have their output stored to a "work" directory on each machine. By default, this is `MESOS_HOME/work`. Within this directory, a framework's output is placed in files called `stdout` and `stderr` in a directory of the form `slave-X/fw-Y/Z`, where X is the slave ID, Y is the framework ID, and multiple subdirectories Z are created for each attempt to run an executor for the framework. These files can also be accessed via the web UI of the slave daemon.
+Frameworks that run on Mesos have their output stored to a "work" directory on each machine. By default, this is `MESOS_HOME/work`. Within this directory, a framework's output is placed in files called `stdout` and `stderr` in a directory of the form `slave-X/fw-Y/Z`, where X is the slave ID, Y is the framework ID, and multiple subdirectories Z are created for each attempt to run an executor for the framework. These files can also be accessed via the web UI of the slave daemon.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/mesos-c++-style-guide.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-c%2B%2B-style-guide.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-c++-style-guide.md (original)
+++ mesos/site/source/documentation/latest/mesos-c++-style-guide.md Fri Feb 21 06:16:31 2014
@@ -69,4 +69,4 @@ Try&lt;Duration&gt; failoverTimeout =
 ## New Lines
 * 1 blank line at the end of the file.
 * Elements outside classes (classes, structs, global functions, etc.) should be spaced apart by 2 blank lines.
-* Elements inside classes (member variables and functions) should not be spaced apart by more than 1 blank line.
+* Elements inside classes (member variables and functions) should not be spaced apart by more than 1 blank line.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/mesos-code-internals.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-code-internals.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-code-internals.md (original)
+++ mesos/site/source/documentation/latest/mesos-code-internals.md Fri Feb 21 06:16:31 2014
@@ -38,4 +38,4 @@ The Mesos source code (found in `MESOS_H
 * slave
 * tests
 * webui
-* zookeeper
+* zookeeper
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/mesos-developers-guide.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-developers-guide.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-developers-guide.md (original)
+++ mesos/site/source/documentation/latest/mesos-developers-guide.md Fri Feb 21 06:16:31 2014
@@ -69,4 +69,4 @@ layout: documentation
 1. The last step is to ensure that the necessary documentation gets created or updated so the whole world knows about your new feature or bug fix.
 
 ## Style Guides
-* For patches to the core, we ask that you follow the [Mesos C++ Style Guide](mesos-c++-style-guide)
+* For patches to the core, we ask that you follow the [Mesos C++ Style Guide](mesos-c++-style-guide)
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/mesos-presentations.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-presentations.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-presentations.md (original)
+++ mesos/site/source/documentation/latest/mesos-presentations.md Fri Feb 21 06:16:31 2014
@@ -47,4 +47,4 @@ Presented November 8, 2010 at [LinkedIn]
 
 ### Mesos: A Resource Management Platform for Hadoop and Big Data Clusters ([Video](http://www.youtube.com/watch?v=lE3jR6nM3bw))
 Matei Zaharia
-Presented Summer 2010 at [Yahoo](http://yahoo.com)
+Presented Summer 2010 at [Yahoo](http://yahoo.com)
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/mesos-roadmap.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/mesos-roadmap.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/mesos-roadmap.md (original)
+++ mesos/site/source/documentation/latest/mesos-roadmap.md Fri Feb 21 06:16:31 2014
@@ -6,4 +6,4 @@ layout: documentation
 
 The [Mesos JIRA Road Map](https://issues.apache.org/jira/browse/MESOS#selectedTab=com.atlassian.jira.plugin.system.project%3Aroadmap-panel) provides the most up-to-date information regarding what is planned in future releases.
 
-If you have comments or suggestions, you may direct them to the Mesos dev list (dev@mesos.apache.org), or assign issues to future releases.
+If you have comments or suggestions, you may direct them to the Mesos dev list (dev@mesos.apache.org), or assign issues to future releases.
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/powered-by-mesos.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/powered-by-mesos.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/powered-by-mesos.md (original)
+++ mesos/site/source/documentation/latest/powered-by-mesos.md Fri Feb 21 06:16:31 2014
@@ -16,7 +16,7 @@ layout: documentation
 * [HubSpot](http://www.hubspot.com)
 * [Ignidata](http://www.ignidata.com)
 * [iQIYI](http://www.iqiyi.com/)
-* [Medidata Solutions](http://wwwsol.com)
+* [Medidata Solutions](http://www.mdsol.com)
 * [MediaCrossing](http://www.mediacrossing.com)
 * [OpenTable](http://www.opentable.com)
 * [Pinkbike](http://www.pinkbike.com)
@@ -46,4 +46,4 @@ layout: documentation
 * [Storm](https://github.com/mesosphere/storm-mesos)
 * [Torque](http://mesos.apache.org/documentation/latest/running-torque-or-mpi-on-mesos/)
 
-If you're using Mesos, please add yourself to the list above, or email user@mesos.apache.org and we'll add you!
+If you're using Mesos, please add yourself to the list above, or email user@mesos.apache.org and we'll add you!
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/release-guide.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/release-guide.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/release-guide.md (original)
+++ mesos/site/source/documentation/latest/release-guide.md Fri Feb 21 06:16:31 2014
@@ -27,7 +27,7 @@ This guide describes the process of doin
      on the `Release Notes`. Make sure to configure the release notes in text format.
 
 
-3. Update and commit the `docs/upgrades` with instructions about how to upgrade
+3. Update and commit the `docs/upgrades.md` with instructions about how to upgrade
    a live cluster from the previous release version to this release version.
 
 

Modified: mesos/site/source/documentation/latest/running-a-web-application-farm-on-mesos.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/running-a-web-application-farm-on-mesos.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/running-a-web-application-farm-on-mesos.md (original)
+++ mesos/site/source/documentation/latest/running-a-web-application-farm-on-mesos.md Fri Feb 21 06:16:31 2014
@@ -22,4 +22,4 @@ We have also found that we can allow mul
 
 We have also successfully used Amazon's Elastic Load Balancer instead of HAProxy. This is still in a non-master development branch called [andyk-elb+apache-notorque](https://github.com/mesos/mesos/tree/andyk-elb+apache-notorque). You will need to set up a Mesos EC2 cluster and the framework uses python boto to connect to Amazon's CloudWatch and EC2 so you will need to create a credentials file for boto to be able to connect to those amazon services correctly from the node on which you run the framework.
 
-Watch out when using ELB however, since it displays some interesting and non-intuitive behavior when ramping up and down (though it doesn't drop connections like HAProxy does out of the box). [This blog post](http://shlomoswidler.com/2009/07/elastic-in-elastic-load-balancing-elb.html) details how ELB ramps up and down. 
+Watch out when using ELB however, since it displays some interesting and non-intuitive behavior when ramping up and down (though it doesn't drop connections like HAProxy does out of the box). [This blog post](http://shlomoswidler.com/2009/07/elastic-in-elastic-load-balancing-elb.html) details how ELB ramps up and down. 
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/running-torque-or-mpi-on-mesos.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/running-torque-or-mpi-on-mesos.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/running-torque-or-mpi-on-mesos.md (original)
+++ mesos/site/source/documentation/latest/running-torque-or-mpi-on-mesos.md Fri Feb 21 06:16:31 2014
@@ -6,4 +6,4 @@ layout: documentation
 
 Torque is cluster scheduler that we have ported in a very simple way (via some Python wrappers around Torque) to run on top of Mesos. This port can be found in `MESOS_HOME/frameworks/torque`. There is a README.txt in that directory with some details. But for now while were in Alpha looking directly at the python source for the framework scheduler and executor will be helpful.
 
-We have also run MPICH2 directly on top of mesos. See `MESOS_HOME/frameworks/mpi` for this port. Basically it sets up the MPICH2 MPD ring for you when you use nmpiexec (which is named that way because Mesos used to be called **N**exus).
+We have also run MPICH2 directly on top of mesos. See `MESOS_HOME/frameworks/mpi` for this port. Basically it sets up the MPICH2 MPD ring for you when you use nmpiexec (which is named that way because Mesos used to be called **N**exus).
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/slave-recovery.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/slave-recovery.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/slave-recovery.md (original)
+++ mesos/site/source/documentation/latest/slave-recovery.md Fri Feb 21 06:16:31 2014
@@ -63,4 +63,4 @@ As part of this feature, `FrameworkInfo`
 
 ## Upgrading to 0.14.0
 
-If you want to upgrade a running Mesos cluster to 0.14.0 to take advantage of slave recovery please follow the [upgrade instructions](upgrades).
+If you want to upgrade a running Mesos cluster to 0.14.0 to take advantage of slave recovery please follow the [upgrade instructions](upgrades).
\ No newline at end of file

Modified: mesos/site/source/documentation/latest/using-the-mesos-submit-tool.md
URL: http://svn.apache.org/viewvc/mesos/site/source/documentation/latest/using-the-mesos-submit-tool.md?rev=1570463&r1=1570462&r2=1570463&view=diff
==============================================================================
--- mesos/site/source/documentation/latest/using-the-mesos-submit-tool.md (original)
+++ mesos/site/source/documentation/latest/using-the-mesos-submit-tool.md Fri Feb 21 06:16:31 2014
@@ -6,4 +6,4 @@ layout: documentation
 
 Sometimes you just want to run a command or launch a binary on all (or a subset) of the nodes in your cluster. `mesos-submit` lets you do just that!
 
-Mesos-submit is a little framework that lets you run a binary in the Mesos cluster without having to keep a scheduler running on the machine you submitted it from. You call mesos-submit <binary> and the script will launch a framework with a single task. This task then takes over as the scheduler for this framework (using the scheduler failover feature), and the mesos-submit process (which was the initial scheduler) can safely exit. The task then goes on to run the command. This is useful for people who want to submit their schedulers to the cluster for example.
+Mesos-submit is a little framework that lets you run a binary in the Mesos cluster without having to keep a scheduler running on the machine you submitted it from. You call mesos-submit <binary> and the script will launch a framework with a single task. This task then takes over as the scheduler for this framework (using the scheduler failover feature), and the mesos-submit process (which was the initial scheduler) can safely exit. The task then goes on to run the command. This is useful for people who want to submit their schedulers to the cluster for example.
\ No newline at end of file