You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2016/06/01 11:32:43 UTC

svn commit: r1746438 - in /incubator/tinkerpop/site: gremlin.html index.html policy.html providers.html

Author: spmallette
Date: Wed Jun  1 11:32:43 2016
New Revision: 1746438

URL: http://svn.apache.org/viewvc?rev=1746438&view=rev
Log:
Changed versioned links to point at /current for TinkerPop pages.

Modified:
    incubator/tinkerpop/site/gremlin.html
    incubator/tinkerpop/site/index.html
    incubator/tinkerpop/site/policy.html
    incubator/tinkerpop/site/providers.html

Modified: incubator/tinkerpop/site/gremlin.html
URL: http://svn.apache.org/viewvc/incubator/tinkerpop/site/gremlin.html?rev=1746438&r1=1746437&r2=1746438&view=diff
==============================================================================
--- incubator/tinkerpop/site/gremlin.html (original)
+++ incubator/tinkerpop/site/gremlin.html Wed Jun  1 11:32:43 2016
@@ -77,10 +77,10 @@
                   </a>
                   <ul class="dropdown-menu">
                      <li class="dropdown-header">Latest: 3.2.0-incubating (8-Apr-2016)</li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference">TinkerPop 3.2.0-incubating</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/upgrade">Upgrade Information</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/core/">Core Javadoc API</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/full/">Full Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/reference">TinkerPop 3.2.0-incubating</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/upgrade">Upgrade Information</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/core/">Core Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/full/">Full Javadoc API</a></li>
                      <li role="separator" class="divider"></li>
                      <li class="dropdown-header">Previous: 3.1.2-incubating (8-Apr-2016)</li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.1.2-incubating/">TinkerPop 3.1.2-incubating</a></li>
@@ -99,8 +99,8 @@
                      <li><a href="http://gremlinbin.com/"><img src="images/goutte-blue.png" class="nav-icon"/>Try Gremlin</a></li>
                      <li role="separator" class="divider"></li>
                      <li><a href="gremlin.html">Introduction to Gremlin</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/getting-started/">Getting Started</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/getting-started/">Getting Started</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/recipes/">Gremlin Recipes</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/tutorials/gremlin-language-variants/">Gremlin Language Variants</a></li>
                      <li><a href="http://sql2gremlin.com/">SQL2Gremlin</a></li>
@@ -114,7 +114,7 @@
                      <li><a href="http://groups.google.com/group/gremlin-users">User Mailing List</a></li>
                      <li><a href="http://mail-archives.apache.org/mod_mbox/incubator-tinkerpop-dev/">Developer Mailing List</a></li>
                      <li><a href="https://issues.apache.org/jira/browse/TINKERPOP/">Issue Tracker</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer/#_contributing">Contributing</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/dev/developer/#_contributing">Contributing</a></li>
                      <li><a href="providers.html">Providers</a></li>
                      <li><a href="index.html#committers">Project Committers</a></li>
                      <li role="separator" class="divider"></li>
@@ -380,14 +380,14 @@ g.V().hasLabel("person").
                </div>
                <div class="col-sm-7 col-md-8">
                   A declarative Gremlin traversal does not tell the traversers the order in which to execute their walk, but instead, allows each traverser to select a pattern to execute from a collection 
-                  of (potentially nested) patterns. The <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#match-step">declarative traversal</a> on the left yields the same result as the imperative traversal above. However, the declarative traversal has the added benefit 
+                  of (potentially nested) patterns. The <a href="http://tinkerpop.apache.org/docs/current/reference/#match-step">declarative traversal</a> on the left yields the same result as the imperative traversal above. However, the declarative traversal has the added benefit 
                   that it leverages not only a compile-time query planner (like imperative traversals), but also a runtime query planner that chooses which traversal pattern to execute next based on the 
                   historic statistics of each pattern -- favoring those patterns which tend to reduce/filter the most data.
                </div>
             </div>
             <br/>
             The user can write their traversals in any way they choose. However, ultimately when their traversal is compiled, and depending up the underlying execution engine 
