You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fluo.apache.org by mw...@apache.org on 2016/08/02 15:46:28 UTC

[2/4] incubator-fluo-website git commit: Jekyll build from gh-pages:6ec27f6

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/applications/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/applications/index.html b/docs/fluo/1.0.0-beta-1/applications/index.html
index 9c7008b..9822e1e 100644
--- a/docs/fluo/1.0.0-beta-1/applications/index.html
+++ b/docs/fluo/1.0.0-beta-1/applications/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Creating Fluo applications</h2>
   </header>
@@ -89,7 +93,7 @@ you can create your own Fluo client or observer by the following the steps below
 
 <p>For both clients and observers, you will need to include the following in your Maven pom:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span class="nt">&lt;dependency&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>io.fluo<span class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>fluo-api<span class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;version&gt;</span>1.0.0-beta-1<span class="nt">&lt;/version&gt;</span>
@@ -117,13 +121,13 @@ to connect to your Fluo instance.</p>
 it to build a <a href="/apidocs/fluo/1.0.0-beta-1/io/fluo/api/config/FluoConfiguration.html">FluoConfiguration</a> object with all necessary properties which are all properties with the 
 <code class="highlighter-rouge">io.fluo.client.*</code> prefix in <a href="https://github.com/fluo-io/fluo/blob/1.0.0-beta-1/modules/distribution/src/main/config/fluo.properties">fluo.properties</a>:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">(</span><span class="k">new</span> <span class="n">File</span><span class="o">(</span><span class="s">"fluo.properties"</span><span class="o">));</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">(</span><span class="k">new</span> <span class="n">File</span><span class="o">(</span><span class="s">"fluo.properties"</span><span class="o">));</span>
 </code></pre>
 </div>
 
 <p>You can also create an empty <a href="/apidocs/fluo/1.0.0-beta-1/io/fluo/api/config/FluoConfiguration.html">FluoConfiguration</a> object and set properties using Java:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">();</span>
 <span class="n">config</span><span class="o">.</span><span class="na">setAccumuloUser</span><span class="o">(</span><span class="s">"user"</span><span class="o">);</span>
 <span class="n">config</span><span class="o">.</span><span class="na">setAccumuloPassword</span><span class="o">(</span><span class="s">"pass"</span><span class="o">);</span>
 <span class="n">config</span><span class="o">.</span><span class="na">setAccumuloInstance</span><span class="o">(</span><span class="s">"instance"</span><span class="o">);</span>
@@ -132,7 +136,7 @@ it to build a <a href="/apidocs/fluo/1.0.0-beta-1/io/fluo/api/config/FluoConfigu
 
 <p>Once you have <a href="/apidocs/fluo/1.0.0-beta-1/io/fluo/api/config/FluoConfiguration.html">FluoConfiguration</a> object, pass it to the <code class="highlighter-rouge">newClient()</code> method of <a href="/apidocs/fluo/1.0.0-beta-1/io/fluo/api/client/FluoFactory.html">FluoFactory</a> to create a <a href="/apidocs/fluo/1.0.0-beta-1/io/fluo/api/client/FluoClient.html">FluoClient</a>:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">FluoClient</span> <span class="n">client</span> <span class="o">=</span> <span class="n">FluoFactory</span><span class="o">.</span><span class="na">newClient</span><span class="o">(</span><span class="n">config</span><span class="o">)</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">FluoClient</span> <span class="n">client</span> <span class="o">=</span> <span class="n">FluoFactory</span><span class="o">.</span><span class="na">newClient</span><span class="o">(</span><span class="n">config</span><span class="o">)</span>
 </code></pre>
 </div>
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/architecture/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/architecture/index.html b/docs/fluo/1.0.0-beta-1/architecture/index.html
index c2e7cfa..1433096 100644
--- a/docs/fluo/1.0.0-beta-1/architecture/index.html
+++ b/docs/fluo/1.0.0-beta-1/architecture/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo Architecture</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/contributing/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/contributing/index.html b/docs/fluo/1.0.0-beta-1/contributing/index.html
index 6d11a58..31d3e02 100644
--- a/docs/fluo/1.0.0-beta-1/contributing/index.html
+++ b/docs/fluo/1.0.0-beta-1/contributing/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Contributing to Fluo</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/index.html b/docs/fluo/1.0.0-beta-1/index.html
index 2ebbcfc..46648f2 100644
--- a/docs/fluo/1.0.0-beta-1/index.html
+++ b/docs/fluo/1.0.0-beta-1/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo 1.0.0-beta-1 Documentation</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/metrics/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/metrics/index.html b/docs/fluo/1.0.0-beta-1/metrics/index.html
index a267e66..94e135e 100644
--- a/docs/fluo/1.0.0-beta-1/metrics/index.html
+++ b/docs/fluo/1.0.0-beta-1/metrics/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo Metrics</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/mini-fluo-setup/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/mini-fluo-setup/index.html b/docs/fluo/1.0.0-beta-1/mini-fluo-setup/index.html
index 1345a5b..39e4743 100644
--- a/docs/fluo/1.0.0-beta-1/mini-fluo-setup/index.html
+++ b/docs/fluo/1.0.0-beta-1/mini-fluo-setup/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">MiniFluo Setup</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-1/prod-fluo-setup/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-1/prod-fluo-setup/index.html b/docs/fluo/1.0.0-beta-1/prod-fluo-setup/index.html
index ae520ca..4d128be 100644
--- a/docs/fluo/1.0.0-beta-1/prod-fluo-setup/index.html
+++ b/docs/fluo/1.0.0-beta-1/prod-fluo-setup/index.html
@@ -76,6 +76,10 @@
   <div class="alert alert-danger" role="alert">These docs are for Fluo 1.0.0-beta-1 which is an old version! Check out the <a href="/docs/fluo/1.0.0-beta-2/">latest docs</a>!</div>
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Production Setup</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/applications/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/applications/index.html b/docs/fluo/1.0.0-beta-2/applications/index.html
index 18b983b..59d49b6 100644
--- a/docs/fluo/1.0.0-beta-2/applications/index.html
+++ b/docs/fluo/1.0.0-beta-2/applications/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Creating Fluo applications</h2>
   </header>
@@ -87,7 +91,7 @@ you can create your own Fluo client or observer by the following the steps below
 
 <p>For both clients and observers, you will need to include the following in your Maven pom:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="nt">&lt;dependency&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span class="nt">&lt;dependency&gt;</span>
   <span class="nt">&lt;groupId&gt;</span>io.fluo<span class="nt">&lt;/groupId&gt;</span>
   <span class="nt">&lt;artifactId&gt;</span>fluo-api<span class="nt">&lt;/artifactId&gt;</span>
   <span class="nt">&lt;version&gt;</span>1.0.0-beta-2<span class="nt">&lt;/version&gt;</span>
@@ -115,13 +119,13 @@ to connect to your Fluo instance.</p>
 it to build a <a href="/apidocs/fluo/1.0.0-beta-2/io/fluo/api/config/FluoConfiguration.html">FluoConfiguration</a> object with all necessary properties which are all properties with the 
 <code class="highlighter-rouge">io.fluo.client.*</code> prefix in <a href="https://github.com/fluo-io/fluo/blob/1.0.0-beta-2/modules/distribution/src/main/config/fluo.properties">fluo.properties</a>:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">(</span><span class="k">new</span> <span class="n">File</span><span class="o">(</span><span class="s">"fluo.properties"</span><span class="o">));</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">(</span><span class="k">new</span> <span class="n">File</span><span class="o">(</span><span class="s">"fluo.properties"</span><span class="o">));</span>
 </code></pre>
 </div>
 
 <p>You can also create an empty <a href="/apidocs/fluo/1.0.0-beta-2/io/fluo/api/config/FluoConfiguration.html">FluoConfiguration</a> object and set properties using Java:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">();</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">FluoConfiguration</span> <span class="n">config</span> <span class="o">=</span> <span class="k">new</span> <span class="n">FluoConfiguration</span><span class="o">();</span>
 <span class="n">config</span><span class="o">.</span><span class="na">setAccumuloUser</span><span class="o">(</span><span class="s">"user"</span><span class="o">);</span>
 <span class="n">config</span><span class="o">.</span><span class="na">setAccumuloPassword</span><span class="o">(</span><span class="s">"pass"</span><span class="o">);</span>
 <span class="n">config</span><span class="o">.</span><span class="na">setAccumuloInstance</span><span class="o">(</span><span class="s">"instance"</span><span class="o">);</span>
