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 2018/03/15 17:17:52 UTC

[fluo-website] branch gh-pages updated: Fixed broken links (#151)

This is an automated email from the ASF dual-hosted git repository.

mwalch pushed a commit to branch gh-pages
in repository https://gitbox.apache.org/repos/asf/fluo-website.git


The following commit(s) were added to refs/heads/gh-pages by this push:
     new 17c2de2  Fixed broken links (#151)
17c2de2 is described below

commit 17c2de2cca8a51334ca91e62b26f8e09f3bbb3ba
Author: Mike Walch <mw...@apache.org>
AuthorDate: Thu Mar 15 13:17:50 2018 -0400

    Fixed broken links (#151)
---
 _layouts/recipes-doc.html            | 2 +-
 _posts/blog/2016-12-22-spark-load.md | 2 +-
 _recipes-1-2/recipes/export-queue.md | 2 +-
 index.html                           | 4 ++--
 tour/architecture.md                 | 2 +-
 tour/tx-logging.md                   | 4 +---
 6 files changed, 7 insertions(+), 9 deletions(-)

diff --git a/_layouts/recipes-doc.html b/_layouts/recipes-doc.html
index 752a30d..3205bf0 100644
--- a/_layouts/recipes-doc.html
+++ b/_layouts/recipes-doc.html
@@ -4,7 +4,7 @@ layout: default
 <div class="fluo-doc">
 
   {% if page.version != site.latest_recipes_release %}
-  <div class="alert alert-danger" role="alert">These docs are for Fluo Recipes {{ page.version }} which is an old version! Check out the <a href="{{ site.baseurl }}/docs/fluo-recipes/{{ site.latest_recipes_release }}">latest docs</a>!</div>
+  <div class="alert alert-danger" role="alert">These docs are for Fluo Recipes {{ page.version }} which is an old version! Check out the <a href="{{ site.baseurl }}/docs/fluo-recipes/{{ site.latest_recipes_minor }}">latest docs</a>!</div>
   {% endif %}
 
   {% if page.version == '1.0.0-beta-2' or page.version == '1.0.0-beta-1' or page.version == '1.0.0-alpha-1' %}
diff --git a/_posts/blog/2016-12-22-spark-load.md b/_posts/blog/2016-12-22-spark-load.md
index a1e7f75..2f083d9 100644
--- a/_posts/blog/2016-12-22-spark-load.md
+++ b/_posts/blog/2016-12-22-spark-load.md
@@ -230,7 +230,7 @@ implications of early vs late binding is something to consider.
 [LoaderExecutor]: {{ site.fluo_api_static }}/{{ site.latest_fluo_release }}/org/apache/fluo/api/client/LoaderExecutor.html
 [bi2fluo]:{{ site.fluo_recipes_spark_static }}/{{ site.latest_recipes_release }}/org/apache/fluo/recipes/spark/FluoSparkHelper.html#bulkImportRcvToFluo-org.apache.spark.api.java.JavaPairRDD-org.apache.fluo.recipes.spark.FluoSparkHelper.BulkImportOptions-
 [cfminit]:{{ site.fluo_recipes_core_static }}/{{ site.latest_recipes_release }}/org/apache/fluo/recipes/core/map/CollisionFreeMap.html#getInitializer-java.lang.String-int-org.apache.fluo.recipes.core.serialization.SimpleSerializer-
-[cfm]: /docs/fluo-recipes/{{ site.latest_recipes_release }}/cfm/
+[cfm]: /docs/fluo-recipes/1.0.0-incubating/cfm/
 [fluo-813]: https://github.com/apache/incubator-fluo/issues/813
 [AccumuloOutputFormat]: http://accumulo.apache.org/1.8/apidocs/org/apache/accumulo/core/client/mapred/AccumuloOutputFormat.html
 [Mutation]: http://accumulo.apache.org/1.8/apidocs/org/apache/accumulo/core/data/Mutation.html
diff --git a/_recipes-1-2/recipes/export-queue.md b/_recipes-1-2/recipes/export-queue.md
index 7f0a33c..257ba1f 100644
--- a/_recipes-1-2/recipes/export-queue.md
+++ b/_recipes-1-2/recipes/export-queue.md
@@ -299,6 +299,6 @@ example of write skew mentioned in the Percolator paper.
 
 [Exporter]: {{ page.javadoc_core }}/org/apache/fluo/recipes/core/export/function/Exporter.html
 [serial]: https://en.wikipedia.org/wiki/Serializability
-[aeq]: {{ page.docs_base }}/recipes/accumulo-export-queue/
+[aeq]: {{ page.docs_base }}/recipes/accumulo-export/
 [transient]: {{ page.docs_base }}/tools/transient/
 [table-opt]: {{ page.docs_base }}/tools/table-optimization/
diff --git a/index.html b/index.html
index 92b7e45..b284bbe 100644
--- a/index.html
+++ b/index.html
@@ -49,7 +49,7 @@ html_title_override: true
   </div>
   <div class="col-sm-4">
     <h4>Core API</h4>
-    <p>The core <a href="{{ site.baseurl }}/docs/fluo/{{ site.latest_fluo_release }}/">Fluo API</a> supports simple, cross-node transactional updates using get/set methods.</p>
+    <p>The core <a href="{{ site.baseurl }}/docs/fluo/{{ site.latest_fluo_minor }}/">Fluo API</a> supports simple, cross-node transactional updates using get/set methods.</p>
   </div>
 </div>
 
@@ -64,6 +64,6 @@ html_title_override: true
   </div>
   <div class="col-sm-4">
     <h4>Recipes API</h4>
-    <p>The <a href="{{ site.baseurl }}/docs/fluo-recipes/{{ site.latest_recipes_release }}/">Fluo Recipes API</a> builds on the core API to offer complex transactional updates.</p>
+    <p>The <a href="{{ site.baseurl }}/docs/fluo-recipes/{{ site.latest_recipes_minor }}/">Fluo Recipes API</a> builds on the core API to offer complex transactional updates.</p>
   </div>
 </div>
diff --git a/tour/architecture.md b/tour/architecture.md
index 48ed123..b5a54e2 100644
--- a/tour/architecture.md
+++ b/tour/architecture.md
@@ -4,4 +4,4 @@ title: Architecture
 
 An [overview] of the Fluo Architecture can be found in Fluo's documentation.
 
-[overview]: /docs/fluo/{{ site.latest_fluo_release }}/architecture/
+[overview]: /docs/fluo/{{ site.latest_fluo_minor }}/getting-started/design
diff --git a/tour/tx-logging.md b/tour/tx-logging.md
index a16b548..c6be2f9 100644
--- a/tour/tx-logging.md
+++ b/tour/tx-logging.md
@@ -39,6 +39,4 @@ TRACE: txid: 8 thread : 10 time: ... #ret: 1 #set: 0 #collisions: 0 waitTime: 0
 ```
 
 More information about configuring logging is available in [the logging
-documentation](/docs/fluo/{{ site.latest_fluo_release }}/applications/#debugging-applications).
-
-
+documentation](/docs/fluo/{{ site.latest_fluo_minor }}/administration/manage-applications#debugging-applications).

-- 
To stop receiving notification emails like this one, please contact
mwalch@apache.org.