-            (i.e. an OLTP graph database or an OLAP graph processor), the user's traversal is rewritten by a set of <em><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#traversalstrategy">traversal strategies</a></em> which do their best to determine the most optimal execution
+            (i.e. an OLTP graph database or an OLAP graph processor), the user's traversal is rewritten by a set of <em><a href="http://tinkerpop.apache.org/docs/current/reference/#traversalstrategy">traversal strategies</a></em> which do their best to determine the most optimal execution
             plan based on an understanding of graph data access costs as well as the underlying data systems's unique capabilities (e.g. fetch the Gremlin vertex from the graph database's "name"-index). 
             Gremlin has been designed to give users flexibility in how they express their queries and graph system providers flexibility in how to efficiently evaluate traversals against their TinkerPop-enabled data system.
          </div>

Modified: incubator/tinkerpop/site/index.html
URL: http://svn.apache.org/viewvc/incubator/tinkerpop/site/index.html?rev=1746438&r1=1746437&r2=1746438&view=diff
==============================================================================
--- incubator/tinkerpop/site/index.html (original)
+++ incubator/tinkerpop/site/index.html Wed Jun  1 11:32:43 2016
@@ -77,10 +77,10 @@
                   </a>
                   <ul class="dropdown-menu">
                      <li class="dropdown-header">Latest: 3.2.0-incubating (8-Apr-2016)</li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference">TinkerPop 3.2.0-incubating</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/upgrade">Upgrade Information</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/core/">Core Javadoc API</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/full/">Full Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/reference">TinkerPop 3.2.0-incubating</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/upgrade">Upgrade Information</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/core/">Core Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/full/">Full Javadoc API</a></li>
                      <li role="separator" class="divider"></li>
                      <li class="dropdown-header">Previous: 3.1.2-incubating (8-Apr-2016)</li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.1.2-incubating/">TinkerPop 3.1.2-incubating</a></li>
@@ -99,8 +99,8 @@
                      <li><a href="http://gremlinbin.com/"><img src="images/goutte-blue.png" class="nav-icon"/>Try Gremlin</a></li>
                      <li role="separator" class="divider"></li>
                      <li><a href="gremlin.html">Introduction to Gremlin</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/getting-started/">Getting Started</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/getting-started/">Getting Started</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/recipes/">Gremlin Recipes</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/tutorials/gremlin-language-variants/">Gremlin Language Variants</a></li>
                      <li><a href="http://sql2gremlin.com/">SQL2Gremlin</a></li>
@@ -114,7 +114,7 @@
                      <li><a href="http://groups.google.com/group/gremlin-users">User Mailing List</a></li>
                      <li><a href="http://mail-archives.apache.org/mod_mbox/incubator-tinkerpop-dev/">Developer Mailing List</a></li>
                      <li><a href="https://issues.apache.org/jira/browse/TINKERPOP/">Issue Tracker</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer/#_contributing">Contributing</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/dev/developer/#_contributing">Contributing</a></li>
                      <li><a href="providers.html">Providers</a></li>
                      <li><a href="index.html#committers">Project Committers</a></li>
                      <li role="separator" class="divider"></li>
@@ -167,18 +167,18 @@
                      <div class="col-md-6">
                         <p><b>Documentation</b></p>
                         <ul>
-                           <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/">TinkerPop3 Documentation</a></li>
+                           <li><a href="http://tinkerpop.apache.org/docs/current/reference/">TinkerPop3 Documentation</a></li>
                            <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/upgrade/#_tinkerpop_3_2_0">Upgrade Information</a></li>
                            <li>TinkerPop3 Javadoc</li>
                            <ul>
-                              <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/core/">TinkerPop3 Core-Javadoc</a></li>
-                              <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/full/">TinkerPop3 Full-Javadoc</a></li>
+                              <li><a href="http://tinkerpop.apache.org/javadocs/current/core/">TinkerPop3 Core-Javadoc</a></li>
+                              <li><a href="http://tinkerpop.apache.org/javadocs/current/full/">TinkerPop3 Full-Javadoc</a></li>
                            </ul>
                         </ul>
                      </div>
                      <div class="col-md-6">
                         <br/>
-                        <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/getting-started">
+                        <a href="http://tinkerpop.apache.org/docs/current/tutorials/getting-started">
                            <img src="images/gremlin-gym-mini.png" width="150" class="img-responsive" align="left"/>
                         </a>
                      </div>
@@ -303,7 +303,7 @@
             <div class="col-xs-12">
                <div class="row">
                   <div class="col-xs-8">