@@ -130,7 +134,7 @@ it to build a <a href="/apidocs/fluo/1.0.0-beta-2/io/fluo/api/config/FluoConfigu
 
 <p>Once you have <a href="/apidocs/fluo/1.0.0-beta-2/io/fluo/api/config/FluoConfiguration.html">FluoConfiguration</a> object, pass it to the <code class="highlighter-rouge">newClient()</code> method of <a href="/apidocs/fluo/1.0.0-beta-2/io/fluo/api/client/FluoFactory.html">FluoFactory</a> to create a <a href="/apidocs/fluo/1.0.0-beta-2/io/fluo/api/client/FluoClient.html">FluoClient</a>:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="n">FluoClient</span> <span class="n">client</span> <span class="o">=</span> <span class="n">FluoFactory</span><span class="o">.</span><span class="na">newClient</span><span class="o">(</span><span class="n">config</span><span class="o">)</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="n">FluoClient</span> <span class="n">client</span> <span class="o">=</span> <span class="n">FluoFactory</span><span class="o">.</span><span class="na">newClient</span><span class="o">(</span><span class="n">config</span><span class="o">)</span>
 </code></pre>
 </div>
 
@@ -145,7 +149,7 @@ the class is run, Fluo classes and dependencies will be on the classpath.  The
 <code class="highlighter-rouge">fluo exec</code> command can inject the applications configuration if the class is
 written in the following way.  Defining the injection point is optional.</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">javax.inject.Inject</span><span class="o">;</span>