-                     TinkerPop is an open source project that <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer#_contributing">welcomes contributions</a>. There are many ways to get involved:
+                     TinkerPop is an open source project that <a href="http://tinkerpop.apache.org/docs/current/dev/developer#_contributing">welcomes contributions</a>. There are many ways to get involved:
                      <p/>
                      <ol>
                         <li>
@@ -330,30 +330,30 @@
                            <li>Become a TinkerPop Committer and help determine the evolution of The TinkerPop.</li>
                         </ul>
                      </ol>
-                     <p>To build TinkerPop from source, please review the <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer/#building-testing">developer documentation</a>.
+                     <p>To build TinkerPop from source, please review the <a href="http://tinkerpop.apache.org/docs/current/dev/developer/#building-testing">developer documentation</a>.
                   </div>
                   <div class="col-xs-4">
-                     <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer/"><img src="images/gremlin-apache.png" width="250" class="img-responsive" /></a>
+                     <a href="http://tinkerpop.apache.org/docs/current/dev/developer/"><img src="images/gremlin-apache.png" width="250" class="img-responsive" /></a>
                   </div>
                </div>
                <h3>Community Contributions</h3>
                TinkerPop is at the center of a larger development ecosystem that extends on its core interfaces, integration points, and ideas.  The graph systems and libraries below represent both 
                TinkerPop-maintained reference implementations as well as third-party managed projects. The TinkerPop community is always interested in hearing about projects like these and aiding 
                in their support. Please read our <a href="policy.html">provider listing policy</a> and feel free to promote such projects on the user and developer mailing lists. Information on 
-               how to build implementations of the various interfaces that TinkerPop exposes can be found in the <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/provider/">Provider Documentation</a>.
+               how to build implementations of the various interfaces that TinkerPop exposes can be found in the <a href="http://tinkerpop.apache.org/docs/current/dev/provider/">Provider Documentation</a>.
                <p/>
                   <a name="graph-systems"></a>
                <h4 id="graph-systems">Graph Systems</h4>
                <small>[<a href="providers.html#data-system-providers">learn more</a>]</small>
                <ul>
                   <li><a href="https://github.com/blazegraph/tinkerpop3">Blazegraph</a> - RDF graph database with OLTP support.</li>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#giraphgraphcomputer">Hadoop (Giraph)</a> - OLAP graph processor using Giraph.</li>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#sparkgraphcomputer">Hadoop (Spark)</a> - OLAP graph processor using Spark.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/current/reference/#giraphgraphcomputer">Hadoop (Giraph)</a> - OLAP graph processor using Giraph.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/current/reference/#sparkgraphcomputer">Hadoop (Spark)</a> - OLAP graph processor using Spark.</li>
                   <li><a href="https://console.ng.bluemix.net/catalog/services/ibm-graph/">IBM Graph</a> - OLTP graph database as a service.</li>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/#neo4j-gremlin">Neo4j</a> - OLTP graph database.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/currentg/#neo4j-gremlin">Neo4j</a> - OLTP graph database.</li>
                   <li><a href="https://github.com/pietermartin/sqlg">Sqlg</a> - RDBMS OLTP implementation with HSQLDB and Postresql support.</li>
                   <li><a href="http://stardog.com/">Stardog</a> - RDF graph database with OLTP and OLAP support.</li>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#tinkergraph-gremlin">TinkerGraph</a> - In-memory OLTP and OLAP reference implementation.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/current/reference/#tinkergraph-gremlin">TinkerGraph</a> - In-memory OLTP and OLAP reference implementation.</li>
                   <li><a href="http://thinkaurelius.github.io/titan/">Titan</a> - Distributed OLTP and OLAP graph database with BerkeleyDB, Cassandra and HBase support.</li>
                   <li><a href="https://github.com/awslabs/dynamodb-titan-storage-backend">Titan (Amazon)</a> - The Amazon DynamoDB storage backend for Titan.</li>
                   <li><a href="https://github.com/classmethod/tupl-titan-storage-backend">Titan (Tupl)</a> - The Tupl storage backend for Titan.</li>
@@ -377,7 +377,7 @@
                <ul>
                   <li><a href="https://github.com/davebshow/aiogremlin">aiogremlin</a> (python) - A Python 3 library based on asyncio and aiohttp that uses websockets to communicate with the Gremlin Server.</li>
                   <li><a href="https://github.com/davebshow/gremlinclient">gremlinclient</a> (python) - An asynchronous Python 2/3 client for Gremlin Server that allows for flexible coroutine syntax - Trollius, Tornado, Asyncio.</li>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#connecting-via-java">gremlin-driver</a> (java) - A Gremlin Server driver for Java.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/current/reference/#connecting-via-java">gremlin-driver</a> (java) - A Gremlin Server driver for Java.</li>
                   <li><a href="https://github.com/jbmusso/gremlin-javascript">gremlin-javascript</a> (js) - A Gremlin Server driver for JavaScript.</li>
                   <li><a href="https://github.com/qasaur/gremgo">gremgo</a> (go) - A Gremlin Server driver for Go.</li>                
                   <li><a href="http://gremlinrestclient.readthedocs.org/en/latest/">gremlinrestclient</a> (python) - Python 2/3 library that uses HTTP to communicate with the Gremlin Server over REST.</li>
@@ -391,8 +391,8 @@
                <a name="tutorials"></a>
                <h4 id="tutorials">Tutorials</h4>
                <ul>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/getting-started/">Getting Started with TinkerPop</a> - Learn the basics of getting up and going with TinkerPop.</li>
-                  <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/the-gremlin-console/">The Gremlin Console</a> - Discusses uses cases of the Gremlin Console and usage patterns.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/getting-started/">Getting Started with TinkerPop</a> - Learn the basics of getting up and going with TinkerPop.</li>
+                  <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/the-gremlin-console/">The Gremlin Console</a> - Discusses uses cases of the Gremlin Console and usage patterns.</li>
                   <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/recipes/">Gremlin Recipes</a> - Reference for common traversal patterns and style.</li>
                   <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/tutorials/gremlin-language-variants/">Gremlin Language Variants</a> - Learn how to embed Gremlin in a host programming language.</li>
                   <li><a href="http://sql2gremlin.com/">SQL2Gremlin</a> - Learn Gremlin using typical patterns found when querying data with SQL.</li>

Modified: incubator/tinkerpop/site/policy.html
URL: http://svn.apache.org/viewvc/incubator/tinkerpop/site/policy.html?rev=1746438&r1=1746437&r2=1746438&view=diff
==============================================================================
--- incubator/tinkerpop/site/policy.html (original)
+++ incubator/tinkerpop/site/policy.html Wed Jun  1 11:32:43 2016
@@ -77,10 +77,10 @@
                   </a>
                   <ul class="dropdown-menu">
                      <li class="dropdown-header">Latest: 3.2.0-incubating (8-Apr-2016)</li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference">TinkerPop 3.2.0-incubating</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/upgrade">Upgrade Information</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/core/">Core Javadoc API</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/full/">Full Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/reference">TinkerPop 3.2.0-incubating</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/currentg/upgrade">Upgrade Information</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/core/">Core Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/full/">Full Javadoc API</a></li>
                      <li role="separator" class="divider"></li>
                      <li class="dropdown-header">Previous: 3.1.2-incubating (8-Apr-2016)</li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.1.2-incubating/">TinkerPop 3.1.2-incubating</a></li>
@@ -99,8 +99,8 @@
                      <li><a href="http://gremlinbin.com/"><img src="images/goutte-blue.png" class="nav-icon"/>Try Gremlin</a></li>
                      <li role="separator" class="divider"></li>
                      <li><a href="gremlin.html">Introduction to Gremlin</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/getting-started/">Getting Started</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/getting-started/">Getting Started</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/recipes/">Gremlin Recipes</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/tutorials/gremlin-language-variants/">Gremlin Language Variants</a></li>
                      <li><a href="http://sql2gremlin.com/">SQL2Gremlin</a></li>
@@ -114,7 +114,7 @@
                      <li><a href="http://groups.google.com/group/gremlin-users">User Mailing List</a></li>
                      <li><a href="http://mail-archives.apache.org/mod_mbox/incubator-tinkerpop-dev/">Developer Mailing List</a></li>
                      <li><a href="https://issues.apache.org/jira/browse/TINKERPOP/">Issue Tracker</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer/#_contributing">Contributing</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/dev/developer/#_contributing">Contributing</a></li>
                      <li><a href="providers.html">Providers</a></li>
                      <li><a href="index.html#committers">Project Committers</a></li>
                      <li role="separator" class="divider"></li>