+<div class="language-java highlighter-rouge"><pre class="highlight"><code><span class="kn">import</span> <span class="nn">javax.inject.Inject</span><span class="o">;</span>
 
 <span class="kd">public</span> <span class="kd">class</span> <span class="nc">AppCommand</span> <span class="o">{</span>
 
@@ -153,7 +157,7 @@ written in the following way.  Defining the injection point is optional.</p>
   <span class="nd">@Inject</span>
   <span class="kd">private</span> <span class="kd">static</span> <span class="n">FluoConfiguration</span> <span class="n">fluoConfig</span><span class="o">;</span>
 
-  <span class="kd">public</span> <span class="kd">static</span> <span class="kt">void</span> <span class="n">main</span><span class="o">(</span><span class="n">String</span><span class="o">[]</span> <span class="n">args</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">Exception</span> <span class="o">{</span>
+  <span class="kd">public</span> <span class="kd">static</span> <span class="kt">void</span> <span class="nf">main</span><span class="o">(</span><span class="n">String</span><span class="o">[]</span> <span class="n">args</span><span class="o">)</span> <span class="kd">throws</span> <span class="n">Exception</span> <span class="o">{</span>
     <span class="k">try</span><span class="o">(</span><span class="n">FluoClient</span> <span class="n">fluoClient</span> <span class="o">=</span> <span class="n">FluoFactory</span><span class="o">.</span><span class="na">newClient</span><span class="o">(</span><span class="n">fluoConfig</span><span class="o">))</span> <span class="o">{</span>
       <span class="c1">//do stuff with Fluo</span>
     <span class="o">}</span>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/architecture/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/architecture/index.html b/docs/fluo/1.0.0-beta-2/architecture/index.html
index a78c566..89b4b83 100644
--- a/docs/fluo/1.0.0-beta-2/architecture/index.html
+++ b/docs/fluo/1.0.0-beta-2/architecture/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo Architecture</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/contributing/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/contributing/index.html b/docs/fluo/1.0.0-beta-2/contributing/index.html
index ff7b4ed..9d1754c 100644
--- a/docs/fluo/1.0.0-beta-2/contributing/index.html
+++ b/docs/fluo/1.0.0-beta-2/contributing/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Contributing to Fluo</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/grafana/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/grafana/index.html b/docs/fluo/1.0.0-beta-2/grafana/index.html
index 4b47bce..3462a20 100644
--- a/docs/fluo/1.0.0-beta-2/grafana/index.html
+++ b/docs/fluo/1.0.0-beta-2/grafana/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo metrics in Grafana</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/index.html b/docs/fluo/1.0.0-beta-2/index.html
index d708ae5..39bf157 100644
--- a/docs/fluo/1.0.0-beta-2/index.html
+++ b/docs/fluo/1.0.0-beta-2/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo 1.0.0-beta-2 Documentation</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/metrics/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/metrics/index.html b/docs/fluo/1.0.0-beta-2/metrics/index.html
index b089bf9..03252e0 100644
--- a/docs/fluo/1.0.0-beta-2/metrics/index.html
+++ b/docs/fluo/1.0.0-beta-2/metrics/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Fluo Metrics</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/mini-fluo-setup/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/mini-fluo-setup/index.html b/docs/fluo/1.0.0-beta-2/mini-fluo-setup/index.html
index a436d21..a4231f1 100644
--- a/docs/fluo/1.0.0-beta-2/mini-fluo-setup/index.html
+++ b/docs/fluo/1.0.0-beta-2/mini-fluo-setup/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">MiniFluo Setup</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/1.0.0-beta-2/prod-fluo-setup/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/1.0.0-beta-2/prod-fluo-setup/index.html b/docs/fluo/1.0.0-beta-2/prod-fluo-setup/index.html
index d6909a2..f55b24c 100644
--- a/docs/fluo/1.0.0-beta-2/prod-fluo-setup/index.html
+++ b/docs/fluo/1.0.0-beta-2/prod-fluo-setup/index.html
@@ -74,6 +74,10 @@
 
   
 
+  
+  <div class="alert alert-danger" role="alert">These docs are for a release of Fluo made before Apache incubation.</div>
+  
+
   <header class="post-header">
     <h2 class="post-title">Production Setup</h2>
   </header>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/fluo/index.html
----------------------------------------------------------------------
diff --git a/docs/fluo/index.html b/docs/fluo/index.html
index cc2ff0c..5992797 100644
--- a/docs/fluo/index.html
+++ b/docs/fluo/index.html
@@ -77,8 +77,10 @@
   </header>
 
   <article id="page-content">
-    <ul>
-  <li><a href="/docs/fluo/1.0.0-beta-2/">1.0.0-beta-2</a> - January 12, 2016 - <strong>Latest Release</strong></li>
+    <p>Fluo documentation before Apache incubation:</p>
+
+<ul>
+  <li><a href="/docs/fluo/1.0.0-beta-2/">1.0.0-beta-2</a> - January 12, 2016</li>
   <li><a href="/docs/fluo/1.0.0-beta-1/">1.0.0-beta-1</a> - June 9, 2015</li>
   <li><a href="/docs/fluo/1.0.0-alpha-1/">1.0.0-alpha-1</a> - October 2, 2014</li>
 </ul>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/index.html
----------------------------------------------------------------------
diff --git a/docs/index.html b/docs/index.html
index 9d517ff..024f37c 100644
--- a/docs/index.html
+++ b/docs/index.html
@@ -77,27 +77,19 @@
   </header>
 
   <article id="page-content">
-    <p><a href="https://github.com/apache/fluo">Fluo</a> and <a href="https://github.com/apache/fluo-recipes">Fluo Recipes</a> have seperate documentation as they are different repositories with their own release cycle.</p>
+    <p><a href="https://github.com/apache/fluo">Apache Fluo</a> and <a href="https://github.com/apache/fluo-recipes">Apache Fluo Recipes</a> have seperate documentation as they are different repositories with their own release cycle.</p>
 
-<h2 id="fluo">Fluo</h2>
+<h2 id="apache-fluo">Apache Fluo</h2>
 
-<p>Latest release is <code class="highlighter-rouge">1.0.0-beta-2</code> made on January 12, 2016.</p>
+<p>The first release of Apache Fluo has not been made yet.</p>
 
-<ul>
-  <li>Fluo documentation - <a href="/docs/fluo/1.0.0-beta-2/">Latest</a> | <a href="/docs/fluo/">Archive</a></li>
-  <li>Fluo API - <a href="/apidocs/fluo/1.0.0-beta-2/">Latest</a> | <a href="/apidocs/fluo/">Archive</a></li>
-  <li>Fluo release summary -  <a href="/release-summaries/1.0.0-beta-2/">Latest</a> | <a href="/release-summaries/">Archive</a></li>
-  <li>Fluo release notes - <a href="/release-notes/1.0.0-beta-2/">Latest</a> | <a href="/release-notes/">Archive</a></li>
-</ul>
+<h2 id="apache-fluo-recipes">Apache Fluo Recipes</h2>
 
-<h2 id="fluo-recipes">Fluo Recipes</h2>
+<p>The first release of Apache Fluo Recipes has not been made yet.</p>
 
-<p>Latest release is <code class="highlighter-rouge">1.0.0-beta-2</code> made on March 29, 2016</p>
+<h2 id="pre-apache-documentation">Pre Apache Documentation</h2>
 
-<ul>
-  <li>Fluo Recipes documentation - <a href="/docs/fluo-recipes/1.0.0-beta-2/">Latest</a> | <a href="/docs/fluo-recipes/">Archive</a></li>
-  <li>Fluo Recipes API - <a href="/apidocs/fluo-recipes/1.0.0-beta-2/">Latest</a> | <a href="/apidocs/fluo-recipes/">Archive</a></li>
-</ul>
+<p>Documentation about releases made before Apache Fluo entered incubation at Apache has been moved <a href="pre-asf">here</a></p>
 
 
   </article>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/docs/pre-asf/index.html
----------------------------------------------------------------------
diff --git a/docs/pre-asf/index.html b/docs/pre-asf/index.html
new file mode 100644
index 0000000..29c5293
--- /dev/null
+++ b/docs/pre-asf/index.html
@@ -0,0 +1,136 @@
+<!DOCTYPE html>
+<html>
+  <head>
+    <meta charset="utf-8">
+    <meta http-equiv="X-UA-Compatible" content="IE=edge">
+    <meta name="viewport" content="width=device-width, initial-scale=1">
+    <link rel="stylesheet" href="/stylesheets/fluo.css">
+    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:700,400">
+    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather">
+    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
+    <link rel="canonical" href="http://fluo.io/docs/pre-asf/">
+    <link rel="icon" type="image/png" href="/resources/favicon.png">
+    <title>Pre Apache Documentation | Apache Fluo</title>
+    <!--[if lt IE 9]>
+      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
+      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
+    <![endif]-->
+  </head>
+  <body>
+    <div id="fluo-nav" class="navbar navbar-default navbar-static-top">
+      <div class="container">
+        <div class="navbar-header">
+          <div class="navbar-toggle-wrapper visible-xs">
+            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".js-navbar-collapse">
+              <span class="icon-bar"></span>
+              <span class="icon-bar"></span>
+              <span class="icon-bar"></span>
+            </button>
+          </div>
+          <a href="/" class="navbar-brand"><img src="/resources/fluo-logo.png" alt="Apache Fluo"></a>
+        </div>
+        <div class="collapse navbar-collapse js-navbar-collapse" style="margin-top: 20px">
+          <ul class="navbar-nav nav">
+            <li><a href="/docs/">Documentation</a></li>
+            <li><a href="/download/">Download</a></li>
+            <li class="dropdown">
+              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Community<span class="caret"></span></a>
+              <ul class="dropdown-menu">
+                <li><a href="/getinvolved/">Get Involved</a></li>
+                <li><a href="/blog/">Blog</a></li>
+                <li><a href="/people/">People</a></li>
+                <li><a href="/related-projects/">Related Projects</a></li>
+                <li><a href="/poweredby/">Powered By</a></li>
+              </ul>
+            </li>
+            <li class="dropdown">
+              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing<span class="caret"></span></a>
+              <ul class="dropdown-menu">
+                <li><a href="/how-to-contribute/">How To Contribute</a></li>
+                <li><a href="/release-process/">Release Process</a></li>
+              </ul>
+            </li>
+          </ul>
+          <ul class="navbar-nav nav navbar-right">
+            <li class="dropdown">
+              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation<span class="caret"></span></a>
+              <ul class="dropdown-menu">
+                <li><a href="https://www.apache.org">Apache Homepage</a></li>
+                <li><a href="https://www.apache.org/licenses/LICENSE-2.0">License</a></li>
+                <li><a href="https://www.apache.org/foundation/sponsorship">Sponsorship</i></a></li>
+                <li><a href="https://www.apache.org/security">Security</a></li>
+                <li><a href="https://www.apache.org/foundation/thanks">Thanks</a></li>
+                <li><a href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a></li>
+              </ul>
+            </li>
+          </ul>
+        </div>
+      </div>
+    </div>
+    <div class="container">
+      <div class="row">
+          <div class="col-sm-12">
+            <div class="page">
+
+  <header class="post-header">
+    <h2 class="post-title">Pre Apache Documentation</h2>
+  </header>
+
+  <article id="page-content">
+    <div class="alert alert-danger" role="alert">Please note - This is documentation related to non-ASF releases of Fluo.  These releases were made before Apache Fluo became an ASF project.</div>
+
+<h2 id="fluo">Fluo</h2>
+
+<p>Last non-ASF release was <code class="highlighter-rouge">1.0.0-beta-2</code> made on January 12, 2016.</p>
+
+<ul>
+  <li>Documentation - <a href="/docs/fluo/1.0.0-beta-2/">Latest</a> | <a href="/docs/fluo/">Archive</a></li>
+  <li>API - <a href="/apidocs/fluo/1.0.0-beta-2/">Latest</a> | <a href="/apidocs/fluo/">Archive</a></li>
+  <li>Release summary -  <a href="/release-summaries/1.0.0-beta-2/">Latest</a> | <a href="/release-summaries/">Archive</a></li>
+  <li>Release notes - <a href="/release-notes/1.0.0-beta-2/">Latest</a> | <a href="/release-notes/">Archive</a></li>
+</ul>
+
+<h2 id="fluo-recipes">Fluo Recipes</h2>
+
+<p>Last non-ASF release was <code class="highlighter-rouge">1.0.0-beta-2</code> made on March 29, 2016.</p>
+
+<ul>
+  <li>Documentation - <a href="/docs/fluo-recipes/1.0.0-beta-2/">Latest</a> | <a href="/docs/fluo-recipes/">Archive</a></li>
+  <li>API - <a href="/apidocs/fluo-recipes/1.0.0-beta-2/">Latest</a> | <a href="/apidocs/fluo-recipes/">Archive</a></li>
+</ul>
+
+
+  </article>
+
+</div>
+
+          </div>
+      </div>
+      <hr>
+      <div class="row footer">
+        <div class="col-sm-12 text-center">
+          <div class="center-block">
+          <a href="https://apache.org"><img src="/resources/feather.png" alt="Apache"></a>
+          Copyright &copy; 2016 The Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache&nbsp;License,&nbsp;Version&nbsp;2.0</a>
+          </div>
+        </div>
+      </div>
+    </div>
+    <script src="/javascripts/jquery.min.js"></script>
+    <script src="/javascripts/bootstrap.min.js"></script>
+    <!-- Place your <script> tags here. -->
+
+<!-- Google Analytics -->
+<script>
+  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
+  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
+  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
+  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
+
+  ga('create', 'UA-55360307-1', 'auto');
+  ga('send', 'pageview');
+
+</script>
+
+  </body>
+</html>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/download/index.html
----------------------------------------------------------------------
diff --git a/download/index.html b/download/index.html
index 37c5e56..d8f8c7e 100644
--- a/download/index.html
+++ b/download/index.html
@@ -10,7 +10,7 @@
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
     <link rel="canonical" href="http://fluo.io/download/">
     <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title>Download Fluo | Apache Fluo</title>
+    <title>Download Apache Fluo | Apache Fluo</title>
     <!--[if lt IE 9]>
       <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
       <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
@@ -73,21 +73,14 @@
             <div class="page">
 
   <header class="post-header">
-    <h2 class="post-title">Download Fluo</h2>
+    <h2 class="post-title">Download Apache Fluo</h2>
   </header>
 
   <article id="page-content">
-    <p>Fluo tarball distributions are available on GitHub for download using the links below:</p>
+    <p>Tarball distributions of Apache Fluo will be available on this page after its first release as an Apache project.</p>
 
-<ul>
-  <li><a href="https://github.com/apache/fluo/releases/latest">Latest Release</a></li>
-  <li><a href="https://github.com/apache/fluo/releases">All Releases</a></li>
-</ul>
-
-<p>Before downloading a distribution, consider running Fluo using <a href="https://github.com/fluo-io/fluo-dev">fluo-dev</a> (which sets up Fluo for development) 
-or <a href="https://github.com/fluo-io/zetten">Zetten</a> (which sets up Fluo on a cluster).  Both will download and install Fluo for you.</p>
-
-<p>If you would rather install and run Fluo on your own, follow these <a href="/docs/fluo/1.0.0-beta-2/prod-fluo-setup/">installation instructions</a>.</p>
+<p>After downloading a release of Apache Fluo, follow these <a href="/docs/fluo/1.0.0-beta-2/prod-fluo-setup/">installation instructions</a> to install Fluo on
+a cluster where Accumulo, Hadoop, and Zookeeper are running.</p>
 
 
   </article>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/feed.xml
----------------------------------------------------------------------
diff --git a/feed.xml b/feed.xml
index d754018..2bfb921 100644
--- a/feed.xml
+++ b/feed.xml
@@ -5,9 +5,9 @@
     <description></description>
     <link>http://fluo.io/</link>
     <atom:link href="http://fluo.io/feed.xml" rel="self" type="application/rss+xml" />
-    <pubDate>Mon, 11 Jul 2016 15:42:48 -0400</pubDate>
-    <lastBuildDate>Mon, 11 Jul 2016 15:42:48 -0400</lastBuildDate>
-    <generator>Jekyll v3.0.3</generator>
+    <pubDate>Tue, 02 Aug 2016 11:45:09 -0400</pubDate>
+    <lastBuildDate>Tue, 02 Aug 2016 11:45:09 -0400</lastBuildDate>
+    <generator>Jekyll v3.1.6</generator>
     
       <item>
         <title>Fluo is moving to Apache</title>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/fluo-1.0.0-alpha-1-is-released/index.html
----------------------------------------------------------------------
diff --git a/fluo-1.0.0-alpha-1-is-released/index.html b/fluo-1.0.0-alpha-1-is-released/index.html
index d6c3d3d..b9bbe44 100644
--- a/fluo-1.0.0-alpha-1-is-released/index.html
+++ b/fluo-1.0.0-alpha-1-is-released/index.html
@@ -1,111 +1,10 @@
 <!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <link rel="stylesheet" href="/stylesheets/fluo.css">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:700,400">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather">
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
-    <link rel="canonical" href="http://fluo.io/fluo-1.0.0-alpha-1-is-released/">
-    <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title> Apache Fluo </title>
-    <!--[if lt IE 9]>
-      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
-      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
-    <![endif]-->
-  </head>
-  <body>
-    <div id="fluo-nav" class="navbar navbar-default navbar-static-top">
-      <div class="container">
-        <div class="navbar-header">
-          <div class="navbar-toggle-wrapper visible-xs">
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".js-navbar-collapse">
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-            </button>
-          </div>
-          <a href="/" class="navbar-brand"><img src="/resources/fluo-logo.png" alt="Apache Fluo"></a>
-        </div>
-        <div class="collapse navbar-collapse js-navbar-collapse" style="margin-top: 20px">
-          <ul class="navbar-nav nav">
-            <li><a href="/docs/">Documentation</a></li>
-            <li><a href="/download/">Download</a></li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Community<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/getinvolved/">Get Involved</a></li>
-                <li><a href="/blog/">Blog</a></li>
-                <li><a href="/people/">People</a></li>
-                <li><a href="/related-projects/">Related Projects</a></li>
-                <li><a href="/poweredby/">Powered By</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/how-to-contribute/">How To Contribute</a></li>
-                <li><a href="/release-process/">Release Process</a></li>
-              </ul>
-            </li>
-          </ul>
-          <ul class="navbar-nav nav navbar-right">
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://www.apache.org">Apache Homepage</a></li>
-                <li><a href="https://www.apache.org/licenses/LICENSE-2.0">License</a></li>
-                <li><a href="https://www.apache.org/foundation/sponsorship">Sponsorship</i></a></li>
-                <li><a href="https://www.apache.org/security">Security</a></li>
-                <li><a href="https://www.apache.org/foundation/thanks">Thanks</a></li>
-                <li><a href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a></li>
-              </ul>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="container">
-      <div class="row">
-          <div class="col-sm-12">
-            <!DOCTYPE html>
+<html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/">
-<meta http-equiv="refresh" content="0; url=/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/">
+<link rel="canonical" href="http://fluo.io/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/">
+<meta http-equiv="refresh" content="0; url=http://fluo.io/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/">
 <h1>Redirecting\u2026</h1>
-<a href="/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/">Click here if you are not redirected.</a>
-<script>location="/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/"</script>
-
-          </div>
-      </div>
-      <hr>
-      <div class="row footer">
-        <div class="col-sm-12 text-center">
-          <div class="center-block">
-          <a href="https://apache.org"><img src="/resources/feather.png" alt="Apache"></a>
-          Copyright &copy; 2016 The Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache&nbsp;License,&nbsp;Version&nbsp;2.0</a>
-          </div>
-        </div>
-      </div>
-    </div>
-    <script src="/javascripts/jquery.min.js"></script>
-    <script src="/javascripts/bootstrap.min.js"></script>
-    <!-- Place your <script> tags here. -->
-
-<!-- Google Analytics -->
-<script>
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-</script>
-
-  </body>
+<a href="http://fluo.io/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/">Click here if you are not redirected.</a>
+<script>location="http://fluo.io/blog/2014/10/02/fluo-1.0.0-alpha-1-is-released/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/fluo-1.0.0-beta-1-is-released/index.html
----------------------------------------------------------------------
diff --git a/fluo-1.0.0-beta-1-is-released/index.html b/fluo-1.0.0-beta-1-is-released/index.html
index a1411ba..3b2e3a0 100644
--- a/fluo-1.0.0-beta-1-is-released/index.html
+++ b/fluo-1.0.0-beta-1-is-released/index.html
@@ -1,111 +1,10 @@
 <!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <link rel="stylesheet" href="/stylesheets/fluo.css">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:700,400">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather">
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
-    <link rel="canonical" href="http://fluo.io/fluo-1.0.0-beta-1-is-released/">
-    <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title> Apache Fluo </title>
-    <!--[if lt IE 9]>
-      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
-      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
-    <![endif]-->
-  </head>
-  <body>
-    <div id="fluo-nav" class="navbar navbar-default navbar-static-top">
-      <div class="container">
-        <div class="navbar-header">
-          <div class="navbar-toggle-wrapper visible-xs">
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".js-navbar-collapse">
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-            </button>
-          </div>
-          <a href="/" class="navbar-brand"><img src="/resources/fluo-logo.png" alt="Apache Fluo"></a>
-        </div>
-        <div class="collapse navbar-collapse js-navbar-collapse" style="margin-top: 20px">
-          <ul class="navbar-nav nav">
-            <li><a href="/docs/">Documentation</a></li>
-            <li><a href="/download/">Download</a></li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Community<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/getinvolved/">Get Involved</a></li>
-                <li><a href="/blog/">Blog</a></li>
-                <li><a href="/people/">People</a></li>
-                <li><a href="/related-projects/">Related Projects</a></li>
-                <li><a href="/poweredby/">Powered By</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/how-to-contribute/">How To Contribute</a></li>
-                <li><a href="/release-process/">Release Process</a></li>
-              </ul>
-            </li>
-          </ul>
-          <ul class="navbar-nav nav navbar-right">
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://www.apache.org">Apache Homepage</a></li>
-                <li><a href="https://www.apache.org/licenses/LICENSE-2.0">License</a></li>
-                <li><a href="https://www.apache.org/foundation/sponsorship">Sponsorship</i></a></li>
-                <li><a href="https://www.apache.org/security">Security</a></li>
-                <li><a href="https://www.apache.org/foundation/thanks">Thanks</a></li>
-                <li><a href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a></li>
-              </ul>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="container">
-      <div class="row">
-          <div class="col-sm-12">
-            <!DOCTYPE html>
+<html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/">
-<meta http-equiv="refresh" content="0; url=/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/">
+<link rel="canonical" href="http://fluo.io/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/">
+<meta http-equiv="refresh" content="0; url=http://fluo.io/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/">
 <h1>Redirecting\u2026</h1>
-<a href="/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/">Click here if you are not redirected.</a>
-<script>location="/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/"</script>
-
-          </div>
-      </div>
-      <hr>
-      <div class="row footer">
-        <div class="col-sm-12 text-center">
-          <div class="center-block">
-          <a href="https://apache.org"><img src="/resources/feather.png" alt="Apache"></a>
-          Copyright &copy; 2016 The Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache&nbsp;License,&nbsp;Version&nbsp;2.0</a>
-          </div>
-        </div>
-      </div>
-    </div>
-    <script src="/javascripts/jquery.min.js"></script>
-    <script src="/javascripts/bootstrap.min.js"></script>
-    <!-- Place your <script> tags here. -->
-
-<!-- Google Analytics -->
-<script>
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-</script>
-
-  </body>
+<a href="http://fluo.io/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/">Click here if you are not redirected.</a>
+<script>location="http://fluo.io/blog/2015/06/09/fluo-1.0.0-beta-1-is-released/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/fluo-1.0.0-beta-2-is-released/index.html
----------------------------------------------------------------------
diff --git a/fluo-1.0.0-beta-2-is-released/index.html b/fluo-1.0.0-beta-2-is-released/index.html
index 5e4eb63..1722a95 100644
--- a/fluo-1.0.0-beta-2-is-released/index.html
+++ b/fluo-1.0.0-beta-2-is-released/index.html
@@ -1,111 +1,10 @@
 <!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <link rel="stylesheet" href="/stylesheets/fluo.css">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:700,400">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather">
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
-    <link rel="canonical" href="http://fluo.io/fluo-1.0.0-beta-2-is-released/">
-    <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title> Apache Fluo </title>
-    <!--[if lt IE 9]>
-      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
-      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
-    <![endif]-->
-  </head>
-  <body>
-    <div id="fluo-nav" class="navbar navbar-default navbar-static-top">
-      <div class="container">
-        <div class="navbar-header">
-          <div class="navbar-toggle-wrapper visible-xs">
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".js-navbar-collapse">
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-            </button>
-          </div>
-          <a href="/" class="navbar-brand"><img src="/resources/fluo-logo.png" alt="Apache Fluo"></a>
-        </div>
-        <div class="collapse navbar-collapse js-navbar-collapse" style="margin-top: 20px">
-          <ul class="navbar-nav nav">
-            <li><a href="/docs/">Documentation</a></li>
-            <li><a href="/download/">Download</a></li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Community<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/getinvolved/">Get Involved</a></li>
-                <li><a href="/blog/">Blog</a></li>
-                <li><a href="/people/">People</a></li>
-                <li><a href="/related-projects/">Related Projects</a></li>
-                <li><a href="/poweredby/">Powered By</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/how-to-contribute/">How To Contribute</a></li>
-                <li><a href="/release-process/">Release Process</a></li>
-              </ul>
-            </li>
-          </ul>
-          <ul class="navbar-nav nav navbar-right">
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://www.apache.org">Apache Homepage</a></li>
-                <li><a href="https://www.apache.org/licenses/LICENSE-2.0">License</a></li>
-                <li><a href="https://www.apache.org/foundation/sponsorship">Sponsorship</i></a></li>
-                <li><a href="https://www.apache.org/security">Security</a></li>
-                <li><a href="https://www.apache.org/foundation/thanks">Thanks</a></li>
-                <li><a href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a></li>
-              </ul>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="container">
-      <div class="row">
-          <div class="col-sm-12">
-            <!DOCTYPE html>
+<html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/">
-<meta http-equiv="refresh" content="0; url=/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/">
+<link rel="canonical" href="http://fluo.io/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/">
+<meta http-equiv="refresh" content="0; url=http://fluo.io/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/">
 <h1>Redirecting\u2026</h1>
-<a href="/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/">Click here if you are not redirected.</a>
-<script>location="/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/"</script>
-
-          </div>
-      </div>
-      <hr>
-      <div class="row footer">
-        <div class="col-sm-12 text-center">
-          <div class="center-block">
-          <a href="https://apache.org"><img src="/resources/feather.png" alt="Apache"></a>
-          Copyright &copy; 2016 The Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache&nbsp;License,&nbsp;Version&nbsp;2.0</a>
-          </div>
-        </div>
-      </div>
-    </div>
-    <script src="/javascripts/jquery.min.js"></script>
-    <script src="/javascripts/bootstrap.min.js"></script>
-    <!-- Place your <script> tags here. -->
-
-<!-- Google Analytics -->
-<script>
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-</script>
-
-  </body>
+<a href="http://fluo.io/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/">Click here if you are not redirected.</a>
+<script>location="http://fluo.io/blog/2016/01/12/fluo-1.0.0-beta-2-is-released/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/fluo-talk-at-accumulo-summit/index.html
----------------------------------------------------------------------
diff --git a/fluo-talk-at-accumulo-summit/index.html b/fluo-talk-at-accumulo-summit/index.html
index 6b58192..1793b4a 100644
--- a/fluo-talk-at-accumulo-summit/index.html
+++ b/fluo-talk-at-accumulo-summit/index.html
@@ -1,111 +1,10 @@
 <!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <link rel="stylesheet" href="/stylesheets/fluo.css">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:700,400">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather">
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
-    <link rel="canonical" href="http://fluo.io/fluo-talk-at-accumulo-summit/">
-    <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title> Apache Fluo </title>
-    <!--[if lt IE 9]>
-      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
-      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
-    <![endif]-->
-  </head>
-  <body>
-    <div id="fluo-nav" class="navbar navbar-default navbar-static-top">
-      <div class="container">
-        <div class="navbar-header">
-          <div class="navbar-toggle-wrapper visible-xs">
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".js-navbar-collapse">
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-            </button>
-          </div>
-          <a href="/" class="navbar-brand"><img src="/resources/fluo-logo.png" alt="Apache Fluo"></a>
-        </div>
-        <div class="collapse navbar-collapse js-navbar-collapse" style="margin-top: 20px">
-          <ul class="navbar-nav nav">
-            <li><a href="/docs/">Documentation</a></li>
-            <li><a href="/download/">Download</a></li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Community<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/getinvolved/">Get Involved</a></li>
-                <li><a href="/blog/">Blog</a></li>
-                <li><a href="/people/">People</a></li>
-                <li><a href="/related-projects/">Related Projects</a></li>
-                <li><a href="/poweredby/">Powered By</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/how-to-contribute/">How To Contribute</a></li>
-                <li><a href="/release-process/">Release Process</a></li>
-              </ul>
-            </li>
-          </ul>
-          <ul class="navbar-nav nav navbar-right">
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://www.apache.org">Apache Homepage</a></li>
-                <li><a href="https://www.apache.org/licenses/LICENSE-2.0">License</a></li>
-                <li><a href="https://www.apache.org/foundation/sponsorship">Sponsorship</i></a></li>
-                <li><a href="https://www.apache.org/security">Security</a></li>
-                <li><a href="https://www.apache.org/foundation/thanks">Thanks</a></li>
-                <li><a href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a></li>
-              </ul>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="container">
-      <div class="row">
-          <div class="col-sm-12">
-            <!DOCTYPE html>
+<html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="/blog/2015/05/22/fluo-talk-at-accumulo-summit/">
-<meta http-equiv="refresh" content="0; url=/blog/2015/05/22/fluo-talk-at-accumulo-summit/">
+<link rel="canonical" href="http://fluo.io/blog/2015/05/22/fluo-talk-at-accumulo-summit/">
+<meta http-equiv="refresh" content="0; url=http://fluo.io/blog/2015/05/22/fluo-talk-at-accumulo-summit/">
 <h1>Redirecting\u2026</h1>
-<a href="/blog/2015/05/22/fluo-talk-at-accumulo-summit/">Click here if you are not redirected.</a>
-<script>location="/blog/2015/05/22/fluo-talk-at-accumulo-summit/"</script>
-
-          </div>
-      </div>
-      <hr>
-      <div class="row footer">
-        <div class="col-sm-12 text-center">
-          <div class="center-block">
-          <a href="https://apache.org"><img src="/resources/feather.png" alt="Apache"></a>
-          Copyright &copy; 2016 The Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache&nbsp;License,&nbsp;Version&nbsp;2.0</a>
-          </div>
-        </div>
-      </div>
-    </div>
-    <script src="/javascripts/jquery.min.js"></script>
-    <script src="/javascripts/bootstrap.min.js"></script>
-    <!-- Place your <script> tags here. -->
-
-<!-- Google Analytics -->
-<script>
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-</script>
-
-  </body>
+<a href="http://fluo.io/blog/2015/05/22/fluo-talk-at-accumulo-summit/">Click here if you are not redirected.</a>
+<script>location="http://fluo.io/blog/2015/05/22/fluo-talk-at-accumulo-summit/"</script>
 </html>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/getinvolved/index.html
----------------------------------------------------------------------
diff --git a/getinvolved/index.html b/getinvolved/index.html
index 2856147..4e7f8cd 100644
--- a/getinvolved/index.html
+++ b/getinvolved/index.html
@@ -77,7 +77,7 @@
   </header>
 
   <article id="page-content">
-    <p>Below are some ways that you can get involved in Fluo:</p>
+    <p>Below are some ways that you can get involved with Apache Fluo:</p>
 
 <h3 id="mailing-list">Mailing list</h3>
 
@@ -85,7 +85,7 @@
 
 <h3 id="irc">IRC</h3>
 
-<p>Drop by and chat about Fluo at <a href="irc://chat.freenode.net/fluo">#fluo</a> on <a href="https://freenode.net/">freenode</a>.</p>
+<p>Drop by and chat about Apache Fluo at <a href="irc://chat.freenode.net/fluo">#fluo</a> on <a href="https://freenode.net/">freenode</a>.</p>
 
 <h3 id="user-feedback">User feedback</h3>
 
@@ -98,7 +98,7 @@
 
 <h3 id="contributions">Contributions</h3>
 
-<p>Contributions are welcome to all Fluo projects! All projects follow a <a href="http://www.apache.org/foundation/glossary.html#ReviewThenCommit">review-then-commit</a> process. If you are interested in contributing, read our <a href="/how-to-contribute/">How To Contribute</a> page.</p>
+<p>Contributions are welcome to all Apache Fluo projects! All projects follow a <a href="http://www.apache.org/foundation/glossary.html#ReviewThenCommit">review-then-commit</a> process. If you are interested in contributing, read our <a href="/how-to-contribute/">How To Contribute</a> page.</p>
 
 
   </article>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/how-to-contribute/index.html
----------------------------------------------------------------------
diff --git a/how-to-contribute/index.html b/how-to-contribute/index.html
index 5fea7be..1697dc5 100644
--- a/how-to-contribute/index.html
+++ b/how-to-contribute/index.html
@@ -77,7 +77,7 @@
   </header>
 
   <article id="page-content">
-    <p>Contributions are welcome to all Fluo repositories (<a href="https://github.com/apache/fluo">Fluo</a>, <a href="https://github.com/apache/fluo-recipes">Fluo Recipes</a>) and the <a href="https://github.com/apache/incubator-fluo-website">Fluo project website</a>.  All repositories follow a <a href="http://www.apache.org/foundation/glossary.html#ReviewThenCommit">review-then-commit</a> process.
+    <p>Contributions are welcome to all Apache Fluo repositories (<a href="https://github.com/apache/fluo">Fluo</a>, <a href="https://github.com/apache/fluo-recipes">Fluo Recipes</a>) and the <a href="https://github.com/apache/incubator-fluo-website">Fluo project website</a>.  All repositories follow a <a href="http://www.apache.org/foundation/glossary.html#ReviewThenCommit">review-then-commit</a> process.
 This means that all contributions must pass any integration tests and be reviewed before being committed. Code reviews are done by commenting on a GitHub pull request.</p>
 
 <h3 id="contribution-workflow">Contribution workflow</h3>
@@ -88,7 +88,7 @@ This means that all contributions must pass any integration tests and be reviewe
   <li>
     <p>Create a branch in the local clone of your fork. An example branch name is <code class="highlighter-rouge">fluo-301</code> which describes the repo and issue number.</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code>git checkout -b fluo-301
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code>git checkout -b fluo-301
 </code></pre>
     </div>
   </li>
@@ -96,7 +96,7 @@ This means that all contributions must pass any integration tests and be reviewe
   <li>
     <p>If your branch becomes stale, rebase it to master.</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code><span class="c"># checkout master</span>
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code><span class="c"># checkout master</span>
 git checkout master
 <span class="c"># pull latest commits from upstream</span>
 git pull upstream master
@@ -114,7 +114,7 @@ git push -f origin fluo-301
   <li>
     <p>Push your branch <code class="highlighter-rouge">fluo-301</code> to your fork</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code><span class="c"># add -f to command below if you squashed commits</span>
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code><span class="c"># add -f to command below if you squashed commits</span>
 <span class="c"># and previously pushed branch to your fork</span>
 git push origin fluo-301
 </code></pre>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/poweredby/index.html
----------------------------------------------------------------------
diff --git a/poweredby/index.html b/poweredby/index.html
index 506ac29..fa46e42 100644
--- a/poweredby/index.html
+++ b/poweredby/index.html
@@ -77,7 +77,7 @@
   </header>
 
   <article id="page-content">
-    <p>Fluo is powered by:</p>
+    <p>Apache Fluo is powered by:</p>
 
 <ul>
   <li><a href="https://accumulo.apache.org/">Apache Accumulo</a></li>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-notes/1.0.0-alpha-1/index.html
----------------------------------------------------------------------
diff --git a/release-notes/1.0.0-alpha-1/index.html b/release-notes/1.0.0-alpha-1/index.html
index 05df6a2..c1af007 100644
--- a/release-notes/1.0.0-alpha-1/index.html
+++ b/release-notes/1.0.0-alpha-1/index.html
@@ -74,6 +74,11 @@
   <h2>Fluo 1.0.0-alpha-1 Release Notes</h2>
   <p class="text-muted">02 Oct 2014</p>
 </div>
+
+
+  <div class="alert alert-danger" role="alert">These release notes are for a release of Fluo that made before Apache incubation.</div>
+
+
 <div class="post-content">
   <p>Fluo 1.0.0-alpha-1 is the first official release of Fluo. It contains 83 initial tickets marked for this first milestone. The roadmap for this release included a working initial implementation, completing an initial pass at the client API (which will be finalized in 1.0.0), and writing a stress test application.  This release has not been tested much at scale.  More scale and peformance testing will be done for the beta release.</p>
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-notes/1.0.0-beta-1/index.html
----------------------------------------------------------------------
diff --git a/release-notes/1.0.0-beta-1/index.html b/release-notes/1.0.0-beta-1/index.html
index b39c561..02e2d21 100644
--- a/release-notes/1.0.0-beta-1/index.html
+++ b/release-notes/1.0.0-beta-1/index.html
@@ -74,6 +74,11 @@
   <h2>Fluo 1.0.0-beta-1 Release Notes</h2>
   <p class="text-muted">09 Jun 2015</p>
 </div>
+
+
+  <div class="alert alert-danger" role="alert">These release notes are for a release of Fluo that made before Apache incubation.</div>
+
+
 <div class="post-content">
   <p>Fluo 1.0.0-beta-1 is the second official release of Fluo.  The release closed <a href="https://github.com/fluo-io/fluo/issues?q=milestone%3A1.0.0-beta-1+is%3Aclosed">133 tickets</a>.  This release is not recommended for production use.</p>
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-notes/1.0.0-beta-2/index.html
----------------------------------------------------------------------
diff --git a/release-notes/1.0.0-beta-2/index.html b/release-notes/1.0.0-beta-2/index.html
index e36220c..241442c 100644
--- a/release-notes/1.0.0-beta-2/index.html
+++ b/release-notes/1.0.0-beta-2/index.html
@@ -74,6 +74,11 @@
   <h2>Fluo 1.0.0-beta-2 Release Notes</h2>
   <p class="text-muted">12 Jan 2016</p>
 </div>
+
+
+  <div class="alert alert-danger" role="alert">These release notes are for a release of Fluo that made before Apache incubation.</div>
+
+
 <div class="post-content">
   <p>Fluo 1.0.0-beta-2 is the third official release of Fluo.  This release closed
 <a href="https://github.com/fluo-io/fluo/issues?q=milestone%3A1.0.0-beta-2+is%3Aclosed">48 tickets</a>.  There is no upgrade path from 1.0.0-beta-1 to

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-notes/index.html
----------------------------------------------------------------------
diff --git a/release-notes/index.html b/release-notes/index.html
index 4b5ec00..56f06a5 100644
--- a/release-notes/index.html
+++ b/release-notes/index.html
@@ -10,7 +10,7 @@
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
     <link rel="canonical" href="http://fluo.io/release-notes/">
     <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title>Fluo Release Notes Archive | Apache Fluo</title>
+    <title>Release Notes Archive | Apache Fluo</title>
     <!--[if lt IE 9]>
       <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
       <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
@@ -73,11 +73,13 @@
             <div class="page">
 
   <header class="post-header">
-    <h2 class="post-title">Fluo Release Notes Archive</h2>
+    <h2 class="post-title">Release Notes Archive</h2>
   </header>
 
   <article id="page-content">
-    <p>Below are the release notes for all Fluo releases:</p>
+    <p>Apache Fluo release notes:</p>
+
+<p>Fluo release notes before Apache incubation:</p>
 
 <ul>
   <li>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-process/index.html
----------------------------------------------------------------------
diff --git a/release-process/index.html b/release-process/index.html
index 3d2604e..e5e8a3e 100644
--- a/release-process/index.html
+++ b/release-process/index.html
@@ -77,11 +77,13 @@
   </header>
 
   <article id="page-content">
-    <h3 id="initial-setup">Initial Setup</h3>
+    <div class="alert alert-danger" role="alert">Please note - These instructions are for releasing Fluo before it became an ASF project.  After the first Apache release, they will be updated to reflect how to release Apache Fluo on ASF infrastructure</div>
+
+<h3 id="initial-setup">Initial Setup</h3>
 
 <p>Before you can release Fluo or Fluo Recipes, you will need to set up a GPG client, create a <a href="https://issues.sonatype.org/">sonatype account</a>, and have another Fluo committer request to give you deployment access for the Fluo project on sonatype.  Once you have a sonatype account, you should add your account details to your Maven settings.xml in the following format:</p>
 
-<div class="highlighter-rouge"><pre class="highlight"><code><span class="nt">&lt;servers&gt;</span>
+<div class="language-xml highlighter-rouge"><pre class="highlight"><code><span class="nt">&lt;servers&gt;</span>
   <span class="nt">&lt;server&gt;</span>
     <span class="nt">&lt;id&gt;</span>sonatype-nexus-staging<span class="nt">&lt;/id&gt;</span>
     <span class="nt">&lt;username&gt;</span>USER<span class="nt">&lt;/username&gt;</span>
@@ -108,7 +110,7 @@
   <li>
     <p>Start a gpg-agent to cache your gpg key to avoid entering your passphrase multiple times.</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code>gpg-agent --daemon --use-standard-socket
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code>gpg-agent --daemon --use-standard-socket
 </code></pre>
     </div>
   </li>
@@ -138,7 +140,7 @@
   <li>
     <p>Create an RC tag (i.e <code class="highlighter-rouge">&lt;version#&gt;-&lt;rc#&gt;</code>) from the tag created by the release plugin (a branch could work instead of a tag but the point is to remove the release tag because the codebase has not been released yet). This new branch/tag should have the non-snapshot version in the poms.  The RC tag can be pushed to a fork for others to view.</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code><span class="c"># Creates 1.0.0-beta-1-RC1 from 1.0.0-beta-1 </span>
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code><span class="c"># Creates 1.0.0-beta-1-RC1 from 1.0.0-beta-1 </span>
 git tag 1.0.0-beta-1-RC1 1.0.0-beta-1
 <span class="c"># Delete 1.0.0-beta-1</span>
 git tag -d 1.0.0-beta-1
@@ -159,7 +161,7 @@ git push origin 1.0.0-beta-1-RC1
   <li>
     <p>Merge your RC branch into master and push those commits upstream.  Afterwards, you can delete your RC branch.</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code>git checkout master
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code>git checkout master
 git merge 1.0.0-beta-RC
 git push upstream master
 git branch -d 1.0-0-beta-RC
@@ -172,7 +174,7 @@ git branch -d 1.0-0-beta-RC
   <li>
     <p>Create a signed tag for the release from the chosen RC tag and push to upstream repo:</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code><span class="c"># Create signed tag from RC2 tag.</span>
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code><span class="c"># Create signed tag from RC2 tag.</span>
 <span class="c"># You may need to use -u &lt;key-id&gt; to specify GPG key</span>
 git tag -s 1.0.0-beta-1 1.0.0-beta-1-RC2
 <span class="c"># Push signed tag to upstream repo</span>
@@ -186,7 +188,7 @@ git push upstream 1.0.0-beta-1
   <li>
     <p>Remove all RC tags</p>
 
-    <div class="highlighter-rouge"><pre class="highlight"><code><span class="c"># Remove tag locally</span>
+    <div class="language-shell highlighter-rouge"><pre class="highlight"><code><span class="c"># Remove tag locally</span>
 git tag -d 1.0.0-beta-1-RC1
 <span class="c"># Remove tag on fork</span>
 git push --delete origin 1.0.0-beta-1-RC1

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-summaries/1.0.0-alpha-1/index.html
----------------------------------------------------------------------
diff --git a/release-summaries/1.0.0-alpha-1/index.html b/release-summaries/1.0.0-alpha-1/index.html
index 295a855..dd66d92 100644
--- a/release-summaries/1.0.0-alpha-1/index.html
+++ b/release-summaries/1.0.0-alpha-1/index.html
@@ -74,6 +74,11 @@
   <h2>Fluo 1.0.0-alpha-1 Release Summary</h1>
   <p class="text-muted">02 Oct 2014</p>
 </div>
+
+
+  <div class="alert alert-danger" role="alert">This release summary is for a release of Fluo that made before Apache incubation.</div>
+
+
 <div class="post-content">
   <p>The <a href="https://github.com/fluo-io/fluo/releases/tag/1.0.0-alpha-1">1.0.0-alpha-1</a> release is the first release of Fluo.  It is not ready for production use.  See the <a href="/release-notes/1.0.0-alpha-1/">release notes</a> for 
 significant features. <a href="/apidocs/fluo/1.0.0-alpha-1/">Javadocs</a> are also available.</p>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-summaries/1.0.0-beta-1/index.html
----------------------------------------------------------------------
diff --git a/release-summaries/1.0.0-beta-1/index.html b/release-summaries/1.0.0-beta-1/index.html
index b577572..5689b2d 100644
--- a/release-summaries/1.0.0-beta-1/index.html
+++ b/release-summaries/1.0.0-beta-1/index.html
@@ -74,6 +74,11 @@
   <h2>Fluo 1.0.0-beta-1 Release Summary</h1>
   <p class="text-muted">09 Jun 2015</p>
 </div>
+
+
+  <div class="alert alert-danger" role="alert">This release summary is for a release of Fluo that made before Apache incubation.</div>
+
+
 <div class="post-content">
   <p>The <a href="https://github.com/fluo-io/fluo/releases/tag/1.0.0-beta-1">1.0.0-beta-1</a> release is the second release of Fluo.  It contains the following significant improvements:</p>
 

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-summaries/1.0.0-beta-2/index.html
----------------------------------------------------------------------
diff --git a/release-summaries/1.0.0-beta-2/index.html b/release-summaries/1.0.0-beta-2/index.html
index 1ed4dd6..78e6f44 100644
--- a/release-summaries/1.0.0-beta-2/index.html
+++ b/release-summaries/1.0.0-beta-2/index.html
@@ -74,6 +74,11 @@
   <h2>Fluo 1.0.0-beta-2 Release Summary</h1>
   <p class="text-muted">12 Jan 2016</p>
 </div>
+
+
+  <div class="alert alert-danger" role="alert">This release summary is for a release of Fluo that made before Apache incubation.</div>
+
+
 <div class="post-content">
   <p>The <a href="https://github.com/fluo-io/fluo/releases/tag/1.0.0-beta-2">1.0.0-beta-2</a> release is the third release of Fluo and likely the final
 release before 1.0.0.</p>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/release-summaries/index.html
----------------------------------------------------------------------
diff --git a/release-summaries/index.html b/release-summaries/index.html
index bf51cda..8bf60a1 100644
--- a/release-summaries/index.html
+++ b/release-summaries/index.html
@@ -10,7 +10,7 @@
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
     <link rel="canonical" href="http://fluo.io/release-summaries/">
     <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title>Fluo Release Summaries Archive | Apache Fluo</title>
+    <title>Release Summaries Archive | Apache Fluo</title>
     <!--[if lt IE 9]>
       <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
       <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
@@ -73,11 +73,13 @@
             <div class="page">
 
   <header class="post-header">
-    <h2 class="post-title">Fluo Release Summaries Archive</h2>
+    <h2 class="post-title">Release Summaries Archive</h2>
   </header>
 
   <article id="page-content">
-    <p>Below are the release summaries for all Fluo releases:</p>
+    <p>Apache Fluo release summaries:</p>
+
+<p>Fluo release summaries before Apache incubation:</p>
 
 <ul>
   <li>

http://git-wip-us.apache.org/repos/asf/incubator-fluo-website/blob/b532c453/stress-test-long-run/index.html
----------------------------------------------------------------------
diff --git a/stress-test-long-run/index.html b/stress-test-long-run/index.html
index 15a92ab..093ad7d 100644
--- a/stress-test-long-run/index.html
+++ b/stress-test-long-run/index.html
@@ -1,111 +1,10 @@
 <!DOCTYPE html>
-<html>
-  <head>
-    <meta charset="utf-8">
-    <meta http-equiv="X-UA-Compatible" content="IE=edge">
-    <meta name="viewport" content="width=device-width, initial-scale=1">
-    <link rel="stylesheet" href="/stylesheets/fluo.css">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Montserrat:700,400">
-    <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Merriweather">
-    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" >
-    <link rel="canonical" href="http://fluo.io/stress-test-long-run/">
-    <link rel="icon" type="image/png" href="/resources/favicon.png">
-    <title> Apache Fluo </title>
-    <!--[if lt IE 9]>
-      <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
-      <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
-    <![endif]-->
-  </head>
-  <body>
-    <div id="fluo-nav" class="navbar navbar-default navbar-static-top">
-      <div class="container">
-        <div class="navbar-header">
-          <div class="navbar-toggle-wrapper visible-xs">
-            <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".js-navbar-collapse">
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-              <span class="icon-bar"></span>
-            </button>
-          </div>
-          <a href="/" class="navbar-brand"><img src="/resources/fluo-logo.png" alt="Apache Fluo"></a>
-        </div>
-        <div class="collapse navbar-collapse js-navbar-collapse" style="margin-top: 20px">
-          <ul class="navbar-nav nav">
-            <li><a href="/docs/">Documentation</a></li>
-            <li><a href="/download/">Download</a></li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Community<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/getinvolved/">Get Involved</a></li>
-                <li><a href="/blog/">Blog</a></li>
-                <li><a href="/people/">People</a></li>
-                <li><a href="/related-projects/">Related Projects</a></li>
-                <li><a href="/poweredby/">Powered By</a></li>
-              </ul>
-            </li>
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Contributing<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="/how-to-contribute/">How To Contribute</a></li>
-                <li><a href="/release-process/">Release Process</a></li>
-              </ul>
-            </li>
-          </ul>
-          <ul class="navbar-nav nav navbar-right">
-            <li class="dropdown">
-              <a class="dropdown-toggle" data-toggle="dropdown" href="#">Apache Software Foundation<span class="caret"></span></a>
-              <ul class="dropdown-menu">
-                <li><a href="https://www.apache.org">Apache Homepage</a></li>
-                <li><a href="https://www.apache.org/licenses/LICENSE-2.0">License</a></li>
-                <li><a href="https://www.apache.org/foundation/sponsorship">Sponsorship</i></a></li>
-                <li><a href="https://www.apache.org/security">Security</a></li>
-                <li><a href="https://www.apache.org/foundation/thanks">Thanks</a></li>
-                <li><a href="https://www.apache.org/foundation/policies/conduct">Code of Conduct</a></li>
-              </ul>
-            </li>
-          </ul>
-        </div>
-      </div>
-    </div>
-    <div class="container">
-      <div class="row">
-          <div class="col-sm-12">
-            <!DOCTYPE html>
+<html lang="en-US">
 <meta charset="utf-8">
 <title>Redirecting\u2026</title>
-<link rel="canonical" href="/blog/2014/12/30/stress-test-long-run/">
-<meta http-equiv="refresh" content="0; url=/blog/2014/12/30/stress-test-long-run/">
+<link rel="canonical" href="http://fluo.io/blog/2014/12/30/stress-test-long-run/">
+<meta http-equiv="refresh" content="0; url=http://fluo.io/blog/2014/12/30/stress-test-long-run/">
 <h1>Redirecting\u2026</h1>
-<a href="/blog/2014/12/30/stress-test-long-run/">Click here if you are not redirected.</a>
-<script>location="/blog/2014/12/30/stress-test-long-run/"</script>
-
-          </div>
-      </div>
-      <hr>
-      <div class="row footer">
-        <div class="col-sm-12 text-center">
-          <div class="center-block">
-          <a href="https://apache.org"><img src="/resources/feather.png" alt="Apache"></a>
-          Copyright &copy; 2016 The Apache Software Foundation. Licensed under the <a href="https://www.apache.org/licenses/LICENSE-2.0">Apache&nbsp;License,&nbsp;Version&nbsp;2.0</a>
-          </div>
-        </div>
-      </div>
-    </div>
-    <script src="/javascripts/jquery.min.js"></script>
-    <script src="/javascripts/bootstrap.min.js"></script>
-    <!-- Place your <script> tags here. -->
-
-<!-- Google Analytics -->
-<script>
-  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
-  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
-  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
-  })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
-
-  ga('create', 'UA-55360307-1', 'auto');
-  ga('send', 'pageview');
-
-</script>
-
-  </body>
+<a href="http://fluo.io/blog/2014/12/30/stress-test-long-run/">Click here if you are not redirected.</a>
+<script>location="http://fluo.io/blog/2014/12/30/stress-test-long-run/"</script>
 </html>