Modified: incubator/tinkerpop/site/providers.html
URL: http://svn.apache.org/viewvc/incubator/tinkerpop/site/providers.html?rev=1746438&r1=1746437&r2=1746438&view=diff
==============================================================================
--- incubator/tinkerpop/site/providers.html (original)
+++ incubator/tinkerpop/site/providers.html Wed Jun  1 11:32:43 2016
@@ -77,10 +77,10 @@
                   </a>
                   <ul class="dropdown-menu">
                      <li class="dropdown-header">Latest: 3.2.0-incubating (8-Apr-2016)</li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference">TinkerPop 3.2.0-incubating</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/upgrade">Upgrade Information</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/core/">Core Javadoc API</a></li>
-                     <li><a href="http://tinkerpop.apache.org/javadocs/3.2.0-incubating/full/">Full Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/reference">TinkerPop 3.2.0-incubating</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/upgrade">Upgrade Information</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/core/">Core Javadoc API</a></li>
+                     <li><a href="http://tinkerpop.apache.org/javadocs/current/full/">Full Javadoc API</a></li>
                      <li role="separator" class="divider"></li>
                      <li class="dropdown-header">Previous: 3.1.2-incubating (8-Apr-2016)</li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.1.2-incubating/">TinkerPop 3.1.2-incubating</a></li>
@@ -99,8 +99,8 @@
                      <li><a href="http://gremlinbin.com/"><img src="images/goutte-blue.png" class="nav-icon"/>Try Gremlin</a></li>
                      <li role="separator" class="divider"></li>
                      <li><a href="gremlin.html">Introduction to Gremlin</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/getting-started/">Getting Started</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/getting-started/">Getting Started</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/tutorials/the-gremlin-console/">The Gremlin Console</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/recipes/">Gremlin Recipes</a></li>
                      <li><a href="http://tinkerpop.apache.org/docs/3.2.1-SNAPSHOT/tutorials/gremlin-language-variants/">Gremlin Language Variants</a></li>
                      <li><a href="http://sql2gremlin.com/">SQL2Gremlin</a></li>
@@ -114,7 +114,7 @@
                      <li><a href="http://groups.google.com/group/gremlin-users">User Mailing List</a></li>
                      <li><a href="http://mail-archives.apache.org/mod_mbox/incubator-tinkerpop-dev/">Developer Mailing List</a></li>
                      <li><a href="https://issues.apache.org/jira/browse/TINKERPOP/">Issue Tracker</a></li>
-                     <li><a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/developer/#_contributing">Contributing</a></li>
+                     <li><a href="http://tinkerpop.apache.org/docs/current/dev/developer/#_contributing">Contributing</a></li>
                      <li><a href="providers.html">Providers</a></li>
                      <li><a href="index.html#committers">Project Committers</a></li>
                      <li role="separator" class="divider"></li>
@@ -222,33 +222,33 @@
                   Gremlin traversal machine. In fact, compilers currently exist for <a href="https://github.com/twilmes/sql-gremlin">SQL</a> and <a href="https://github.com/dkuppitz/sparql-gremlin">SPARQL</a>. However, using alternative languages for graph computing leads to significantly more complicated queries 
                   and typically does not match the expressivity provided by Gremlin.
                </li>
-               <li><strong>TinkerGraph</strong>: TinkerPop provides a simple, non-transactional, in-memory graph system called <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#tinkergraph-gremlin">TinkerGraph</a>. TinkerGraph is useful for exploring graphs that can fit 
+               <li><strong>TinkerGraph</strong>: TinkerPop provides a simple, non-transactional, in-memory graph system called <a href="http://tinkerpop.apache.org/docs/current/reference/#tinkergraph-gremlin">TinkerGraph</a>. TinkerGraph is useful for exploring graphs that can fit 
                   in-memory, for doing tutorials and training without the overhead of database setup, etc. TinkerGraph boasts both OLTP and OLAP traversal machine support.
                </li>
-               <li><strong>Gremlin Console</strong>: A command line <a href="https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop">REPL</a> is provided called <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#gremlin-console">Gremlin Console</a>. This console is useful when learning TinkerPop as users can load provided datasets into a 
+               <li><strong>Gremlin Console</strong>: A command line <a href="https://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print_loop">REPL</a> is provided called <a href="http://tinkerpop.apache.org/docs/current/reference/#gremlin-console">Gremlin Console</a>. This console is useful when learning TinkerPop as users can load provided datasets into a 
                   graph system and explore the Gremlin language without the overhead of creating a full-blown software project. Furthermore, the Gremlin Console is used extensively in production scenarios 
                   because it allows system administrators to interact with a local or remote graph to gather statistics, manually explore the data to ensure data integrity, and other useful tasks.
                </li>
-               <li><strong>Gremlin Server</strong>: It is typical for a graph database to exist on a separate machine from the user's application code. <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#gremlin-server">Gremlin Server</a> bridges the network-divide 
+               <li><strong>Gremlin Server</strong>: It is typical for a graph database to exist on a separate machine from the user's application code. <a href="http://tinkerpop.apache.org/docs/current/reference/#gremlin-server">Gremlin Server</a> bridges the network-divide 
                   allowing users to seamlessly submit traversals for remote execution over a web-sockets based binary protocol. If provider already has a server, they can leverage TinkerPop-specific 
                   components as needed. Gremlin Server also provides a REST-based API, support for <a href="http://ganglia.info/">Ganglia</a>/<a href="http://graphite.wikidot.com/">Graphite</a>/<a href="http://www.oracle.com/technetwork/articles/java/javamanagement-140525.html">JMX</a>/more 
                   metrics, and a traversal routing framework for intelligent data/traversal co-location within a distributed graph database's machine cluster.
                </li>
                <li><strong>SparkGraphComputer</strong>: <a href="http://spark.apache.org/">Apache Spark</a>&trade; is a Big Data OLAP processor that simplifies the creation and execution of distributed data analytics. 
-                  <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#sparkgraphcomputer"><code>SparkGraphComputer</code></a> turns Spark 
+                  <a href="http://tinkerpop.apache.org/docs/current/reference/#sparkgraphcomputer"><code>SparkGraphComputer</code></a> turns Spark 
                   into a Big(Graph)Data processor via the OLAP component of the Gremlin traversal machine. Users do not have to learn Spark's data processing language as Gremlin traversals immediately execute 
                   over Spark. For graph system providers, they can boast Spark integration once a custom <code>InputRDD</code> (or <code>InputFormat</code>) is developed.
                </li>
                <li><strong>GiraphGraphComputer</strong>: <a href="http://giraph.apache.org/">Apache Giraph</a>&trade; is a Big(Graph)Data processor that leverages <a href="http://hadoop.apache.org/">Apache Hadoop</a>&reg; and 
-                  <a href="http://zookeeper.apache.org/">Apache ZooKeeper</a>&trade; for executing distributed graph algorithms. <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#giraphgraphcomputer"><code>GiraphGraphComputer</code></a> 
+                  <a href="http://zookeeper.apache.org/">Apache ZooKeeper</a>&trade; for executing distributed graph algorithms. <a href="http://tinkerpop.apache.org/docs/current/reference/#giraphgraphcomputer"><code>GiraphGraphComputer</code></a> 
                   supports Gremlin OLAP and allows users to submit Gremlin traversals to Giraph for distributed execution. Providers can immediately advertise Giraph integration once a custom <code>InputFormat</code> is developed.
                </li>
                <li><strong>Hadoop support</strong>: <a href="http://hadoop.apache.org/">Apache Hadoop</a>&reg; has become a staple technology for Big Data applications. In TinkerPop, both <code>SparkGraphComputer</code> and <code>GiraphGraphComputer</code> can pull data 
                   from the Hadoop File System (<a href="https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-hdfs/HdfsUserGuide.html">HDFS</a>). TinkerPop provides a collection of Input- and OutputFormats for different graph serialization standards as well as tooling that makes it easy for users 
-                  to <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/reference/#interacting-with-hdfs">interact with HDFS</a> from the Gremlin Console or their application.
+                  to <a href="http://tinkerpop.apache.org/docs/current/reference/#interacting-with-hdfs">interact with HDFS</a> from the Gremlin Console or their application.
                </li>
             </ul>
-            <p>Information on how to build implementations of the various interfaces that TinkerPop supports can be found in the <a href="http://tinkerpop.apache.org/docs/3.2.0-incubating/dev/provider/">Provider Documentation</a>.
+            <p>Information on how to build implementations of the various interfaces that TinkerPop supports can be found in the <a href="http://tinkerpop.apache.org/docs/current/dev/provider/">Provider Documentation</a>.
             <br/>
             <h4>TinkerPop-Enabled Graph Systems</h4>
             <br/>