[GitHub] [tinkerpop] divijvaidya commented on a change in pull request #1289: TINKERPOP-2374 fix missing authorization with SaslAndHttpBasicAuthenticationHandler

2020-05-28 Thread GitBox


divijvaidya commented on a change in pull request #1289:
URL: https://github.com/apache/tinkerpop/pull/1289#discussion_r432228859



##
File path: 
gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/handler/SaslAndHttpBasicAuthenticationHandler.java
##
@@ -47,9 +47,11 @@ public SaslAndHttpBasicAuthenticationHandler(final 
Authenticator authenticator,
 @Override
 public void channelRead(final ChannelHandlerContext ctx, final Object obj) 
throws Exception {
 if (obj instanceof HttpMessage && 
!WebSocketHandlerUtil.isWebSocket((HttpMessage)obj)) {
-if (null == ctx.pipeline().get(HTTP_AUTH)) {
-ctx.pipeline().addAfter(PIPELINE_AUTHENTICATOR, HTTP_AUTH, new 
HttpBasicAuthenticationHandler(authenticator, this.authenticationSettings));
+ChannelPipeline pipeline = ctx.pipeline();
+if (null != pipeline.get(HTTP_AUTH)) {
+pipeline.remove(HTTP_AUTH);
 }

Review comment:
   This code change doesn't really solve the root cause and doesn't explain 
why are having random pipeline behaviour.
   
   Here's my theory:
   
   When keep alive is turned on, multiple HTTP requests use the same pipeline. 
This causes a race condition where multiple requests are trying to modify the 
pipeline dynamically in channelRead method of `WsAndHttpChannelizerHandler`. 
While one message is dynamically modifying the pipeline, let's say executing 
line 68 (removing the PIPELINE_AUTHENTICATOR), another message might come in 
and execute line 65 and erroneously jumped to line 71. This causes the 
unpredictable behaviour you are observing.
   
   The correct fix would be to ensure that the above dynamic modification of 
pipeline is only done once per connection instead of modifying it with every 
message.
   
   IMO we should not push this workaround without fixing the underlying root 
cause. WDYT @spmallette ?





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [tinkerpop] divijvaidya commented on a change in pull request #1289: TINKERPOP-2374 fix missing authorization with SaslAndHttpBasicAuthenticationHandler

2020-05-28 Thread GitBox


divijvaidya commented on a change in pull request #1289:
URL: https://github.com/apache/tinkerpop/pull/1289#discussion_r432228859



##
File path: 
gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/handler/SaslAndHttpBasicAuthenticationHandler.java
##
@@ -47,9 +47,11 @@ public SaslAndHttpBasicAuthenticationHandler(final 
Authenticator authenticator,
 @Override
 public void channelRead(final ChannelHandlerContext ctx, final Object obj) 
throws Exception {
 if (obj instanceof HttpMessage && 
!WebSocketHandlerUtil.isWebSocket((HttpMessage)obj)) {
-if (null == ctx.pipeline().get(HTTP_AUTH)) {
-ctx.pipeline().addAfter(PIPELINE_AUTHENTICATOR, HTTP_AUTH, new 
HttpBasicAuthenticationHandler(authenticator, this.authenticationSettings));
+ChannelPipeline pipeline = ctx.pipeline();
+if (null != pipeline.get(HTTP_AUTH)) {
+pipeline.remove(HTTP_AUTH);
 }

Review comment:
   This code change doesn't really solve the root cause and doesn't explain 
why are having random pipeline behaviour.
   
   Here's my theory:
   
   When keep alive is turned on, multiple HTTP requests use the same pipeline. 
This causes a race condition where multiple requests are trying to modify the 
pipeline dynamically in channelRead method of `WsAndHttpChannelizerHandler`. 
While one message is dynamically modifying the pipeline, let's say executing 
line 68 (removing the PIPELINE_AUTHENTICATOR), another message might come in 
and execute line 65 and erroneously jumped to line 71. This causes the 
unpredictable behaviour you are observing.
   
   The correct fix would be to ensure that the above dynamic modification of 
pipeline is only done once.
   
   IMO we should not push this workaround without fixing the underlying root 
cause. WDYT @spmallette ?





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [tinkerpop] spmallette commented on pull request #1285: Tinkerpop-1641 Kerberos authentication for gremlin-python

2020-05-28 Thread GitBox


spmallette commented on pull request #1285:
URL: https://github.com/apache/tinkerpop/pull/1285#issuecomment-635551936


   Note that I made this addition to the dev docs around those two additional 
requirements:
   
   
https://github.com/apache/tinkerpop/pull/1290/commits/ec206814c822d56b7af0641cd29ddcd2600ac360
   
   Please let me know if that change looks ok to you.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[tinkerpop] branch TINKERPOP-1641 updated (3eacbf2 -> ec20681)

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 3eacbf2  TINKERPOP-1641 added exclusion for asm
 add ec20681  TINKERPOP-1641 Updated dev docs to include libkrb5-dev and 
krb5-user

No new revisions were added by this update.

Summary of changes:
 docs/src/dev/developer/development-environment.asciidoc | 17 +++--
 1 file changed, 11 insertions(+), 6 deletions(-)



[GitHub] [tinkerpop] spmallette commented on a change in pull request #1285: Tinkerpop-1641 Kerberos authentication for gremlin-python

2020-05-28 Thread GitBox


spmallette commented on a change in pull request #1285:
URL: https://github.com/apache/tinkerpop/pull/1285#discussion_r432057651



##
File path: docs/src/reference/gremlin-variants.asciidoc
##
@@ -642,6 +642,7 @@ To install Gremlin-Python, use Python's 
link:https://en.wikipedia.org/wiki/Pip_(
 [source,bash]
 
 pip install gremlinpython
+pip install gremlinpython[kerberos] # Optional, not available on Microsoft 
Windows

Review comment:
   I was trying to understand this syntax, specifically the addition of the 
bracketed "[kerberos]". I see it described pretty nicely here:
   
   https://stackoverflow.com/a/46775606/1831717
   
   that led me to this link:
   
   
https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies
   
   should "kerberos" be defined in `extra_require"?





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[tinkerpop] branch master updated: Bumped to Jackson 2.11.x CTR

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
 new cba6b80  Bumped to Jackson 2.11.x CTR
cba6b80 is described below

commit cba6b80d2ff0c9dc0da5c09bd6c900a76c115ee4
Author: Stephen Mallette 
AuthorDate: Thu May 28 14:40:47 2020 -0400

Bumped to Jackson 2.11.x CTR
---
 CHANGELOG.asciidoc | 2 +-
 gremlin-shaded/pom.xml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index c80f986..b766464 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -53,7 +53,7 @@ This release also includes changes from <>.
 * Added support for `TextP` in Neo4j using its string search functions.
 * Changed `TraversalStrategy` application methodology to apply each strategy 
in turn to each level of the traversal hierarchy starting from root down to 
children.
 * Prevented more than one `Client` from connecting to the same Gremlin Server 
session.
-* Bumped to Jackson 2.10.x.
+* Bumped to Jackson 2.11.x.
 * Removed internal functionality for the session close message in Gremlin 
Server - the message is accepted but ignored if sent.
 * Removed `Property.Exceptions.propertyValueCanNotBeNull` exception type as 
`null` now has meaning in Gremlin.
 * Removed the "experimental" support for multi/meta-properties in Neo4j.
diff --git a/gremlin-shaded/pom.xml b/gremlin-shaded/pom.xml
index 5cc68dd..16ffb40 100644
--- a/gremlin-shaded/pom.xml
+++ b/gremlin-shaded/pom.xml
@@ -49,7 +49,7 @@ limitations under the License.
 
 com.fasterxml.jackson.core
 jackson-databind
-2.10.3
+2.11.0
 true
 
 



[GitHub] [tinkerpop] spmallette commented on pull request #1285: Tinkerpop-1641 Kerberos authentication for gremlin-python

2020-05-28 Thread GitBox


spmallette commented on pull request #1285:
URL: https://github.com/apache/tinkerpop/pull/1285#issuecomment-635516064


   I just opened #1290 which has all of these commits plus one of mine that 
allows Neo4j to build properly. We can close this one now.



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [tinkerpop] spmallette closed pull request #1285: Tinkerpop-1641 Kerberos authentication for gremlin-python

2020-05-28 Thread GitBox


spmallette closed pull request #1285:
URL: https://github.com/apache/tinkerpop/pull/1285


   



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[GitHub] [tinkerpop] spmallette opened a new pull request #1290: TINKERPOP-1641 Kerberos support for python

2020-05-28 Thread GitBox


spmallette opened a new pull request #1290:
URL: https://github.com/apache/tinkerpop/pull/1290


   https://issues.apache.org/jira/browse/TINKERPOP-1641
   
   This PR replaces #1285.
   
   VOTE +1



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[tinkerpop] 09/09: TINKERPOP-1641 added exclusion for asm

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 3eacbf22be3c012bc827930929f935bdf44015ba
Author: Stephen Mallette 
AuthorDate: Thu May 28 14:10:09 2020 -0400

TINKERPOP-1641 added exclusion for asm

Kirby was conflicting with neo4j
---
 neo4j-gremlin/pom.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/neo4j-gremlin/pom.xml b/neo4j-gremlin/pom.xml
index a227e22..d9c959b 100644
--- a/neo4j-gremlin/pom.xml
+++ b/neo4j-gremlin/pom.xml
@@ -42,6 +42,13 @@ limitations under the License.
 gremlin-test
 ${project.version}
 test
+ 
+
+
+org.ow2.asm
+asm
+
+
 
 
 org.slf4j



[tinkerpop] 07/09: Revert "Adds more travis deps needed for installing PYPI:kerberos"

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit f5c97eabc1cbf2c178a9baf4c4d521673103f927
Author: HadoopMarc 
AuthorDate: Thu May 14 09:20:57 2020 +0200

Revert "Adds more travis deps needed for installing PYPI:kerberos"

This reverts commit 0c7759fdb11fe360114c5b6e541be2eae7016870.
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 278c23f..3e3f2a8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,7 +36,7 @@ before_install:
   - sudo apt install python3.6
   - sudo rm /usr/bin/python3
   - sudo ln -s python3.6 /usr/bin/python3
-  - sudo apt install gcc python3.6-dev libkrb5-dev
+  - sudo apt install libkrb5-dev
 
 jobs:
   include:



[tinkerpop] 06/09: Adds more travis deps needed for installing PYPI:kerberos

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit f73b1cdce0b14e71d8c27616096f2af6143ea2b6
Author: HadoopMarc 
AuthorDate: Mon May 11 17:15:42 2020 +0200

Adds more travis deps needed for installing PYPI:kerberos
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 3e3f2a8..278c23f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,7 +36,7 @@ before_install:
   - sudo apt install python3.6
   - sudo rm /usr/bin/python3
   - sudo ln -s python3.6 /usr/bin/python3
-  - sudo apt install libkrb5-dev
+  - sudo apt install gcc python3.6-dev libkrb5-dev
 
 jobs:
   include:



[tinkerpop] 04/09: Adds libkrb5-dev dependency to travis

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 15d256aaf4daede1f6cde850ebf0313760f67489
Author: HadoopMarc 
AuthorDate: Sun May 10 21:13:04 2020 +0200

Adds libkrb5-dev dependency to travis
---
 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.travis.yml b/.travis.yml
index 13cf933..3e3f2a8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,6 +36,7 @@ before_install:
   - sudo apt install python3.6
   - sudo rm /usr/bin/python3
   - sudo ln -s python3.6 /usr/bin/python3
+  - sudo apt install libkrb5-dev
 
 jobs:
   include:



[tinkerpop] 05/09: Removes tornado again from python venv because it requires additional apt packages in travis and there are no tests for the tornado functionality

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit f464a29f377aa81af37bbe7522b241985eac9264
Author: HadoopMarc 
AuthorDate: Sun May 10 21:49:52 2020 +0200

Removes tornado again from python venv because it requires additional apt 
packages in travis and there are no tests for the tornado functionality
---
 gremlin-python/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index 4715e64..5e33b81 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -135,7 +135,7 @@ limitations under the License.
 
 
-
+
 
 
 



[tinkerpop] 08/09: Revert "Revert "Adds more travis deps needed for installing PYPI:kerberos""

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit b335e1d9a5271774167970b98a12ca05fb7b5ee7
Author: HadoopMarc 
AuthorDate: Thu May 14 10:17:16 2020 +0200

Revert "Revert "Adds more travis deps needed for installing PYPI:kerberos""

This reverts commit c79f39b66d5bebc48d9b279dfd7e7c6f2e0af3d7.
---
 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index 3e3f2a8..278c23f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -36,7 +36,7 @@ before_install:
   - sudo apt install python3.6
   - sudo rm /usr/bin/python3
   - sudo ln -s python3.6 /usr/bin/python3
-  - sudo apt install libkrb5-dev
+  - sudo apt install gcc python3.6-dev libkrb5-dev
 
 jobs:
   include:



[tinkerpop] branch TINKERPOP-1641 updated (bd4bb5b -> 3eacbf2)

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


 discard bd4bb5b  TINKERPOP-1641 added exclusion for asm
 discard 85d5bcf  Merge branch 'pr-1285' into TINKERPOP-1641
omit e4f1644  Revert "Revert "Adds more travis deps needed for installing 
PYPI:kerberos""
omit c79f39b  Revert "Adds more travis deps needed for installing 
PYPI:kerberos"
omit 0c7759f  Adds more travis deps needed for installing PYPI:kerberos
omit 8eecba9  Removes tornado again from python venv because it requires 
additional apt packages in travis and there are no tests for the tornado 
functionality
omit e78bb69  Adds libkrb5-dev dependency to travis
omit 610b10d  Minor revert code formatting
omit 3f6ac16  Small textual changes
omit 066840f  Moves KdcFixture to gremlin-test to allow for access by GLV's
 add f83e3c6  Change test to use a port that doesn't match standard 8182
 add 656fabd  Merge branch '3.3-dev' into 3.4-dev
 add 95c49cb  Merge branch '3.4-dev'
 new c88557d  Moves KdcFixture to gremlin-test to allow for access by GLV's
 new bbe4960  Small textual changes
 new 49073a0  Minor revert code formatting
 new 15d256a  Adds libkrb5-dev dependency to travis
 new f464a29  Removes tornado again from python venv because it requires 
additional apt packages in travis and there are no tests for the tornado 
functionality
 new f73b1cd  Adds more travis deps needed for installing PYPI:kerberos
 new f5c97ea  Revert "Adds more travis deps needed for installing 
PYPI:kerberos"
 new b335e1d  Revert "Revert "Adds more travis deps needed for installing 
PYPI:kerberos""
 new 3eacbf2  TINKERPOP-1641 added exclusion for asm

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (bd4bb5b)
\
 N -- N -- N   refs/heads/TINKERPOP-1641 (3eacbf2)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/main/javascript/gremlin-javascript/test/unit/client-test.js   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)



[tinkerpop] 01/09: Moves KdcFixture to gremlin-test to allow for access by GLV's

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit c88557df1a4edbd88a4916a374a07501a103ce63
Author: HadoopMarc 
AuthorDate: Sat Apr 4 10:07:43 2020 +0200

Moves KdcFixture to gremlin-test to allow for access by GLV's

Makes availeble KdcFixture in the docker container for testing GLV's

Adds kerberos authentication to gremlin-python

Adds tests for gremlin-python with kerberos

Adds audit logging to bytecode traversals (remnant from TINKERPOP-1566)

Updates the documentation

Updates the changelog
---
 CHANGELOG.asciidoc |   3 +
 docker/Dockerfile  |   4 +-
 docker/gremlin-server.sh   |   3 +-
 docker/gremlin-server/Dockerfile.template  |   2 +-
 docker/gremlin-server/docker-entrypoint.sh |  63 -
 .../gremlin-server/gremlin-console-jaas.conf   |  18 +---
 .../gremlin-server-integration-krb5.yaml   |  66 +
 docker/gremlin-server/krb5.conf|  29 ++
 docs/src/reference/gremlin-applications.asciidoc   |  40 +---
 docs/src/reference/gremlin-variants.asciidoc   |  31 +-
 gremlin-dotnet/pom.xml |   5 +
 gremlin-javascript/pom.xml |   5 +
 gremlin-python/pom.xml |   9 +-
 .../main/python/gremlin_python/driver/client.py|   5 +-
 .../driver/driver_remote_connection.py |   7 +-
 .../main/python/gremlin_python/driver/protocol.py  | 105 +
 gremlin-python/src/main/python/setup.py|   5 +-
 gremlin-python/src/main/python/tests/conftest.py   |  57 ---
 .../src/main/python/tests/driver/test_client.py|  16 ++--
 .../tests/driver/test_driver_remote_connection.py  |  14 +--
 .../python/tests/structure/io/test_graphsonV2d0.py |  12 +--
 gremlin-server/pom.xml |   7 --
 .../gremlin/server/auth/Krb5Authenticator.java |   4 +-
 .../server/op/traversal/TraversalOpProcessor.java  |   7 ++
 .../server/GremlinServerAuditLogIntegrateTest.java |  66 ++---
 .../server/GremlinServerAuthKrb5IntegrateTest.java |  32 ---
 .../src/test/scripts/test-server-start.groovy  |  37 +++-
 .../src/test/scripts/test-server-stop.groovy   |   8 ++
 gremlin-test/pom.xml   |  23 +
 .../tinkerpop/gremlin/server/KdcFixture.java   |  56 +++
 30 files changed, 585 insertions(+), 154 deletions(-)

diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc
index 07b7c35..07f6a97 100644
--- a/CHANGELOG.asciidoc
+++ b/CHANGELOG.asciidoc
@@ -50,6 +50,9 @@ This release also includes changes from <>.
 * Bump to Neo4j 3.4.11.
 * Added a parameterized `TypeTranslator` for use with `GroovyTranslator` that 
should produce more cache hits.
 * Added support for `TextP` in Neo4j using its string search functions.
+* Added a kerberos KDC to the docker container for testing GLV's.
+* Added kerberos authentication to Gremlin-Python.
+* Added audit logging to bytecode-based traversals.
 * Changed `TraversalStrategy` application methodology to apply each strategy 
in turn to each level of the traversal hierarchy starting from root down to 
children.
 * Prevented more than one `Client` from connecting to the same Gremlin Server 
session.
 * Bumped to Jackson 2.10.x.
diff --git a/docker/Dockerfile b/docker/Dockerfile
index d997be6..fe657e7 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -38,7 +38,9 @@ RUN apt-get install -y --force-yes dotnet-sdk-3.1 mono-devel
 # custom build and install 3.5.3 and upgrade pip along the way. this could be 
resolved by using bionic
 # but trying to keep all of our release branches on the same docker image and 
the older versions sorta
 # suit 3.3.x and 3.4.x
-RUN apt-get install -y --force-yes python python-dev python-pip 
build-essential checkinstall zlib1g-dev libreadline-gplv2-dev libncursesw5-dev 
libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
+ENV DEBIAN_FRONTEND=noninteractive
+RUN apt-get install -y python python-dev python-pip build-essential 
checkinstall zlib1g-dev libreadline-gplv2-dev \
+libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev 
libbz2-dev libkrb5-dev krb5-user
 RUN cd /opt && wget https://www.python.org/ftp/python/3.5.3/Python-3.5.3.tgz 
&& tar -xvf Python-3.5.3.tgz
 RUN cd /opt/Python-3.5.3 && ./configure && make && make install
 RUN ln -sf /usr/bin/python3.5.3 /usr/bin/python3
diff --git a/docker/gremlin-server.sh b/docker/gremlin-server.sh
index 540bfbc..fc43f56 100755
--- a/docker/gremlin-server.sh
+++ b/docker/gremlin-server.sh
@@ -57,7 +57,8 @@ echo "Using Gremlin Server $GREMLIN_SERVER_VERSION"
 sed -e "s/GREMLIN_SERVER_VERSION\$/${GREMLIN_SERVER_VERSION}/" 
docker/gremlin-s

[tinkerpop] 02/09: Small textual changes

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit bbe49606f323a0d25d68d9e23877b52d62316f17
Author: HadoopMarc 
AuthorDate: Sat May 9 21:26:42 2020 +0200

Small textual changes
---
 docs/src/reference/gremlin-applications.asciidoc  | 11 +--
 docs/src/reference/gremlin-variants.asciidoc  |  6 +++---
 .../src/main/python/gremlin_python/driver/protocol.py |  6 +++---
 3 files changed, 11 insertions(+), 12 deletions(-)

diff --git a/docs/src/reference/gremlin-applications.asciidoc 
b/docs/src/reference/gremlin-applications.asciidoc
index 2bad34f..9bfaf6e 100644
--- a/docs/src/reference/gremlin-applications.asciidoc
+++ b/docs/src/reference/gremlin-applications.asciidoc
@@ -1259,11 +1259,10 @@ authentication: {
 keytab: /etc/security/keytabs/gremlinserver.service.keytab}}
 
 `Krb5Authenticator` needs a Kerberos service principal and a keytab that holds 
the secret key for that principal. The keytab
-location and service name, e.g. gremlinserver, are free to be chosen. In 
addition, if the krb5.conf kerberos
-configuration file is not available from the
-https://web.mit.edu/kerberos/krb5-devel/doc/mitK5defaults.html[default 
location], `Krb5Authenticator` needs the location
-of the krb5.conf configuration file, to be specified as a system property in 
the JAVA_OPTIONS environment variable
-of Gremlin Server:
+location and service name, e.g. gremlinserver, are free to be chosen. 
`Krb5Authenticator` finds the KDC's hostname and
+port from the krb5.conf file with Kerberos configurations. This file can 
reside at either the
+https://web.mit.edu/kerberos/krb5-devel/doc/mitK5defaults.html[default 
location] or a location to be specified as a
+system property in the JAVA_OPTIONS environment variable of Gremlin Server:
 
 [source, bash]
 export JAVA_OPTIONS="${JAVA_OPTIONS} -Xms512m -Xmx4096m 
-Djava.security.krb5.conf=/etc/krb5.conf"
@@ -1288,7 +1287,7 @@ ticket cache that is normally refreshed when a user logs 
in to a host within the
 
 The Gremlin client needs the location of the JAAS configuration file to be 
passed as a system property to the JVM. For
 Gremlin-Console the easiest way to do this is to pass it to the run script via 
the JAVA_OPTIONS environment property.
-If the krb5.conf kerberos configuration file is not available from the
+If the krb5.conf Kerberos configuration file is not available from the
 https://web.mit.edu/kerberos/krb5-devel/doc/mitK5defaults.html[default 
location] it has to be provided as a system
 property as well:
 
diff --git a/docs/src/reference/gremlin-variants.asciidoc 
b/docs/src/reference/gremlin-variants.asciidoc
index 96bc942..45b12e5 100644
--- a/docs/src/reference/gremlin-variants.asciidoc
+++ b/docs/src/reference/gremlin-variants.asciidoc
@@ -675,12 +675,12 @@ g = traversal().withRemote(DriverRemoteConnection(
 
 # Kerberos authentication
 g = traversal().withRemote(DriverRemoteConnection(
-'ws://localhost:8182/gremlin', 'g', kerberized_service='gremlin'))
+'ws://localhost:8182/gremlin', 'g', 
kerberized_service='grem...@hostname.your.org'))
 
 
 The value specified for the kerberized_service should correspond to the first 
part of the principal name configured for
-the gremlin service. The Gremlin-Python client reads the kerberos 
configurations from your system.
-It finds the KDC's hostname and port from the krb5.conf file at the
+the gremlin service, but with the slash replaced by an _at_ sign. The 
Gremlin-Python client reads the kerberos
+configurations from your system. It finds the KDC's hostname and port from the 
krb5.conf file at the
 https://web.mit.edu/kerberos/krb5-devel/doc/mitK5defaults.html[default 
location] or as indicated in the KRB5_CONFIG
 environment variable. It finds credentials from the credential cache or a 
keytab file at the
 https://web.mit.edu/kerberos/krb5-devel/doc/mitK5defaults.html[default 
locations] or as indicated
diff --git a/gremlin-python/src/main/python/gremlin_python/driver/protocol.py 
b/gremlin-python/src/main/python/gremlin_python/driver/protocol.py
index ea8f625..667f828 100644
--- a/gremlin-python/src/main/python/gremlin_python/driver/protocol.py
+++ b/gremlin-python/src/main/python/gremlin_python/driver/protocol.py
@@ -88,9 +88,9 @@ class GremlinServerWSProtocol(AbstractBaseProtocol):
 def data_received(self, message, results_dict):
 # if Gremlin Server cuts off then we get a None for the message
 if message is None:
-raise GremlinServerError(
-{'code': 500, 'message': 'Server disconnected - please try to 
reconnect',
- 'attributes': {}})
+raise GremlinServerError({'code': 500, 'message': 'Server 
disconnected - please try to reconnect',
+  'attributes': {}})
+
 message = self._message_serializer.deseriali

[tinkerpop] 03/09: Minor revert code formatting

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 49073a07d6a2eec8d0ac9019d1c1f6eed8f4
Author: HadoopMarc 
AuthorDate: Sun May 10 20:41:30 2020 +0200

Minor revert code formatting
---
 gremlin-python/src/main/python/gremlin_python/driver/protocol.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gremlin-python/src/main/python/gremlin_python/driver/protocol.py 
b/gremlin-python/src/main/python/gremlin_python/driver/protocol.py
index 667f828..74773b8 100644
--- a/gremlin-python/src/main/python/gremlin_python/driver/protocol.py
+++ b/gremlin-python/src/main/python/gremlin_python/driver/protocol.py
@@ -88,8 +88,8 @@ class GremlinServerWSProtocol(AbstractBaseProtocol):
 def data_received(self, message, results_dict):
 # if Gremlin Server cuts off then we get a None for the message
 if message is None:
-raise GremlinServerError({'code': 500, 'message': 'Server 
disconnected - please try to reconnect',
-  'attributes': {}})
+raise GremlinServerError({'code': 500,
+  'message': 'Server disconnected - please 
try to reconnect', 'attributes': {}})
 
 message = self._message_serializer.deserialize_message(message)
 request_id = message['requestId']



[tinkerpop] 01/02: Merge branch 'pr-1285' into TINKERPOP-1641

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 85d5bcfc8d64f768e1805d1a6f580e1b1e9bf32f
Merge: 1657958 e4f1644
Author: Stephen Mallette 
AuthorDate: Tue May 26 10:30:05 2020 -0400

Merge branch 'pr-1285' into TINKERPOP-1641

 .travis.yml|   1 +
 CHANGELOG.asciidoc |   3 +
 docker/Dockerfile  |   4 +-
 docker/gremlin-server.sh   |   3 +-
 docker/gremlin-server/Dockerfile.template  |   2 +-
 docker/gremlin-server/docker-entrypoint.sh |  63 -
 .../gremlin-server/gremlin-console-jaas.conf   |  18 +---
 .../gremlin-server-integration-krb5.yaml   |  66 ++
 docker/gremlin-server/krb5.conf|  29 ++
 docs/src/reference/gremlin-applications.asciidoc   |  39 +---
 docs/src/reference/gremlin-variants.asciidoc   |  31 ++-
 gremlin-dotnet/pom.xml |   5 +
 gremlin-javascript/pom.xml |   5 +
 gremlin-python/pom.xml |   9 +-
 .../main/python/gremlin_python/driver/client.py|   5 +-
 .../driver/driver_remote_connection.py |   7 +-
 .../main/python/gremlin_python/driver/protocol.py  | 101 ++---
 gremlin-python/src/main/python/setup.py|   5 +-
 gremlin-python/src/main/python/tests/conftest.py   |  57 +---
 .../src/main/python/tests/driver/test_client.py|  16 ++--
 .../tests/driver/test_driver_remote_connection.py  |  14 +--
 .../python/tests/structure/io/test_graphsonV2d0.py |  12 +--
 gremlin-server/pom.xml |   7 --
 .../gremlin/server/auth/Krb5Authenticator.java |   4 +-
 .../server/op/traversal/TraversalOpProcessor.java  |   7 ++
 .../server/GremlinServerAuditLogIntegrateTest.java |  66 +++---
 .../server/GremlinServerAuthKrb5IntegrateTest.java |  32 ---
 .../src/test/scripts/test-server-start.groovy  |  37 +++-
 .../src/test/scripts/test-server-stop.groovy   |   8 ++
 gremlin-test/pom.xml   |  23 +
 .../tinkerpop/gremlin/server/KdcFixture.java   |  56 
 31 files changed, 583 insertions(+), 152 deletions(-)




[GitHub] [tinkerpop] spmallette commented on a change in pull request #1285: Tinkerpop-1641 Kerberos authentication for gremlin-python

2020-05-28 Thread GitBox


spmallette commented on a change in pull request #1285:
URL: https://github.com/apache/tinkerpop/pull/1285#discussion_r432028944



##
File path: docs/src/reference/gremlin-applications.asciidoc
##
@@ -1076,7 +1076,8 @@ Gremlin-Console |PLAIN SASL (username/password) 
|3.0.0-incubating
 |Pluggable SASL |3.0.0-incubating
 |GSSAPI SASL (Kerberos) |3.3.0
 |Gremlin.NET |PLAIN SASL |3.3.0
-|Gremlin-Python |PLAIN SASL |3.2.2
+1.2+v|Gremlin-Python |PLAIN SASL |3.2.2

Review comment:
   Did you mean to have that "1.2+v" in there that way? Won't that break 
the table structure?





This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[tinkerpop] 02/02: TINKERPOP-1641 added exclusion for asm

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit bd4bb5b80586d5e88aa529f7489c99a152b891f2
Author: Stephen Mallette 
AuthorDate: Thu May 28 14:10:09 2020 -0400

TINKERPOP-1641 added exclusion for asm

Kirby was conflicting with neo4j
---
 neo4j-gremlin/pom.xml | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/neo4j-gremlin/pom.xml b/neo4j-gremlin/pom.xml
index a227e22..d9c959b 100644
--- a/neo4j-gremlin/pom.xml
+++ b/neo4j-gremlin/pom.xml
@@ -42,6 +42,13 @@ limitations under the License.
 gremlin-test
 ${project.version}
 test
+ 
+
+
+org.ow2.asm
+asm
+
+
 
 
 org.slf4j



[tinkerpop] branch TINKERPOP-1641 created (now bd4bb5b)

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch TINKERPOP-1641
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


  at bd4bb5b  TINKERPOP-1641 added exclusion for asm

This branch includes the following new commits:

 new 85d5bcf  Merge branch 'pr-1285' into TINKERPOP-1641
 new bd4bb5b  TINKERPOP-1641 added exclusion for asm

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.




[tinkerpop] branch master updated (95c49cb -> 86a24ea)

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


from 95c49cb  Merge branch '3.4-dev'
 add cc3c5cb  Bump to Groovy 3.0
 new 86a24ea  Merge pull request #1288 from apache/TINKERPOP-2373

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.asciidoc |  3 ++-
 gremlin-groovy/pom.xml | 14 ++
 .../jsr223/ast/InterpreterModeASTTransformation.groovy |  2 +-
 .../groovy/jsr223/GremlinGroovyScriptEngineTest.java   |  2 +-
 .../groovy/util/DependencyGrabberIntegrateTest.java|  2 +-
 .../gremlin/server/GremlinServerIntegrateTest.java |  2 +-
 pom.xml|  4 ++--
 7 files changed, 22 insertions(+), 7 deletions(-)



[GitHub] [tinkerpop] spmallette merged pull request #1288: Bump to Groovy 3.0

2020-05-28 Thread GitBox


spmallette merged pull request #1288:
URL: https://github.com/apache/tinkerpop/pull/1288


   



This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org




[tinkerpop] 01/01: Merge pull request #1288 from apache/TINKERPOP-2373

2020-05-28 Thread spmallette
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 86a24ea5dc9745ec638986df657e9045ff462c91
Merge: 95c49cb cc3c5cb
Author: stephen mallette 
AuthorDate: Thu May 28 11:23:39 2020 -0400

Merge pull request #1288 from apache/TINKERPOP-2373

Bump to Groovy 3.0

 CHANGELOG.asciidoc |  3 ++-
 gremlin-groovy/pom.xml | 14 ++
 .../jsr223/ast/InterpreterModeASTTransformation.groovy |  2 +-
 .../groovy/jsr223/GremlinGroovyScriptEngineTest.java   |  2 +-
 .../groovy/util/DependencyGrabberIntegrateTest.java|  2 +-
 .../gremlin/server/GremlinServerIntegrateTest.java |  2 +-
 pom.xml|  4 ++--
 7 files changed, 22 insertions(+), 7 deletions(-)




svn commit: r1878232 [14/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/handler/package-tree.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/handler/package-tree.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/handler/package-tree.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/handler/package-tree.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.apache.tinkerpop.gremlin.server.handler Class Hierarchy (Apache 
TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -97,16 +97,6 @@
 
 ChannelInboundHandlerAdapter
 
-org.apache.tinkerpop.gremlin.server.handler.WsAndHttpChannelizerHandler
-
-
-ChannelInboundHandlerAdapter
-
-org.apache.tinkerpop.gremlin.server.handler.HttpGremlinEndpointHandler
-
-
-ChannelInboundHandlerAdapter
-
 org.apache.tinkerpop.gremlin.server.handler.AbstractAuthenticationHandler
 
 org.apache.tinkerpop.gremlin.server.handler.HttpBasicAuthenticationHandler
@@ -119,6 +109,16 @@
 
 
 
+ChannelInboundHandlerAdapter
+
+org.apache.tinkerpop.gremlin.server.handler.HttpGremlinEndpointHandler
+
+
+ChannelInboundHandlerAdapter
+
+org.apache.tinkerpop.gremlin.server.handler.WsAndHttpChannelizerHandler
+
+
 org.apache.tinkerpop.gremlin.server.handler.Frame
 org.apache.tinkerpop.gremlin.server.handler.StateKey
 

Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/op/session/Session.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/op/session/Session.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/op/session/Session.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/op/session/Session.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Session (Apache TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -178,19 +178,25 @@ extends http://docs.oracle.com/
 getSessionId() 
 
 
+boolean
+isBoundTo(Channel channel)
+Determines if the supplied Channel object is 
the same as the one bound to the Session.
+
+
+
 void
 kill(boolean force)
 Kills the session and rollback any uncommitted changes on 
transactional graphs.
 
 
-
+
 void
 manualKill(boolean force)
 Stops the session with call to kill(boolean)
 but also stops the session expiration call which ensures
  that the session is only killed once.
 
 
-
+
 void
 touch() 
 
@@ -235,6 +241,16 @@ extends http://docs.oracle.com/
 
 
 Method Detail
+
+
+
+
+
+isBoundTo
+public boolean isBoundTo(Channel channel)
+Determines if the supplied Channel object is 
the same as the one bound to the Session.
+
+
 
 
 

Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Graph.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Graph.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Graph.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Graph.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Interface org.apache.tinkerpop.gremlin.structure.Graph (Apache 
TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -1479,6 +1479,10 @@
 
 
 
+protected void
+ProfileTest.afterLoadGraphWith(Graph graph) 
+
+
 void
 ProgramTest.TestProgram.loadState(Graph graph,
  Configuration configuration) 

Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Vertex.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Vertex.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Vertex.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/structure/class-use/Vertex.html
 Thu

svn commit: r1878232 [10/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Cluster.Builder (Apache TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":42,"i11":42,"i12":42,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":42,"i40":10,"i41":10,"i42":10,"i43":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":42,"i11":42,"i12":42,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":42,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":42,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -271,117 +271,126 @@ extends http://docs.oracle.com/
 
 
 Cluster.Builder
+maxWaitForClose(int maxWait)
+The amount of time in milliseconds to wait the connection 
to close before timing out where the default
+ value is 3000.
+
+
+
+Cluster.Builder
 maxWaitForConnection(int maxWait)
 The maximum amount of time to wait for a connection to be 
borrowed from the connection pool.
 
 
-
+
 Cluster.Builder
 maxWaitForSessionClose(int maxWait)
-If the connection is using a "session" this setting 
represents the amount of time in milliseconds to wait
- for that session to close before timing out where the default value is 
3000.
+Deprecated. 
+As of release 3.3.11, 
replaced in essence by maxWaitForClose(int)
 though behavior
+ described here is still maintained.
+
 
 
-
+
 Cluster.Builder
 minConnectionPoolSize(int minSize)
 The minimum size of the ConnectionPool.
 
 
-
+
 Cluster.Builder
 minInProcessPerConnection(int minInProcessPerConnection)
 The minimum number of in-flight requests that can occur on 
a Connection before it is considered
  for closing on return to the ConnectionPool.
 
 
-
+
 Cluster.Builder
 minSimultaneousUsagePerConnection(int minSimultaneousUsagePerConnection)
 The minimum number of times that a Connection 
should be borrowed from the pool before it falls
  under consideration for closing.
 
 
-
+
 Cluster.Builder
 nioPoolSize(int nioPoolSize)
 Size of the pool for handling request/response 
operations.
 
 
-
+
 Cluster.Builder
 path(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String path)
 The path to the Gremlin service on the host which is 
"/gremlin" by default.
 
 
-
+
 Cluster.Builder
 port(int port)
 Sets the port that the Gremlin Servers will be listening 
on.
 
 
-
+
 Cluster.Builder
 protocol(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String protocol)
 Sets the AuthProperties.Property.PROTOCOL
 properties for authentication to Gremlin Server.
 
 
-
+
 Cluster.Builder
 reconnectInterval(int interval)
 Time in milliseconds to wait between retries when 
attempting to reconnect to a dead host.
 
 
-
+
 Cluster.Builder
 resultIterationBatchSize(int size)
 Override the server setting that determines how many 
results are returned per batch.
 
 
-
+
 Cluster.Builder
 serializer(MessageSerializer serializer)
 Sets the MessageSerializer to 
use.
 
 
-
+
 Cluster.Builder
 serializer(Serializers mimeType)
 Set the MessageSerializer to use 
via the Serializers 
enum.
 
 
-
+
 Cluster.Builder
 serializer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String mimeType)
 Set the MessageSerializer to use 
given the exact name of a Serializers 
enum.
 
 
-
+
 Cluster.Builder
 sslCipherSuites(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListString> sslCipherSuites)
 A list of cipher suites to enable.
 
 
-
+
 Cluster.Buil

svn commit: r1878232 [6/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/index.json
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/index.json?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/index.json (original)
+++ tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/index.json Thu May 28 14:59:52 2020
@@ -1,602 +1,602 @@
 {
-  "index.html": {
-"href": "index.html",
-"title": "Gremlin.Net | Apache TinkerPop - Gremlin.NET API Docs",
-"keywords": "Gremlin.Net  Apache TinkerPop™ is a 
graph computing framework for both graph databases (OLTP) and graph analytic 
systems (OLAP). Gremlin is the graph traversal language of TinkerPop. It can be 
described as a function
 al, data-flow language that enables users to succinctly express complex 
traversals on (or queries of) their application's property graph. Gremlin.Net 
implements Gremlin within the C# language. It targets .NET Standard and can 
therefore be used on different operating systems and with different .NET 
frameworks, such as .NET Framework and .NET Core. nuget install Gremlin.Net 
Please see the reference documentation at Apache TinkerPop for more 
information."
-  },
-  "api/Gremlin.Net.Process.Traversal.GraphTraversal-2.html": {
-"href": "api/Gremlin.Net.Process.Traversal.GraphTraversal-2.html",
-"title": "Class GraphTraversal | Apache TinkerPop - Gremlin.NET API 
Docs",
-"keywords": "Class GraphTraversal Graph traversals are the primary 
way in which graphs are processed. Inheritance System.Object DefaultTraversal 
 GraphTraversal Implements ITraversal  ITraversal IEnumerator 
IEnumerator  Inherited Members DefaultTraversal.Bytecode 
DefaultTraversal.SideEffects DefaultTraversal.Traversers 
DefaultTraversal.ITraversal.Iterate() DefaultTraversal.TraversalStrategies DefaultTraversal.Dispose() DefaultTraversal.MoveNext() DefaultTraversal.Reset() DefaultTraversal.Current 
DefaultTraversal.HasNext() DefaultTraversal.Next() 
DefaultTraversal.Next(Int32) DefaultTraversal.Iterate() 
DefaultTraversal.NextTraverser() DefaultTraversal.ToList() 
DefaultTraversal.ToSet() DefaultTraversal.Dispose(Boolean) 
DefaultTraversal.Promise(Func, TReturn>) 
System.Object.Equals(System.Object) System.Object.Equals(System.O
 bject, System.Object) System.Object.GetHashCode() System.Object.GetType() 
System.Object.MemberwiseClone() System.Object.ToString() 
System.Object.ReferenceEquals(System.Object, System.Object) Namespace : 
Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class 
GraphTraversal : DefaultTraversal, ITraversal, ITraversal, 
IEnumerator, IEnumerator Type Parameters Name Description S E Constructors 
GraphTraversal() Initializes a new instance of the GraphTraversal class. 
Declaration public GraphTraversal() 
GraphTraversal(ICollection, Bytecode) Initializes a new 
instance of the GraphTraversal class. Declaration public 
GraphTraversal(ICollection traversalStrategies, Bytecode 
bytecode) Parameters Type Name Description ICollection < ITraversalStrategy > 
traversalStrategies The traversal strategies to be used by this graph traversal 
at evaluation time. Bytecode bytecode The Bytecode associated with the co
 nstruction of this graph traversal. Methods AddE(ITraversal) Adds the addE 
step to this GraphTraversal . Declaration public GraphTraversal 
AddE(ITraversal edgeLabelTraversal) Parameters Type Name Description ITraversal 
edgeLabelTraversal Returns Type Description GraphTraversal  
AddE(String) Adds the addE step to this GraphTraversal . Declaration 
public GraphTraversal AddE(string edgeLabel) Parameters Type Name 
Description System.String edgeLabel Returns Type Description GraphTraversal  AddV() Adds the addV step to this GraphTraversal . Declaration 
public GraphTraversal AddV() Returns Type Description GraphTraversal 
 AddV(ITraversal) Adds the addV step to this GraphTraversal . 
Declaration public GraphTraversal AddV(ITraversal 
vertexLabelTraversal) Parameters Type Name Description ITraversal 
vertexLabelTraversal Returns Type Description GraphTraversal  
AddV(String) Adds the addV
  step to this GraphTraversal . Declaration public GraphTraversal AddV(string vertexLabel) Parameters Type Name Description System.String 
vertexLabel Returns Type Description GraphTraversal  
Aggregate(Scope, String) Adds the aggregate step to this GraphTraversal . 
Declaration public GraphTraversal Aggregate(Scope scope, string 
sideEffectKey) Parameters Type Name Description Scope scope System.String 
sideEffectKey Returns Type Description GraphTraversal  Aggregate(String) 
Adds the aggregate step to this GraphTraversal . Declaration public 
GraphTraversal Aggregate(string sideEffectKey) Parameters Type Name 
Description System.String sideEffectKey Returns Type Description GraphTraversal 
 And(ITraversal[]) Adds the and step to this GraphTraversal . 
Declaration public GraphTraversal And(params ITraversal[]

svn commit: r1878232 [15/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/P.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/P.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/P.html (original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/P.html Thu May 28 14:59:52 2020
@@ -1840,7 +1840,7 @@
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Thu May 28 2020 10:57:33 GMT-0400 (EDT)
 
 
  prettyPrint(); 

Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/Path.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/Path.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/Path.html (original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/Path.html Thu May 28 14:59:52 2020
@@ -231,7 +231,7 @@
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Thu May 28 2020 10:57:33 GMT-0400 (EDT)
 
 
  prettyPrint(); 

Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/PlainTextSaslAuthenticator.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/PlainTextSaslAuthenticator.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/PlainTextSaslAuthenticator.html 
(original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/PlainTextSaslAuthenticator.html Thu 
May 28 14:59:52 2020
@@ -443,7 +443,7 @@
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Thu May 28 2020 10:57:33 GMT-0400 (EDT)
 
 
  prettyPrint(); 

Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteConnection.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteConnection.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteConnection.html (original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteConnection.html Thu May 28 
14:59:52 2020
@@ -529,7 +529,7 @@ returning results.
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Thu May 28 2020 10:57:33 GMT-0400 (EDT)
 
 
  prettyPrint(); 

Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteStrategy.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteStrategy.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteStrategy.html (original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteStrategy.html Thu May 28 
14:59:52 2020
@@ -294,7 +294,7 @@
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Thu May 28 2020 10:57:33 GMT-0400 (EDT)
 
 
  prettyPrint(); 

Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteTraversal.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteTraversal.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteTraversal.html (original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/RemoteTraversal.html Thu May 28 
14:59:52 2020
@@ -159,7 +159,7 @@
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Thu May 28 2020 10:57:33 GMT-0400 (EDT)
 
 
  prettyPrint(); 

Modified: tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/ResponseError.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/ResponseError.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/ResponseError.html (original)
+++ tinkerpop/site/jsdocs/3.4.7-SNAPSHOT/ResponseError.html Thu May 28 14:59:52 
2020
@@ -349,7 +349,7 @@
 
 
 
-Documentation generated by https://github.com/jsdoc3/jsdoc";>JSDoc 
3.5.5 on Mon Feb 24 2020 15:38:12 GMT-0500 (EST)
+Documentation gen

svn commit: r1878232 [9/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/class-use/LoadGraphWith.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/class-use/LoadGraphWith.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/class-use/LoadGraphWith.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/class-use/LoadGraphWith.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class org.apache.tinkerpop.gremlin.LoadGraphWith (Apache 
TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -632,6 +632,14 @@
 
 
 void
+CoreTraversalTest.shouldThrowNiceExceptionWhenMapKeyIsNotResolvingToNumberInMathStep() 
+
+
+void
+CoreTraversalTest.shouldThrowNiceExceptionWhenMapKeyNotFoundInMathStep() 
+
+
+void
 CoreTraversalTest.shouldTraverseIfAutoTxEnabledAndOriginalTxIsClosed() 
 
 
@@ -1360,281 +1368,285 @@
 
 
 void
-HasTest.g_V_hasXperson_name_containingXoX_andXltXmXXX() 
+HasTest.g_V_hasXp_neqXvXX() 
 
 
 void
-HasTest.g_V_hasXperson_name_markoX_age() 
+HasTest.g_V_hasXperson_name_containingXoX_andXltXmXXX() 
 
 
 void
-HasTest.g_V_in_hasIdXneqX1XX() 
+HasTest.g_V_hasXperson_name_markoX_age() 
 
 
 void
-RangeTest.g_V_localXoutE_limitX1X_inVX_limitX3X() 
+HasTest.g_V_in_hasIdXneqX1XX() 
 
 
 void
-SampleTest.g_V_localXoutE_sampleX1X_byXweightXX() 
+RangeTest.g_V_localXoutE_limitX1X_inVX_limitX3X() 
 
 
 void
-HasTest.g_V_notXhasIdXwithinXemptyXXX_count() 
+SampleTest.g_V_localXoutE_sampleX1X_byXweightXX() 
 
 
 void
-OrTest.g_V_orXhasXage_gt_27X__outE_count_gte_2X_name() 
+HasTest.g_V_notXhasIdXwithinXemptyXXX_count() 
 
 
 void
-OrTest.g_V_orXoutEXknowsX__hasXlabel_softwareX_or_hasXage_gte_35XX_name() 
+OrTest.g_V_orXhasXage_gt_27X__outE_count_gte_2X_name() 
 
 
 void
-DedupTest.g_V_out_asXxX_in_asXyX_selectXx_yX_byXnameX_fold_dedupXlocal_x_yX_unfold() 
+OrTest.g_V_orXoutEXknowsX__hasXlabel_softwareX_or_hasXage_gte_35XX_name() 
 
 
 void
-DedupTest.g_V_out_in_valuesXnameX_fold_dedupXlocalX_unfold() 
+DedupTest.g_V_out_asXxX_in_asXyX_selectXx_yX_byXnameX_fold_dedupXlocal_x_yX_unfold() 
 
 
 void
-DedupTest.g_V_outE_asXeX_inV_asXvX_selectXeX_order_byXweight_ascX_selectXvX_valuesXnameX_dedup() 
+DedupTest.g_V_out_in_valuesXnameX_fold_dedupXlocalX_unfold() 
 
 
 void
-DropTest.g_V_outE_drop() 
+DedupTest.g_V_outE_asXeX_inV_asXvX_selectXeX_order_byXweight_ascX_selectXvX_valuesXnameX_dedup() 
 
 
 void
-RangeTest.g_V_outE_valuesXweightX_fold_orderXlocalX_skipXlocal_2X() 
+DropTest.g_V_outE_drop() 
 
 
 void
-HasTest.g_V_outXcreatedX_hasXname__mapXlengthX_isXgtX3XXX_name() 
+RangeTest.g_V_outE_valuesXweightX_fold_orderXlocalX_skipXlocal_2X() 
 
 
 void
-DropTest.g_V_properties_drop() 
+HasTest.g_V_outXcreatedX_hasXname__mapXlengthX_isXgtX3XXX_name() 
 
 
 void
-DropTest.g_V_properties_propertiesXstartTimeX_drop() 
+DropTest.g_V_properties_drop() 
 
 
 void
-SimplePathTest.g_V_repeatXboth_simplePathX_timesX3X_path() 
+DropTest.g_V_properties_propertiesXstartTimeX_drop() 
 
 
 void
-RangeTest.g_V_repeatXbothX_timesX3X_rangeX5_11X() 
+SimplePathTest.g_V_repeatXboth_simplePathX_timesX3X_path() 
 
 
 void
+RangeTest.g_V_repeatXbothX_timesX3X_rangeX5_11X() 
+
+
+void
 TailTest.g_V_repeatXbothX_timesX3X_tailX7X()
 Scenario: Global scope, using repeat (BULK)
 
 
-
+
 void
 DedupTest.g_V_repeatXdedupX_timesX2X_count() 
 
-
+
 void
 TailTest.g_V_repeatXin_outX_timesX3X_tailX7X_count()
 Scenario: Global scope, using repeat (excess BULK)
 
 
-
+
 void
 IsTest.g_V_valuesXageX_isX32X() 
 
-
+
 void
 IsTest.g_V_valuesXageX_isXgte_29X_isXlt_34X() 
 
-
+
 void
 IsTest.g_V_valuesXageX_isXlte_30X() 
 
-
+
 void
 TailTest.g_V_valuesXnameX_order_tail()
 Scenario: Default is global, N=1
 
 
-
+
 void
 TailTest.g_V_valuesXnameX_order_tailX2X()
 Scenario: Default scope is global
 
 
-
+
 void
 TailTest.g_V_valuesXnameX_order_tailX7X()
 Scenario: Global scope, not enough elements
 
 
-
+
 void
 TailTest.g_V_valuesXnameX_order_tailXglobal_2X()
 Scenario: Global scope
 
 
-
+
 void
 IsTest.g_V_whereXinXcreatedX_count_isX1XX_valuesXnameX() 
 
-
+
 void
 IsTest.g_V_whereXinXcreatedX_count_isXgte_2XX_valuesXnameX() 
 
-
+
 void
 WhereTest.g_V_whereXnotXoutXcreatedXXX_name() 
 
-
+
 void
 WhereTest.g_V_whereXoutXcreatedX_and_outXknowsX_or_inXknowsXX_valuesXnameX() 
 
-
+
 void
 HasTest.g_VX1AsStringX_out_hasXid_2AsStringX() 
 
-
+
 void
 WhereTest.g_VX1X_asXaX_out_hasXageX_whereXgtXaXX_byXageX_name() 
 
-
+
 void
 CyclicPathTest.g_VX1X_asXaX_outXcreatedX_asXbX_inXcreatedX_asXcX_cyclicPath_fromXaX_toXbX_path() 
 
-
+
 void
 WhereTest.g_VX1X_asXaX_outXcreatedX_inXcreatedX_asXbX_whereXa_neqXbXX_name() 
 
-
+
 void
 WhereTest.g_VX1X_asXaX_outXcreatedX_inXcreatedX_asXbX_whereXasXbX_outXcreatedX_hasXname_rippleXX_valuesXage_nameX() 
 
-
+
 void
 WhereTest.g_VX1X_asXaX_outXcreatedX_inXcreat

svn commit: r1878232 [11/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/CoreTraversalTest.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/CoreTraversalTest.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/CoreTraversalTest.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/CoreTraversalTest.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 CoreTraversalTest (Apache TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -234,10 +234,18 @@ extends 
 void
-shouldTraverseIfAutoTxEnabledAndOriginalTxIsClosed() 
+shouldThrowNiceExceptionWhenMapKeyIsNotResolvingToNumberInMathStep() 
 
 
 void
+shouldThrowNiceExceptionWhenMapKeyNotFoundInMathStep() 
+
+
+void
+shouldTraverseIfAutoTxEnabledAndOriginalTxIsClosed() 
+
+
+void
 shouldTraverseIfManualTxEnabledAndOriginalTxIsClosed() 
 
 
@@ -431,12 +439,30 @@ extends 
 
 
-
+
 
 shouldAllowEmbeddedRemoteConnectionUsage
 public void shouldAllowEmbeddedRemoteConnectionUsage()
 
 
+
+
+
+
+
+shouldThrowNiceExceptionWhenMapKeyNotFoundInMathStep
+public void shouldThrowNiceExceptionWhenMapKeyNotFoundInMathStep()
+
+
+
+
+
+
+
+shouldThrowNiceExceptionWhenMapKeyIsNotResolvingToNumberInMathStep
+public void shouldThrowNiceExceptionWhenMapKeyIsNotResolvingToNumberInMathStep()
+
+
 
 
 

Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/class-use/Traversal.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/class-use/Traversal.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/class-use/Traversal.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/class-use/Traversal.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Interface 
org.apache.tinkerpop.gremlin.process.traversal.Traversal (Apache TinkerPop 
3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -2568,6 +2568,14 @@
 
 
 abstract Traversal
+HasTest.get_g_V_hasXp_neqXvXX() 
+
+
+Traversal
+HasTest.Traversals.get_g_V_hasXp_neqXvXX() 
+
+
+abstract Traversal
 HasTest.get_g_V_hasXperson_name_containingXoX_andXltXmXXX() 
 
 
@@ -5449,6 +5457,14 @@
 CoalesceTest.Traversals.get_g_VX1X_coalesceXoutXknowsX_outXcreatedXX_valuesXnameX(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object v1Id) 
 
 
+abstract TraversalMap.EntryObject,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>>
+OrderTest.get_g_VX1X_elementMap_orderXlocalX_byXkeys_descXunfold(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object v1Id) 
+
+
+TraversalMap.EntryObject,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>>
+OrderTest.Traversals.get_g_VX1X_elementMap_orderXlocalX_byXkeys_descXunfold(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object v1Id) 
+
+
 abstract TraversalString>
 SelectTest.get_g_VX1X_groupXaX_byXconstantXaXX_byXnameX_selectXaX_selectXaX(http://docs.oracle.com/

svn commit: r1878232 [13/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 OrderTest (Apache TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":6,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":6,"i26":6,"i27":6,"i28":6,"i29":6,"i30":6,"i31":6,"i32":6,"i33":6,"i34":6,"i35":6,"i36":6,"i37":6,"i38":6,"i39":6,"i40":6,"i41":6,"i42":6,"i43":6,"i44":6,"i45":6,"i46":6,"i47":6,"i48":6,"i49":6,"i50":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -293,104 +293,116 @@ extends 
 void
-g_VX1X_hasXlabel_personX_mapXmapXint_ageXX_orderXlocalX_byXvalues_descX_byXkeys_ascX() 
+g_VX1X_elementMap_orderXlocalX_byXkeys_descXunfold() 
 
 
+void
+g_VX1X_hasXlabel_personX_mapXmapXint_ageXX_orderXlocalX_byXvalues_descX_byXkeys_ascX() 
+
+
 abstract TraversalMapString,Vertex>>
 get_g_V_asXaX_outXcreatedX_asXbX_order_byXshuffleX_selectXa_bX() 
 
-
+
 abstract TraversalMapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object>>
 get_g_V_asXvX_mapXbothE_weight_foldX_sumXlocalX_asXsX_selectXv_sX_order_byXselectXsX_descX() 
 
-
+
 abstract TraversalString>
 get_g_V_both_hasLabelXpersonX_order_byXage_descX_limitX5X_name() 
 
-
+
 abstract TraversalString>
 get_g_V_both_hasLabelXpersonX_order_byXage_descX_name() 
 
-
+
 abstract TraversalMapString,http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">List>>
 get_g_V_group_byXlabelX_byXname_order_byXdescX_foldX() 
 
-
+
 abstract TraversalList>
 get_g_V_hasLabelXpersonX_fold_orderXlocalX_byXageX() 
 
-
+
 abstract TraversalMapString,http://docs.oracle.com/javase/8/docs/api/java/lang/Number.html?is-external=true";
 title="class or interface in java.lang">Number>>
 get_g_V_hasLabelXpersonX_group_byXnameX_byXoutE_weight_sumX_orderXlocalX_byXvaluesX() 
 
-
+
 abstract TraversalMap.EntryString,http://docs.oracle.co

svn commit: r1878232 [8/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/ImportGremlinPlugin.Builder.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/ImportGremlinPlugin.Builder.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/ImportGremlinPlugin.Builder.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/ImportGremlinPlugin.Builder.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ImportGremlinPlugin.Builder (Apache TinkerPop 3.4.7-SNAPSHOT 
API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -162,10 +162,18 @@ extends http://docs.oracle.com/
 
 
 ImportGremlinPlugin.Builder
-methodImports(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString> methods) 
+fieldsImports(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString> fields) 
 
 
 ImportGremlinPlugin.Builder
+fieldsImports(http://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html?is-external=true";
 title="class or interface in 
java.lang.reflect">Field... fields) 
+
+
+ImportGremlinPlugin.Builder
+methodImports(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString> methods) 
+
+
+ImportGremlinPlugin.Builder
 methodImports(http://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Method.html?is-external=true";
 title="class or interface in 
java.lang.reflect">Method... methods) 
 
 
@@ -255,6 +263,24 @@ extends http://docs.oracle.com/
 public ImportGremlinPlugin.Builder enumImports(http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum... enums)
 
 
+
+
+
+
+
+fieldsImports
+public ImportGremlinPlugin.Builder fieldsImports(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString> fields)
+
+
+
+
+
+
+
+fieldsImports
+public ImportGremlinPlugin.Builder fieldsImports(http://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html?is-external=true";
 title="class or interface in java.lang.reflect">Field... fields)
+
+
 
 
 

Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/class-use/ImportGremlinPlugin.Builder.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/class-use/ImportGremlinPlugin.Builder.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/class-use/ImportGremlinPlugin.Builder.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/class-use/ImportGremlinPlugin.Builder.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Uses of Class 
org.apache.tinkerpop.gremlin.jsr223.ImportGremlinPlugin.Builder (Apache 
TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -131,6 +131,14 @@
 
 
 ImportGremlinPlugin.Builder
+ImportGremlinPlugin.Builder.fieldsImports(http://docs.oracle.com/javase/8/docs/api/java/util/Collection.html?is-external=true";
 title="class or interface in java.util">CollectionString> fields) 
+
+
+ImportGremlinPlugin.Builder
+ImportGremlinPlugin.Builder.fieldsImports(http://docs.oracle.com/javase/8/docs/api/java/lang/reflect/Field.html?is-external=true";
 title="class or interface in 
java.lang.reflect">Field... fields) 
+
+
+ImportGremlinPlugin.Builder
 ImportGremlinPlugin.Builder.methodImports(http://docs.oracle.com/

svn commit: r1878232 [2/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: tinkerpop/site/docs/3.4.7-SNAPSHOT/recipes/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.4.7-SNAPSHOT/recipes/index.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/docs/3.4.7-SNAPSHOT/recipes/index.html (original)
+++ tinkerpop/site/docs/3.4.7-SNAPSHOT/recipes/index.html Thu May 28 14:59:52 
2020
@@ -880,7 +880,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -900,8 +900,8 @@ provide some basic building blocks for v
 
 
 Recipes assume general familiarity with Gremlin and the Apache TinkerPop™ 
stack. Be sure to have read the
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/getting-started";>Getting
 Started tutorial and the
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/";>The
 Gremlin Console tutorial.
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/getting-started";>Getting
 Started tutorial and the
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/";>The
 Gremlin Console tutorial.
 
 
 
@@ -914,10 +914,10 @@ provide some basic building blocks for v
 traversal on the paths found between them. Consider the following examples 
using the modern toy graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -992,10 +992,10 @@ scenarios. For one such example, conside
 vertices:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1044,10 +1044,10 @@ to extract the known job, the company th
 the known person completed an application.
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1183,10 +1183,10 @@ demonstrate how some of these different
 edges associated to each vertex. The following examples use the modern toy 
graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1260,8 +1260,8 @@ OLAP traversals.
 Note
 
 
-The http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#group-step";>group
 step takes up to two separate
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#by-step";>by
 modulators. The first by() tells group()
+The https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#group-step";>group
 step takes up to two separate
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#by-step";>by
 modulators. The first by() tells group()
 what the key in the resulting Map will be (i.e. the value to 
group on). In the above examples, the by() is empty
 and as a result, the grouping will be on the incoming Vertex 
object itself. The second by() is the value to be
 stored in the Map for each key.
@@ -1281,10 +1281,10 @@ graph for demonstration purposes:
 
 
 
-  
-  console (groovy )
-  
-  groovy 
+  
+  console (groovy )
+  
+  groovy 
   
 
 
@@ -1397,7 +1397,7 @@ g.V().as(
 Since the betweeness centrality algorithm requires the shortest path between 
any pair of vertices in the graph,
 its practical applications are very limited. It’s recommended to use 
this algorithm only on small subgraphs (graphs like
-the http://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
+the https://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
 and 8049 edges already require a massive amount of compute resources to 
determine the shortest paths between all vertex
 pairs).
 
@@ -1412,10 +1412,10 @@ pairs).
 other reachable vertices in the graph. The following examples use the modern 
toy graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1473,7 +1473,7 @@ g.withSack(1f
 
 
 
-Defines a Gremlin http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#sack-step";>sack
 with a value of one.
+Defines a Gremlin https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#sack-step";>sack
 with a value of one.
 
 
 Traverses on both - incoming and outgoing - edges, avoiding cyclic paths.
@@ -1504,7 +1504,7 @@ g.withSack(1f
 
 Since the closeness centrality algorithm requires the shortest path between 
any pair of vertices in the graph,
 its practical applications are very limited. It’s recommended to use 
this algorithm only on small subgraphs (graphs like
-the http://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
+the https://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
 and 8049 edges already require a massive amount of compute resources to 
determine the shortest paths between all vertex
 pairs).
 
@@ -1521,10 +1521,10 @@ relative importance of adjacent vertices
 give it the highest rank. Consider the following example using the Grateful 
Dead graph:
 
 
-  

svn commit: r1878232 [1/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Author: spmallette
Date: Thu May 28 14:59:52 2020
New Revision: 1878232

URL: http://svn.apache.org/viewvc?rev=1878232&view=rev
Log:
Deploy docs for TinkerPop 3.4.7-SNAPSHOT

Modified:
tinkerpop/site/docs/3.4.7-SNAPSHOT/dev/developer/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/dev/future/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/dev/io/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/dev/provider/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/recipes/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/reference/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/getting-started/index.html

tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/gremlin-language-variants/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/gremlins-anatomy/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/index.html
tinkerpop/site/docs/3.4.7-SNAPSHOT/upgrade/index.html

tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/api/Gremlin.Net.Driver.GremlinClient.html

tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/api/Gremlin.Net.Driver.Remote.DriverRemoteConnection.html
tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/api/Gremlin.Net.Driver.Tokens.html
tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/index.json
tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/manifest.json
tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/xrefmap.yml
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/deprecated-list.html
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/index-all.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/Cluster.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/class-use/Cluster.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/ImportGremlinPlugin.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/jsr223/class-use/ImportGremlinPlugin.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/computer/package-tree.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/package-tree.html
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/core/overview-tree.html
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/deprecated-list.html
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/index-all.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/class-use/LoadGraphWith.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/class-use/Cluster.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/ser/package-tree.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/jsr223/ImportGremlinPlugin.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/jsr223/class-use/ImportGremlinPlugin.Builder.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/package-tree.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/computer/package-tree.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/CoreTraversalTest.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/class-use/Traversal.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/filter/HasTest.Traversals.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/filter/HasTest.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.Traversals.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.Traversals.html

tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.

svn commit: r1878232 [3/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: tinkerpop/site/docs/3.4.7-SNAPSHOT/reference/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.4.7-SNAPSHOT/reference/index.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/docs/3.4.7-SNAPSHOT/reference/index.html (original)
+++ tinkerpop/site/docs/3.4.7-SNAPSHOT/reference/index.html Thu May 28 14:59:52 
2020
@@ -863,6 +863,7 @@ table.CodeRay td.code>pre{padding:0}
 Graph Traversal Steps
 
 General Steps
+Start Steps
 Terminal Steps
 AddEdge Step
 AddVertex Step
@@ -975,7 +976,7 @@ table.CodeRay td.code>pre{padding:0}
 ElementIdStrategy
 EventStrategy
 PartitionStrategy
-ReadOnlyStrategy
+ReadOnlyStrategy
 SubgraphStrategy
 
 
@@ -1231,7 +1232,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -1372,7 +1373,7 @@ realized realizations are just as real.
 
 
 For more information about differences between TinkerPop 3.x and earlier 
versions, please see the
-link:http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/upgrade/#appendix
+link:https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/upgrade/#appendix
 
 
 
@@ -1394,10 +1395,10 @@ The Reference Documentation makes some g
 They have a sense of what a graph is - not sure? see http://kelvinlawrence.net/book/Gremlin-Graph-Guide.html#whygraph";>Practical
 Gremlin - Why Graph?
 
 
-They know what it means for a graph system to be TinkerPop-enabled - not 
sure? see http://tinkerpop.apache.org/providers.html";>TinkerPop-enabled 
Providers
+They know what it means for a graph system to be TinkerPop-enabled - not 
sure? see https://tinkerpop.apache.org/providers.html";>TinkerPop-enabled 
Providers
 
 
-They know what the role of Gremlin is - not sure? see link:http://tinkerpop.apache.org/gremlin.html";>Introduction to Gremlin
+They know what the role of Gremlin is - not sure? see link:https://tinkerpop.apache.org/gremlin.html";>Introduction to Gremlin
 
 
 
@@ -1470,14 +1471,14 @@ graph providers.
 
 
 
-New users should not ignore TinkerPop’s http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/getting-started/";>Getting
 Started
-tutorial or http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/";>The
 Gremlin Console tutorial.
+New users should not ignore TinkerPop’s https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/getting-started/";>Getting
 Started
+tutorial or https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/";>The
 Gremlin Console tutorial.
 Both contain a large set of basic information and tips that can help readers 
avoid some general pitfalls early on.
 Both also focus on Gremlin usage in the Gremlin Console, which tends to be a 
critical tool for Gremlin developers of
 any development background.
 
 
-More advanced and experience users will appreciate http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/recipes/";>Gremlin 
Recipes
+More advanced and experience users will appreciate https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/recipes/";>Gremlin 
Recipes
 which provide examples of common Gremlin traversal patterns.
 
 
@@ -1531,7 +1532,7 @@ TinkerPop0 back in 2009 (i.e. the good o
 
 
 All of the toy graphs available in TinkerPop are described in
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/#toy-graphs";>The
 Gremlin Console tutorial.
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/the-gremlin-console/#toy-graphs";>The
 Gremlin Console tutorial.
 
 
 
@@ -1545,7 +1546,7 @@ structure is analyzed. The typical form
 
 
  TinkerPop’s role in graph computing is to provide the 
appropriate
-interfaces for http://tinkerpop.apache.org/providers.html";>graph 
providers and users to interact with graphs over
+interfaces for https://tinkerpop.apache.org/providers.html";>graph 
providers and users to interact with graphs over
 their structure and process.  When a graph system implements the TinkerPop 
structure and process
 http://en.wikipedia.org/wiki/Application_programming_interface";>APIs, 
their technology is considered
 TinkerPop-enabled and becomes nearly indistinguishable from any other 
TinkerPop-enabled graph system save for their
@@ -1568,10 +1569,10 @@ license. Thus, be sure to respect the li
 
 
 
-Generally speaking, the structure or "graph" API is meant for http://tinkerpop.apache.org/providers.html";>graph providers
+Generally speaking, the structure or "graph" API is meant for https://tinkerpop.apache.org/providers.html";>graph providers
 who are implementing the TinkerPop interfaces and the process or "traversal" 
API (i.e. Gremlin) is meant for end-users
 who are utilizing a graph system from a graph provider. While the components 
of the process API are itemized below,
-they are described in greater detail in the http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/tutorials/gremlins-anatomy/";>Gremlin’s
 Anatomy
+they are described in greater detail in 

svn commit: r1878232 [12/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/filter/HasTest.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/filter/HasTest.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/filter/HasTest.html
 (original)
+++ 
tinkerpop/site/javadocs/3.4.7-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/filter/HasTest.html
 Thu May 28 14:59:52 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 HasTest (Apache TinkerPop 3.4.7-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":6,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":6,"i56":6,"i57":6,"i58":6,"i59":6,"i60":6,"i61":6,"i62":6,"i63":6,"i64":6,"i65":6,"i66":6,"i67":6,"i68":6,"i69":6,"i70":6,"i71":6,"i72":6,"i73":6,"i74":6,"i75":6,"i76":6,"i77":6,"i78":6,"i79":6,"i80":6,"i81":6,"i82":6,"i83":6,"i84":6,"i85":6,"i86":6,"i87":6,"i88":6,"i89":6,"i90":6,"i91":6,"i92":6,"i93":6,"i94":6,"i95":6,"i96":6,"i97":6,"i98":6,"i99":6,"i100":6,"i101":6};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -343,268 +343,276 @@ extends 
 void
-g_V_hasXperson_name_containingXoX_andXltXmXXX() 
+g_V_hasXp_neqXvXX() 
 
 
 void
-g_V_hasXperson_name_markoX_age() 
+g_V_hasXperson_name_containingXoX_andXltXmXXX() 
 
 
 void
-g_V_in_hasIdXneqX1XX() 
+g_V_hasXperson_name_markoX_age() 
 
 
 void
-g_V_notXhasIdXwithinXemptyXXX_count() 
+g_V_in_hasIdXneqX1XX() 
 
 
 void
-g_V_outXcreatedX_hasXname__mapXlengthX_isXgtX3XXX_name() 
+g_V_notXhasIdXwithinXemptyXXX_count() 
 
 
 void
-g_VX1AsStringX_out_hasXid_2AsStringX() 
+g_V_outXcreatedX_hasXname__mapXlengthX_isXgtX3XXX_name() 
 
 
 void
-g_VX1X_hasXage_gt_30X() 
+g_VX1AsStringX_out_hasXid_2AsStringX() 
 
 
 void
-g_VX1X_hasXcircumferenceX() 
+g_VX1X_hasXage_gt_30X() 
 
 
 void
-g_VX1X_hasXname_markoX() 
+g_VX1X_hasXcircumferenceX() 
 
 
 void
-g_VX1X_hasXnameX() 
+g_VX1X_hasXname_markoX() 
 
 
 void
-g_VX1X_out_hasXid_2_3X() 
+g_VX1X_hasXnameX() 
 
 
 void
-g_VX1X_out_hasXid_2AsString_3AsStringX() 
+g_VX1X_out_hasXid_2_3X() 
 
 
 void
-g_VX1X_out_hasXid_2X() 
+g_VX1X_out_hasXid_2AsString_3AsStringX() 
 
 
 void
-g_VX1X_out_hasXid_lt_3X() 
+g_VX1X_out_hasXid_2X() 
 
 
 void
-g_VX1X_outE_hasXweight_inside_0_06X_inV() 
+g_VX1X_out_hasXid_lt_3X() 
 
 
 void
-g_VX2X_hasXname_markoX() 
+g_VX1X_outE_hasXweight_inside_0_06X_inV() 
 
 
 void
-g_VX4X_hasXage_gt_30X() 
+g_VX2X_hasXname_markoX() 
 
 
 void
-g_VXv1X_hasXage_gt_30X() 
+g_VX4X_hasXage_gt_30X() 
 
 
 void
-g_VXv4X_hasXage_gt_30X() 
+g_VXv1X_hasXage_gt_30X() 
 
 
+void
+g_VXv4X_hasXage_gt_30X() 
+
+
 abstract Traversal
 get_g_E_hasLabelXknowsX() 
 
-
+
 abstract Traversal
 get_g_E_hasLabelXuses_traversesX() 
 
-
+
 abstract Traversal
 get_g_EX11X_outV_outE_hasXid_10X(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object e11Id,
 http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object e8Id) 
 
-
+
 abstract Traversal
 get_g_EX7X_hasLabelXknowsX(http://docs.oracle.com/javase/8/docs/api/java/lang/Object.html?is-external=true";
 title="class or interface in java.lang">Object e7Id) 
 
-
+
 abstract Traversal

svn commit: r1878232 [5/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: tinkerpop/site/docs/3.4.7-SNAPSHOT/upgrade/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.4.7-SNAPSHOT/upgrade/index.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/docs/3.4.7-SNAPSHOT/upgrade/index.html (original)
+++ tinkerpop/site/docs/3.4.7-SNAPSHOT/upgrade/index.html Thu May 28 14:59:52 
2020
@@ -807,7 +807,11 @@ table.CodeRay td.code>pre{padding:0}
 
 TinkerPop 3.4.7
 
-Upgrading for Users
+Upgrading for Users
+
+Clear Screen Command
+
+
 
 
 TinkerPop 3.4.6
@@ -933,7 +937,17 @@ table.CodeRay td.code>pre{padding:0}
 
 TinkerPop 3.3.11
 
-Upgrading for Users
+Upgrading for Users
+
+GLV Sessions
+Deprecate 
maxWaitForSessionClose
+
+
+Upgrading for Providers
+
+Gremlin Driver Providers
+
+
 
 
 TinkerPop 3.3.10
@@ -981,7 +995,7 @@ table.CodeRay td.code>pre{padding:0}
 Removed gperfutils 
Dependency
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1007,7 +1021,7 @@ table.CodeRay td.code>pre{padding:0}
 RangeStep Optimizing 
Strategy
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1055,7 +1069,7 @@ table.CodeRay td.code>pre{padding:0}
 Upgrade Neo4j
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1083,7 +1097,7 @@ table.CodeRay td.code>pre{padding:0}
 ScriptInputFormat
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Database Providers
@@ -1110,7 +1124,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Javascript Script 
Submission
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1136,7 +1150,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin.Net: 
Traversal Predicate Classes Merged
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 
@@ -1158,7 +1172,7 @@ table.CodeRay td.code>pre{padding:0}
 MutationListener Changes
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Direction.BOTH 
Requires Duplication of Self-Edges
 
@@ -1173,7 +1187,7 @@ table.CodeRay td.code>pre{padding:0}
 WsAndHttpChannelizer
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 ReferenceVertex Label
 
@@ -1196,7 +1210,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin-Python Driver
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1215,7 +1229,7 @@ table.CodeRay td.code>pre{padding:0}
 SSL Client Authentication
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 Drivers Providers
@@ -1236,7 +1250,7 @@ table.CodeRay td.code>pre{padding:0}
 IO Reference Documentation
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 
@@ -1254,7 +1268,7 @@ table.CodeRay td.code>pre{padding:0}
 REST API Renamed to HTTP 
API
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Drivers Providers
@@ -1273,7 +1287,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Console Flags
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Database Providers
@@ -1296,7 +1310,7 @@ table.CodeRay td.code>pre{padding:0}
 RemoteGraph
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Processor Providers
@@ -1321,7 +1335,7 @@ table.CodeRay td.code>pre{padding:0}
 
 TinkerPop 3.1.6
 
-Upgrading for Providers
+Upgrading for Providers
 
 Driver Providers
 
@@ -1355,7 +1369,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Server Workers
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 Graph Language Providers
@@ -1376,7 +1390,7 @@ table.CodeRay td.code>pre{padding:0}
 Session Timeout Setting
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 All Providers
 Graph System Providers
@@ -1401,7 +1415,7 @@ table.CodeRay td.code>pre{padding:0}
 Deprecated 
supportsAddProperty()
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Database Providers
@@ -1432,7 +1446,7 @@ table.CodeRay td.code>pre{padding:0}
 Aliasing Remotes in the 
Console
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Driver Providers
@@ -1453,7 +1467,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Driver and Server
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Driver Providers
 
@@ -1468,7 +1482,7 @@ table.CodeRay td.code>pre{padding:0}
 Neo4j
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Driver Providers
@@ -1496,7 +1510,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -1566,7 +1580,16 @@ complete list of all the modifications t
 
 
 Upgrading for Users
-
+
+Clear Screen Command
+
+Gremlin Console now has the :cls command to clear the screen. 
This feature acts as an alternative to platform
+specific clear operations and

svn commit: r1878232 [4/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/getting-started/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/getting-started/index.html?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/getting-started/index.html 
(original)
+++ tinkerpop/site/docs/3.4.7-SNAPSHOT/tutorials/getting-started/index.html Thu 
May 28 14:59:52 2020
@@ -803,7 +803,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -813,11 +813,11 @@ table.CodeRay td.code>pre{padding:0}
 Getting Started
 
 
-http://tinkerpop.apache.org";>Apache TinkerPop™ is an open 
source Graph Computing Framework. Within itself, TinkerPop
+https://tinkerpop.apache.org";>Apache TinkerPop™ is an open 
source Graph Computing Framework. Within itself, TinkerPop
 represents a large collection of capabilities and technologies and, in its 
wider ecosystem, an additionally extended
-world of http://tinkerpop.apache.org/#graph-systems";>third-party 
contributed graph libraries and
+world of https://tinkerpop.apache.org/#graph-systems";>third-party 
contributed graph libraries and
 systems. TinkerPop’s ecosystem can appear complex to newcomers of all 
experience levels, especially when glancing at the
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/";>reference 
documentation for the first time.
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/";>reference 
documentation for the first time.
 
 
 So, where do you get started with TinkerPop? How do you dive in quickly and 
get productive? Well …​ Gremlin, the
@@ -847,7 +847,7 @@ your trainer is in order. Meet Gremlin!<
 databases, as http://sql2gremlin.com/";>SQL is the query language 
to relational databases. To tell Gremlin how
 he should "traverse" the graph (i.e., what you want your query to do) you need 
a way to provide him commands in the
 language he understands — and, of course, that language is called "Gremlin". 
For this task, you need one of
-TinkerPop’s most important tools: http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#gremlin-console";>The
 Gremlin Console.
+TinkerPop’s most important tools: https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#gremlin-console";>The
 Gremlin Console.
 
 
 
@@ -904,11 +904,11 @@ graphs and working out complex traversal
 
 To get Gremlin to traverse a graph, you need a TraversalSource 
instance, which holds a reference to a
 Graph instance, which in turn holds the
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#graph-structure";>structure
 and data of the
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#graph-structure";>structure
 and data of the
 graph. TinkerPop is a graph abstraction layer over different graph databases 
and different graph processors, so there
-are many Graph instances http://tinkerpop.apache.org/#graph-systems";>you can choose from to 
instantiate a
+are many Graph instances https://tinkerpop.apache.org/#graph-systems";>you can choose from to 
instantiate a
 connection to in the console. The best Graph instance to start 
with, however, is
-http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#tinkergraph-gremlin";>TinkerGraph.
 TinkerGraph is a fast,
+https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#tinkergraph-gremlin";>TinkerGraph.
 TinkerGraph is a fast,
 in-memory graph database with a small handful of configuration options, making 
it a good choice for beginners.
 
 
@@ -933,7 +933,7 @@ can fit in memory.
 
 
 For purposes of "getting started", resist the temptation to dig into more 
complex databases that have lots of
-configuration options or to delve into how to get http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#gremlin-server";>Gremlin
 Server
+configuration options or to delve into how to get https://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#gremlin-server";>Gremlin
 Server
 working properly. Focusing on the basics, presented in this guide, builds a 
good foundation for all the other things
 TinkerPop offers.
 
@@ -973,10 +973,10 @@ Gremlin script that can be copied and pa
 It can be instantiated in the console this way:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1004,25 +1004,25 @@ g = graph.traversal()
 The first command creates a Graph instance named 
graph, which thus provides a reference to the data you want
 Gremlin to traverse. Unfortunately, just having graph 
doesn’t provide Gremlin enough context to do his job. You
 also need something called a TraversalSource, which is generated 
by the second command. The TraversalSource
-provides additional information to Gremlin (such as the http://tinkerpop.apache.org/docs/3.4.7-SNAPSHOT/reference/#traversalstrategy";>traversal
 strategies
-to apply and the http://tinkerpop.apache.org/docs/3.4.7-

svn commit: r1878232 [7/15] - in /tinkerpop/site: docs/3.4.7-SNAPSHOT/ docs/3.4.7-SNAPSHOT/dev/developer/ docs/3.4.7-SNAPSHOT/dev/future/ docs/3.4.7-SNAPSHOT/dev/io/ docs/3.4.7-SNAPSHOT/dev/provider/

2020-05-28 Thread spmallette
Modified: tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/manifest.json
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/manifest.json?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/manifest.json (original)
+++ tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/manifest.json Thu May 28 14:59:52 
2020
@@ -124,7 +124,7 @@
   "output": {
 ".html": {
   "relative_path": "api/Gremlin.Net.Driver.GremlinClient.html",
-  "hash": "/vbscMdBMsXOufoCDeL/3w=="
+  "hash": "34NyBAciTSLtIFCPOmGkOA=="
 }
   },
   "is_incremental": false,
@@ -220,7 +220,7 @@
   "output": {
 ".html": {
   "relative_path": 
"api/Gremlin.Net.Driver.Remote.DriverRemoteConnection.html",
-  "hash": "hC9vVPm45USgOy/1Qu3BlA=="
+  "hash": "GGam2bI6WDASESWGAQ08Kw=="
 }
   },
   "is_incremental": false,
@@ -256,7 +256,7 @@
   "output": {
 ".html": {
   "relative_path": "api/Gremlin.Net.Driver.Tokens.html",
-  "hash": "cD2BZOQRFtj2P53/JzDtrg=="
+  "hash": "dlKSME2WNwzJJlFdzavHlQ=="
 }
   },
   "is_incremental": false,
@@ -1511,17 +1511,17 @@
   "details": "Processor TocDocumentProcessor cannot support 
incremental build because the processor doesn't implement 
ISupportIncrementalDocumentProcessor interface.",
   "incrementalPhase": "build"
 },
-"ConceptualDocumentProcessor": {
-  "can_incremental": true,
+"ResourceDocumentProcessor": {
+  "can_incremental": false,
+  "details": "Processor ResourceDocumentProcessor cannot support 
incremental build because the processor doesn't implement 
ISupportIncrementalDocumentProcessor interface.",
   "incrementalPhase": "build"
 },
 "ManagedReferenceDocumentProcessor": {
   "can_incremental": true,
   "incrementalPhase": "build"
 },
-"ResourceDocumentProcessor": {
-  "can_incremental": false,
-  "details": "Processor ResourceDocumentProcessor cannot support 
incremental build because the processor doesn't implement 
ISupportIncrementalDocumentProcessor interface.",
+"ConceptualDocumentProcessor": {
+  "can_incremental": true,
   "incrementalPhase": "build"
 }
   }

Modified: tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/xrefmap.yml
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/xrefmap.yml?rev=1878232&r1=1878231&r2=1878232&view=diff
==
--- tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/xrefmap.yml (original)
+++ tinkerpop/site/dotnetdocs/3.4.7-SNAPSHOT/xrefmap.yml Thu May 28 14:59:52 
2020
@@ -194,15 +194,15 @@ references:
   commentId: T:Gremlin.Net.Driver.GremlinClient
   fullName: Gremlin.Net.Driver.GremlinClient
   nameWithType: GremlinClient
-- uid: 
Gremlin.Net.Driver.GremlinClient.#ctor(Gremlin.Net.Driver.GremlinServer,GraphSONReader,GraphSONWriter,System.String,Gremlin.Net.Driver.ConnectionPoolSettings,System.Action{ClientWebSocketOptions})
-  name: GremlinClient(GremlinServer, GraphSONReader, GraphSONWriter, String, 
ConnectionPoolSettings, Action)
-  href: 
api/Gremlin.Net.Driver.GremlinClient.html#Gremlin_Net_Driver_GremlinClient__ctor_Gremlin_Net_Driver_GremlinServer_GraphSONReader_GraphSONWriter_System_String_Gremlin_Net_Driver_ConnectionPoolSettings_System_Action_ClientWebSocketOptions__
-  commentId: 
M:Gremlin.Net.Driver.GremlinClient.#ctor(Gremlin.Net.Driver.GremlinServer,GraphSONReader,GraphSONWriter,System.String,Gremlin.Net.Driver.ConnectionPoolSettings,System.Action{ClientWebSocketOptions})
-  name.vb: GremlinClient(GremlinServer, GraphSONReader, GraphSONWriter, 
String, ConnectionPoolSettings, Action(Of ClientWebSocketOptions))
-  fullName: 
Gremlin.Net.Driver.GremlinClient.GremlinClient(Gremlin.Net.Driver.GremlinServer,
 GraphSONReader, GraphSONWriter, System.String, 
Gremlin.Net.Driver.ConnectionPoolSettings, 
System.Action)
-  fullName.vb: 
Gremlin.Net.Driver.GremlinClient.GremlinClient(Gremlin.Net.Driver.GremlinServer,
 GraphSONReader, GraphSONWriter, System.String, 
Gremlin.Net.Driver.ConnectionPoolSettings, System.Action(Of 
ClientWebSocketOptions))
-  nameWithType: GremlinClient.GremlinClient(GremlinServer, GraphSONReader, 
GraphSONWriter, String, ConnectionPoolSettings, Action)
-  nameWithType.vb: GremlinClient.GremlinClient(GremlinServer, GraphSONReader, 
GraphSONWriter, String, ConnectionPoolSettings, Action(Of 
ClientWebSocketOptions))
+- uid: 
Gremlin.Net.Driver.GremlinClient.#ctor(Gremlin.Net.Driver.GremlinServer,GraphSONReader,GraphSONWriter,System.String,Gremlin.Net.Driver.ConnectionPoolSettings,System.Action{ClientWebSocketOptions},System.String)
+  name: GremlinClient(GremlinServer, GraphSONReader, GraphSONWriter, String, 
Connectio

svn commit: r1878229 [8/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/package-tree.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/package-tree.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/package-tree.html
 (original)
+++ 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/package-tree.html
 Thu May 28 13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.apache.tinkerpop.gremlin.structure Class Hierarchy (Apache 
TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -151,9 +151,9 @@
 Annotation Type Hierarchy
 
 org.apache.tinkerpop.gremlin.structure.Graph.OptIn (implements java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
+org.apache.tinkerpop.gremlin.structure.Graph.OptOuts (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.Graph.OptIns (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.Graph.OptOut (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.structure.Graph.OptOuts (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 
 Enum Hierarchy
 
@@ -161,14 +161,14 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
-org.apache.tinkerpop.gremlin.structure.Column (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in java.util.function">Function)
 org.apache.tinkerpop.gremlin.structure.Direction
-org.apache.tinkerpop.gremlin.structure.PropertyType
+org.apache.tinkerpop.gremlin.structure.Transaction.Status
 org.apache.tinkerpop.gremlin.structure.T (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in java.util.function">Function)
+org.apache.tinkerpop.gremlin.structure.VertexProperty.Cardinality
 org.apache.tinkerpop.gremlin.structure.Transaction.CLOSE_BEHAVIOR (implements 
java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Consumer.html?is-external=true";
 title="class or interface in java.util.function">Consumer)
+org.apache.tinkerpop.gremlin.structure.Column (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Function.html?is-external=true";
 title="class or interface in java.util.function">Function)
+org.apache.tinkerpop.gremlin.structure.PropertyType
 org.apache.tinkerpop.gremlin.structure.Transaction.READ_WRITE_BEHAVIOR (implements 
java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Consumer.html?is-external=true";
 title="class or interface in java.util.function">Consumer)
-org.apache.tinkerpop.gremlin.structure.Transaction.Status
-org.apache.tinkerpop.gremlin.structure.VertexProperty.Cardinality
 
 
 

Modified: tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/overview-tree.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/overview-tree.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/overview-tree.html (original)
+++ tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/overview-tree.html Thu May 28 
13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Class Hierarchy (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -603,28 +603,28 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?i

svn commit: r1878229 [5/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: tinkerpop/site/docs/3.3.11-SNAPSHOT/upgrade/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.3.11-SNAPSHOT/upgrade/index.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/docs/3.3.11-SNAPSHOT/upgrade/index.html (original)
+++ tinkerpop/site/docs/3.3.11-SNAPSHOT/upgrade/index.html Thu May 28 13:15:31 
2020
@@ -807,7 +807,17 @@ table.CodeRay td.code>pre{padding:0}
 
 TinkerPop 3.3.11
 
-Upgrading for Users
+Upgrading for Users
+
+GLV Sessions
+Deprecate 
maxWaitForSessionClose
+
+
+Upgrading for Providers
+
+Gremlin Driver Providers
+
+
 
 
 TinkerPop 3.3.10
@@ -855,7 +865,7 @@ table.CodeRay td.code>pre{padding:0}
 Removed gperfutils 
Dependency
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -881,7 +891,7 @@ table.CodeRay td.code>pre{padding:0}
 RangeStep Optimizing 
Strategy
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -929,7 +939,7 @@ table.CodeRay td.code>pre{padding:0}
 Upgrade Neo4j
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -957,7 +967,7 @@ table.CodeRay td.code>pre{padding:0}
 ScriptInputFormat
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Database Providers
@@ -984,7 +994,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Javascript Script 
Submission
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1010,7 +1020,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin.Net: 
Traversal Predicate Classes Merged
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 
@@ -1032,7 +1042,7 @@ table.CodeRay td.code>pre{padding:0}
 MutationListener Changes
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Direction.BOTH 
Requires Duplication of Self-Edges
 
@@ -1047,7 +1057,7 @@ table.CodeRay td.code>pre{padding:0}
 WsAndHttpChannelizer
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 ReferenceVertex Label
 
@@ -1070,7 +1080,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin-Python Driver
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 
@@ -1089,7 +1099,7 @@ table.CodeRay td.code>pre{padding:0}
 SSL Client Authentication
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 Drivers Providers
@@ -1110,7 +1120,7 @@ table.CodeRay td.code>pre{padding:0}
 IO Reference Documentation
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 
@@ -1128,7 +1138,7 @@ table.CodeRay td.code>pre{padding:0}
 REST API Renamed to HTTP 
API
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Drivers Providers
@@ -1147,7 +1157,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Console Flags
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Database Providers
@@ -1170,7 +1180,7 @@ table.CodeRay td.code>pre{padding:0}
 RemoteGraph
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Processor Providers
@@ -1195,7 +1205,7 @@ table.CodeRay td.code>pre{padding:0}
 
 TinkerPop 3.1.6
 
-Upgrading for Providers
+Upgrading for Providers
 
 Driver Providers
 
@@ -1229,7 +1239,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Server Workers
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Database Providers
 Graph Language Providers
@@ -1250,7 +1260,7 @@ table.CodeRay td.code>pre{padding:0}
 Session Timeout Setting
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 All Providers
 Graph System Providers
@@ -1275,7 +1285,7 @@ table.CodeRay td.code>pre{padding:0}
 Deprecated 
supportsAddProperty()
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Database Providers
@@ -1306,7 +1316,7 @@ table.CodeRay td.code>pre{padding:0}
 Aliasing Remotes in the 
Console
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Driver Providers
@@ -1327,7 +1337,7 @@ table.CodeRay td.code>pre{padding:0}
 Gremlin Driver and Server
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph Driver Providers
 
@@ -1342,7 +1352,7 @@ table.CodeRay td.code>pre{padding:0}
 Neo4j
 
 
-Upgrading for Providers
+Upgrading for Providers
 
 Graph System Providers
 Graph Driver Providers
@@ -1360,7 +1370,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -1429,7 +1439,71 @@ build libraries and other systems on the
 
 
 Upgrading for Users
-
+
+GLV Sessions
+
+While TinkerPop doesn’t recommend the use of sessions for most use 
cases, it does remain a feature that is available
+and exposed on the server. As such, providing support in all Gremlin Language 
Variants for this feature is useful in
+ensuring a consistent implementation for all programming languages.
+
+
+
+const clie

svn commit: r1878229 [1/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Author: spmallette
Date: Thu May 28 13:15:31 2020
New Revision: 1878229

URL: http://svn.apache.org/viewvc?rev=1878229&view=rev
Log:
Deploy docs for TinkerPop 3.3.11-SNAPSHOT

Modified:
tinkerpop/site/docs/3.3.11-SNAPSHOT/dev/developer/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/dev/future/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/dev/io/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/dev/provider/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/recipes/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/reference/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/getting-started/index.html

tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/gremlin-language-variants/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/gremlins-anatomy/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/the-gremlin-console/index.html
tinkerpop/site/docs/3.3.11-SNAPSHOT/upgrade/index.html

tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/api/Gremlin.Net.Driver.GremlinClient.html

tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/api/Gremlin.Net.Driver.Messages.ResponseStatusCode.html
tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/api/Gremlin.Net.Driver.Tokens.html
tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/index.json
tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/manifest.json
tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/xrefmap.yml
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/deprecated-list.html
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/index-all.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/Cluster.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/class-use/Cluster.Builder.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/computer/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/Order.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/structure/package-tree.html
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/overview-tree.html
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/deprecated-list.html
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/index-all.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/class-use/LoadGraphWith.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/class-use/Cluster.Builder.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/ser/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/computer/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/Order.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/class-use/Traversal.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/dsl/graph/GraphTraversal.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.Traversals.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.Traversals.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/strategy/decoration/PartitionStrategy.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/Settings.SslSettings.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/handler/package-tree.html

tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/server/op/session/Session.html

t

svn commit: r1878229 [7/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/deprecated-list.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/deprecated-list.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/deprecated-list.html (original)
+++ tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/deprecated-list.html Thu May 
28 13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Deprecated List (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -268,20 +268,31 @@
 
 
 
+org.apache.tinkerpop.gremlin.driver.Cluster.getMaxWaitForSessionClose()
+As of release 3.3.11, 
replaced in essence by Cluster.getMaxWaitForClose().
+
+
+
 org.apache.tinkerpop.gremlin.driver.Cluster.Builder.keyCertChainFile(String)
 As of release 3.2.10, 
replaced by Cluster.Builder.keyStore
 
 
-
+
 org.apache.tinkerpop.gremlin.driver.Cluster.Builder.keyFile(String)
 As of release 3.2.10, 
replaced by Cluster.Builder.keyStore
 
 
-
+
 org.apache.tinkerpop.gremlin.driver.Cluster.Builder.keyPassword(String)
 As of release 3.2.10, 
replaced by Cluster.Builder.keyStorePassword
 
 
+
+org.apache.tinkerpop.gremlin.driver.Cluster.Builder.maxWaitForSessionClose(int)
+As of release 3.3.11, 
replaced in essence by Cluster.Builder.maxWaitForClose(int)
 though behavior
+ described here is still maintained.
+
+
 
 org.apache.tinkerpop.gremlin.driver.Client.rebind(Map)
 

Modified: tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/index-all.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/index-all.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/index-all.html (original)
+++ tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/index-all.html Thu May 28 
13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Index (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -2179,13 +2179,19 @@
 
 Gets the maximum number of in-flight requests that can 
occur on a Connection.
 
+getMaxWaitForClose()
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
+
+Gets how long a connection will wait for all pending 
messages to be returned from the server before closing.
+
 getMaxWaitForConnection()
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
 
 Gets the maximum amount of time to wait for a connection to 
be borrowed from the connection pool.
 
 getMaxWaitForSessionClose()
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster
 
-Gets how long a session will stay open assuming the current 
connection actually is configured for their use.
+Deprecated.
+As of release 3.3.11, 
replaced in essence by Cluster.getMaxWaitForClose().
+
 
 getMaxWorkers()
 - Method in interface org.apache.tinkerpop.gremlin.process.computer.GraphComputer.Features
  
@@ -3697,14 +3703,21 @@
 
 Gets the maximum number of times that a 
Connection can be borrowed from the pool simultaneously.
 
+maxWaitForClose(int)
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
+
+The amount of time in milliseconds to wait the connection 
to close before timing out where the default
+ value is 3000.
+
 maxWaitForConnection(int)
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
 
 The maximum amount of time to wait for a connection to be 
borrowed from the connection pool.
 
 maxWaitForSessionClose(int)
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
 
-If the connection is using a "session" this setting 
represents the amount of time in milliseconds to wait
- for that session to close before timing out where the default value is 
3000.
+Deprecated.
+As of release 3.3.11, 
replaced in essence by Cluster.Builder.maxWaitForClose(int)
 though behavior
+ described here is still maintained.
+
 
 mean()
 - Method in interface 
org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal
 
@@ -5906,6 +5919,10 @@
 
 The password of the Cluster.Builder.trustStore,
 or null if it's not password-protected.
 
+trustStoreType(String)
 - Method in class org.apache.tinkerpop.gremlin.driver.Cluster.Builder
+
+The format of the Cluster.Builder.trustStore,
 either JKS or PKCS12
+
 tryNext()
 - Method in interface org.apache.tinkerpop.gremlin.process.traversal.Traversal
 
 Return an http://docs.oracle.com/javase/8/docs/api/java/util/Optional.html?is-external=true";
 title="class or interface in java.util">Optional of the next 
E object in the traversal.

Modified: 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/core/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- 
tinkerpop/site/jav

svn commit: r1878229 [12/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/prov

2020-05-28 Thread spmallette
Modified: tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/overview-tree.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/overview-tree.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/overview-tree.html (original)
+++ tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/overview-tree.html Thu May 28 
13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Class Hierarchy (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -2672,24 +2672,24 @@
 
 Annotation Type Hierarchy
 
-org.apache.tinkerpop.gremlin.ExceptionCoverage (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.ExceptionCoverageSet (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.structure.util.FeatureDescriptor (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.FeatureRequirement (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.FeatureRequirements (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.FeatureRequirementSet (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.Graph.OptIn (implements java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.Graph.OptIns (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.Graph.OptOut (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.Graph.OptOuts (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.structure.util.GraphFactoryClass (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.GraphProvider.Descriptor (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.GraphProviderClass (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
+org.apache.tinkerpop.gremlin.structure.util.FeatureDescriptor (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.process.traversal.dsl.GremlinDsl (implements java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.process.traversal.dsl.GremlinDsl.AnonymousMethod (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
-org.apache.tinkerpop.gremlin.process.IgnoreEngine (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api/java/lang/annotation/Annotation.html?is-external=true";
 title="class or interface in java.lang.annotation">Annotation)
 org.apache.tinkerpop.gremlin.LoadGraphWith (implements 
java.lang.annotation.http://docs.oracle.com/javase/8/docs/api

svn commit: r1878229 [9/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
 (original)
+++ 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/driver/Cluster.Builder.html
 Thu May 28 13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 Cluster.Builder (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":42,"i11":42,"i12":42,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":42,"i40":10,"i41":10,"i42":10,"i43":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":42,"i11":42,"i12":42,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":42,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":42,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -271,117 +271,126 @@ extends http://docs.oracle.com/
 
 
 Cluster.Builder
+maxWaitForClose(int maxWait)
+The amount of time in milliseconds to wait the connection 
to close before timing out where the default
+ value is 3000.
+
+
+
+Cluster.Builder
 maxWaitForConnection(int maxWait)
 The maximum amount of time to wait for a connection to be 
borrowed from the connection pool.
 
 
-
+
 Cluster.Builder
 maxWaitForSessionClose(int maxWait)
-If the connection is using a "session" this setting 
represents the amount of time in milliseconds to wait
- for that session to close before timing out where the default value is 
3000.
+Deprecated. 
+As of release 3.3.11, 
replaced in essence by maxWaitForClose(int)
 though behavior
+ described here is still maintained.
+
 
 
-
+
 Cluster.Builder
 minConnectionPoolSize(int minSize)
 The minimum size of the ConnectionPool.
 
 
-
+
 Cluster.Builder
 minInProcessPerConnection(int minInProcessPerConnection)
 The minimum number of in-flight requests that can occur on 
a Connection before it is considered
  for closing on return to the ConnectionPool.
 
 
-
+
 Cluster.Builder
 minSimultaneousUsagePerConnection(int minSimultaneousUsagePerConnection)
 The minimum number of times that a Connection 
should be borrowed from the pool before it falls
  under consideration for closing.
 
 
-
+
 Cluster.Builder
 nioPoolSize(int nioPoolSize)
 Size of the pool for handling request/response 
operations.
 
 
-
+
 Cluster.Builder
 path(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String path)
 The path to the Gremlin service on the host which is 
"/gremlin" by default.
 
 
-
+
 Cluster.Builder
 port(int port)
 Sets the port that the Gremlin Servers will be listening 
on.
 
 
-
+
 Cluster.Builder
 protocol(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String protocol)
 Sets the AuthProperties.Property.PROTOCOL
 properties for authentication to Gremlin Server.
 
 
-
+
 Cluster.Builder
 reconnectInterval(int interval)
 Time in milliseconds to wait between retries when 
attempting to reconnect to a dead host.
 
 
-
+
 Cluster.Builder
 resultIterationBatchSize(int size)
 Override the server setting that determines how many 
results are returned per batch.
 
 
-
+
 Cluster.Builder
 serializer(MessageSerializer serializer)
 Sets the MessageSerializer to 
use.
 
 
-
+
 Cluster.Builder
 serializer(Serializers mimeType)
 Set the MessageSerializer to use 
via the Serializers 
enum.
 
 
-
+
 Cluster.Builder
 serializer(http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String mimeType)
 Set the MessageSerializer to use 
given the exact name of a Serializers 
enum.
 
 
-
+
 Cluster.Builder
 sslCipherSuites(http://docs.oracle.com/javase/8/docs/api/java/util/List.html?is-external=true";
 title="class or interface in java.util">ListString> sslCipherSuites)
 A list of cipher suites to enable.
 
 
-
+
 Cluster

svn commit: r1878229 [10/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/prov

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html
 (original)
+++ 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/package-tree.html
 Thu May 28 13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 org.apache.tinkerpop.gremlin.process.traversal Class Hierarchy (Apache 
TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -232,14 +232,14 @@
 
 java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html?is-external=true";
 title="class or interface in java.lang">Enum (implements java.lang.http://docs.oracle.com/javase/8/docs/api/java/lang/Comparable.html?is-external=true";
 title="class or interface in java.lang">Comparable, java.io.http://docs.oracle.com/javase/8/docs/api/java/io/Serializable.html?is-external=true";
 title="class or interface in java.io">Serializable)
 
+org.apache.tinkerpop.gremlin.process.traversal.Scope
 org.apache.tinkerpop.gremlin.process.traversal.Compare (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/BiPredicate.html?is-external=true";
 title="class or interface in 
java.util.function">BiPredicate)
-org.apache.tinkerpop.gremlin.process.traversal.Contains (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/BiPredicate.html?is-external=true";
 title="class or interface in 
java.util.function">BiPredicate)
+org.apache.tinkerpop.gremlin.process.traversal.SackFunctions.Barrier (implements 
java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Consumer.html?is-external=true";
 title="class or interface in java.util.function">Consumer)
 org.apache.tinkerpop.gremlin.process.traversal.Operator (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/BinaryOperator.html?is-external=true";
 title="class or interface in 
java.util.function">BinaryOperator)
+org.apache.tinkerpop.gremlin.process.traversal.Contains (implements java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/BiPredicate.html?is-external=true";
 title="class or interface in 
java.util.function">BiPredicate)
 org.apache.tinkerpop.gremlin.process.traversal.Order (implements java.util.http://docs.oracle.com/javase/8/docs/api/java/util/Comparator.html?is-external=true";
 title="class or interface in java.util">Comparator)
-org.apache.tinkerpop.gremlin.process.traversal.Pop
-org.apache.tinkerpop.gremlin.process.traversal.SackFunctions.Barrier (implements 
java.util.function.http://docs.oracle.com/javase/8/docs/api/java/util/function/Consumer.html?is-external=true";
 title="class or interface in java.util.function">Consumer)
-org.apache.tinkerpop.gremlin.process.traversal.Scope
 org.apache.tinkerpop.gremlin.process.traversal.TraversalEngine.Type
+org.apache.tinkerpop.gremlin.process.traversal.Pop
 
 
 

Modified: 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.Traversals.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.Traversals.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.Traversals.html
 (original)
+++ 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/OrderTest.Traversals.html
 Thu May 28 13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 OrderTest.Traversals (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -292,13 +292,17 @@ extends TraversalMap

svn commit: r1878229 [11/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/prov

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.html
 (original)
+++ 
tinkerpop/site/javadocs/3.3.11-SNAPSHOT/full/org/apache/tinkerpop/gremlin/process/traversal/step/map/ProfileTest.html
 Thu May 28 13:15:31 2020
@@ -2,10 +2,10 @@
 
 
 
-
+
 
 ProfileTest (Apache TinkerPop 3.3.11-SNAPSHOT API)
-
+
 
 
 
@@ -19,7 +19,7 @@
 catch(err) {
 }
 //-->
-var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":6,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10};
+var methods = 
{"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":6,"i12":6,"i13":6,"i14":6,"i15":6,"i16":6,"i17":6,"i18":6,"i19":6,"i20":6,"i21":6,"i22":6,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10};
 var tabs = {65535:["t0","All Methods"],2:["t2","Instance 
Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]};
 var altColor = "altColor";
 var rowColor = "rowColor";
@@ -208,114 +208,118 @@ extends Method and Description
 
 
+protected void
+afterLoadGraphWith(Graph graph) 
+
+
 void
 g_V_groupXmX_profile() 
 
-
+
 void
 g_V_hasLabelXpersonX_pageRank_byXrankX_byXbothEX_rank_profile() 
 
-
+
 void
 g_V_matchXa_created_b__b_in_count_isXeqX1XXX_selectXa_bX_profile() 
 
-
+
 void
 g_V_matchXa_created_b__b_in_count_isXeqX1XXX_selectXa_bX_profileXmetricsX() 
 
-
+
 void
 g_V_repeat_both_profile() 
 
-
+
 void
 g_V_repeat_both_profileXmetricsX() 
 
-
+
 void
 g_V_sideEffectXThread_sleepX10XX_sideEffectXThread_sleepX5XX_profile() 
 
-
+
 void
 g_V_sideEffectXThread_sleepX10XX_sideEffectXThread_sleepX5XX_profileXmetricsX() 
 
-
+
 void
 g_V_whereXinXcreatedX_count_isX1XX_name_profile() 
 
-
+
 void
 g_V_whereXinXcreatedX_count_isX1XX_name_profileXmetricsX() 
 
-
+
 abstract Traversal
 get_g_V_groupXmX_profile() 
 
-
+
 abstract Traversal
 get_g_V_hasLabelXpersonX_pageRank_byXrankX_byXbothEX_rank_profile() 
 
-
+
 abstract Traversal
 get_g_V_matchXa_created_b__b_in_count_isXeqX1XXX_selectXa_bX_profile() 
 
-
+
 abstract TraversalMapString,http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true";
 title="class or interface in java.lang">String>>
 get_g_V_matchXa_created_b__b_in_count_isXeqX1XXX_selectXa_bX_profileXmetricsX() 
 
-
+
 abstract Traversal
 get_g_V_out_out_profile() 
 
-
+
 abstract Traversal
 get_g_V_out_out_profileXmetricsX() 
 
-
+
 abstract Traversal
 get_g_V_repeatXbothX_timesX3X_profile() 
 
-
+
 abstract Traversal
 get_g_V_repeatXbothX_timesX3X_profileXmetricsX() 
 
-
+
 abstract Traversal
 get_g_V_sideEffectXThread_sleepX10XX_sideEffectXThread_sleepX5XX_profile() 
 
-
+
 abstract Traversal
 get_g_V_sideEffectXThread_sleepX10XX_sideEffectXThread_sleepX5XX_profileXmetricsX() 
 
-
+
 abstract Traversal
 get_g_V_whereXinXcreatedX_count_isX1XX_name_profile() 
 
-
+
 abstract TraversalString>
 get_g_V_whereXinXcreatedX_count_isX1XX_name_profileXmetricsX() 
 
-
+
 void
 grateful_V_out_out_profile() 
 
-
+
 void
 grateful_V_out_out_profileXmetricsX() 
 
-
+
 void
 modern_V_out_out_profile() 
 
-
+
 void
 modern_V_out_out_profileXmetricsX() 
 
-
+
 void
 testProfileStrategyCallback() 
 
-
+
 void
 testProfileStrategyCallbackSideEffect() 
 
@@ -332,7 +336,7 @@ extends AbstractGremlinTest
-afterLoadGraphWith,
 assertVertexEdgeCounts,
 beforeLoadGraphWith,
 convertToEdge,
 convertToEdgeId,
 convertToEdgeId,
 convertToVertex,
 convertToVertexId,
 convertToVertexId,
 convertToVertexProperty,
 convertToVertexPropertyId,
 convertToVertexPropertyId,
 getAssertVertexEdgeCounts,
 printTraversalForm,
 setup,
 tearDown,
 tryCommit, tryCommit,
 tryRollback,
 validateException
+assertVertexEdgeCounts,
 beforeLoadGraphWith,
 convertToEdge,
 convertToEdgeId,
 convertToEdgeId,
 convertToVertex,
 convertToVertexId,
 convertToVertexId,
 convertToVertexProperty,
 convertToVertexProp

svn commit: r1878229 [3/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: tinkerpop/site/docs/3.3.11-SNAPSHOT/reference/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.3.11-SNAPSHOT/reference/index.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/docs/3.3.11-SNAPSHOT/reference/index.html (original)
+++ tinkerpop/site/docs/3.3.11-SNAPSHOT/reference/index.html Thu May 28 
13:15:31 2020
@@ -850,6 +850,7 @@ table.CodeRay td.code>pre{padding:0}
 Graph Traversal Steps
 
 General Steps
+Start Steps
 Terminal Steps
 AddEdge Step
 AddVertex Step
@@ -949,7 +950,7 @@ table.CodeRay td.code>pre{padding:0}
 ElementIdStrategy
 EventStrategy
 PartitionStrategy
-ReadOnlyStrategy
+ReadOnlyStrategy
 SubgraphStrategy
 
 
@@ -1135,6 +1136,7 @@ table.CodeRay td.code>pre{padding:0}
 Traversal Strategies
 The Lambda Solution
 Limitations
+Submit Gremlin Scripts
 
 
 Gremlin.Net
@@ -1150,13 +1152,14 @@ table.CodeRay td.code>pre{padding:0}
 Bindings
 Traversal Strategies
 The Lambda Solution
+Submit Gremlin Scripts
 
 
 Gremlin-JavaScript
 
 RemoteConnection 
Submission
 Static Enums and Methods
-Submit Gremlin Scripts
+Submit Gremlin Scripts
 
 
 
@@ -1171,7 +1174,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -1369,7 +1372,7 @@ not include vertex labels.
 
 
 All of the toy graphs available in TinkerPop are described in
-http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/the-gremlin-console/#toy-graphs";>The
 Gremlin Console tutorial.
+https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/the-gremlin-console/#toy-graphs";>The
 Gremlin Console tutorial.
 
 
 
@@ -1388,10 +1391,10 @@ The process of the graph is the means by
 called a http://en.wikipedia.org/wiki/Graph_traversal";>traversal.
 
 
-Generally speaking, the structure or "graph" API is meant for http://tinkerpop.apache.org/providers.html";>graph providers
+Generally speaking, the structure or "graph" API is meant for https://tinkerpop.apache.org/providers.html";>graph providers
 who are implementing the TinkerPop interfaces and the process or "traversal" 
API (i.e. Gremlin) is meant for end-users
 who are utilizing a graph system from a graph provider. While the components 
of the process API are itemized below,
-they are described in greater detail in the http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/gremlins-anatomy/";>Gremlin’s
 Anatomy
+they are described in greater detail in the https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/gremlins-anatomy/";>Gremlin’s
 Anatomy
 tutorial.
 
 
@@ -1512,7 +1515,7 @@ is a key/value pair, where the key is al
 essential to end-users working with graphs, however, as mentioned earlier, the 
structure API is not the appropriate
 way for users to think when building applications with TinkerPop. The 
structure API is reserved for usage by graph
 providers. Those interested in implementing the structure API to make their 
graph system TinkerPop enabled can learn
-more about it in the http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/dev/provider/";>Graph 
Provider documentation.
+more about it in the https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/dev/provider/";>Graph 
Provider documentation.
 
 
 
@@ -1627,7 +1630,7 @@ gremlin> g.V().has(
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1709,10 +1712,10 @@ traverser has gone through a loop, the p
 Traverser metadata may be accessed by a step. A classic example is the path()-step.
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1753,10 +1756,10 @@ required. If not, then path calculations
 has gone through a particular section of the traversal expression (i.e. a 
loop).
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1911,10 +1914,10 @@ system providers for two purposes:
 The following example in the Gremlin Console shows how to print all the 
features of a Graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1924,20 +1927,13 @@ system providers for two purposes:
 gremlin> graph.features()
 ==>FEATURES
 > GraphFeatures
+>-- Computer: true
 >-- Persistence: true
 >-- ConcurrentAccess: false
 >-- ThreadedTransactions: false
->-- Computer: true
 >-- Transactions: false
 > VariableFeatures
 >-- Variables: true
->-- DoubleArrayValues: true
->-- FloatArrayValues: true
->-- IntegerArrayValues: true
->-- LongArrayValues: true
->-- StringArrayValues: true
->-- BooleanArrayValues: true
->-- ByteArrayValues: true
 >-- BooleanValues: true
 >-- ByteValues: true
 >-- DoubleValues: true
@@ -1949,36 +1945,36 @@ gremlin> graph.features()
 >-- SerializableValues: true
 >-- StringValues: true
 >-- UniformListValues: true
+>-- BooleanArrayValues: true
+>-- ByteArrayValues: true
+>-- DoubleArrayValues: true
+>-- FloatArrayValues: true
+>-- IntegerArrayValu

svn commit: r1878229 [6/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/index.json
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/index.json?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/index.json (original)
+++ tinkerpop/site/dotnetdocs/3.3.11-SNAPSHOT/index.json Thu May 28 13:15:31 
2020
@@ -1,527 +1,527 @@
 {
-  "index.html": {
-"href": "index.html",
-"title": "Gremlin.Net | Apache TinkerPop - Gremlin.NET API Docs",
-"keywords": "Gremlin.Net  Apache TinkerPop™ is a 
graph computing framework for both graph databases (OLTP) and graph analytic 
systems (OLAP). Gremlin is the graph traversal language of TinkerPop. It can be 
described as a function
 al, data-flow language that enables users to succinctly express complex 
traversals on (or queries of) their application's property graph. Gremlin.Net 
implements Gremlin within the C# language. It targets .NET Standard and can 
therefore be used on different operating systems and with different .NET 
frameworks, such as .NET Framework and .NET Core. nuget install Gremlin.Net 
Please see the reference documentation at Apache TinkerPop for more 
information."
+  "api/Gremlin.Net.Structure.Graph.html": {
+"href": "api/Gremlin.Net.Structure.Graph.html",
+"title": "Class Graph | Apache TinkerPop - Gremlin.NET API Docs",
+"keywords": "Class Graph A Graph is a container object for a collection of 
Vertex , Edge , VertexProperty , and Property objects. Inheritance 
System.Object Graph Inherited Members System.Object.Equals(System.Object) 
System.Object.Equals(System.Object, System.Object) System.Object.GetHashCode() 
System.Object.GetType() System.Object.MemberwiseClone() 
System.Object.ToString() System.Object.ReferenceEquals(System.Object, 
System.Object) Namespace : Gremlin.Net.Structure Assembly : cs.temp.dll.dll 
Syntax public class Graph Methods Traversal() Generates a reusable instance. 
Declaration [Obsolete(\"As of release 3.3.5, replaced by 
AnonymousTraversalSource.Traversal() called statically.\", false)] public 
GraphTraversalSource Traversal() Returns Type Description GraphTraversalSource 
A graph traversal source."
   },
-  "api/Gremlin.Net.Process.Traversal.Bindings.html": {
-"href": "api/Gremlin.Net.Process.Traversal.Bindings.html",
-"title": "Class Bindings | Apache TinkerPop - Gremlin.NET API Docs",
-"keywords": "Class Bindings Bindings are used to associate a variable with 
a value. Inheritance System.Object Bindings Inherited Members 
System.Object.Equals(System.Object) System.Object.Equals(System.Object, 
System.Object) System.Object.GetHashCode() System.Object.GetType() 
System.Object.MemberwiseClone() System.Object.ToString() 
System.Object.ReferenceEquals(System.Object, System.Object) Namespace : 
Gremlin.Net.Process.Traversal Assembly : cs.temp.dll.dll Syntax public class 
Bindings Properties Instance Gets an instance of the Bindings class. 
Declaration public static Bindings Instance { get; } Property Value Type 
Description Bindings Methods Of(String, TV) Binds the variable to the 
specified value. Declaration public TV Of(string variable, TV value) 
Parameters Type Name Description System.String variable The variable to bind. 
TV value The value to which the variable should be bound. Returns Type 
Description TV The bound value. Type Parameters Name Description TV"
+  
"api/Gremlin.Net.Process.Traversal.Strategy.Decoration.PartitionStrategy.html": 
{
+"href": 
"api/Gremlin.Net.Process.Traversal.Strategy.Decoration.PartitionStrategy.html",
+"title": "Class PartitionStrategy | Apache TinkerPop - Gremlin.NET API 
Docs",
+"keywords": "Class PartitionStrategy Partitions the vertices, edges and 
vertex properties of a graph into String named partitions. Inheritance 
System.Object AbstractTraversalStrategy PartitionStrategy Implements 
ITraversalStrategy System.IEquatable < AbstractTraversalStrategy > Inherited 
Members AbstractTraversalStrategy.StrategyName 
AbstractTraversalStrategy.Configuration 
AbstractTraversalStrategy.Equals(AbstractTraversalStrategy) 
AbstractTraversalStrategy.Apply(ITraversal) 
AbstractTraversalStrategy.ApplyAsync(ITraversal) 
AbstractTraversalStrategy.Equals(Object) 
AbstractTraversalStrategy.GetHashCode() AbstractTraversalStrategy.ToString() 
System.Object.Equals(System.Object, System.Object) System.Object.GetType() 
System.Object.MemberwiseClone() System.Object.ReferenceEquals(System.Object, 
System.Object) Namespace : Gremlin.Net.Process.Traversal.Strategy.Decoration 
Assembly : cs.temp.dll.dll Syntax public class PartitionStrategy : 
AbstractTraversalStrategy,
  ITraversalStrategy, IEquatable Constructors 
PartitionStrategy() Initializes a new instance of the PartitionStrategy class. 
Declaration public PartitionStrategy() PartitionStrategy(String, String, 
IEnumerable, Nullable) Initializes a new instance of the 
PartitionStrategy cla

svn commit: r1878229 [4/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: 
tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/getting-started/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/getting-started/index.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/getting-started/index.html 
(original)
+++ tinkerpop/site/docs/3.3.11-SNAPSHOT/tutorials/getting-started/index.html 
Thu May 28 13:15:31 2020
@@ -803,7 +803,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -813,11 +813,11 @@ table.CodeRay td.code>pre{padding:0}
 Getting Started
 
 
-http://tinkerpop.apache.org";>Apache TinkerPop™ is an open 
source Graph Computing Framework. Within itself, TinkerPop
+https://tinkerpop.apache.org";>Apache TinkerPop™ is an open 
source Graph Computing Framework. Within itself, TinkerPop
 represents a large collection of capabilities and technologies and, in its 
wider ecosystem, an additionally extended
-world of http://tinkerpop.apache.org/#graph-systems";>third-party 
contributed graph libraries and
+world of https://tinkerpop.apache.org/#graph-systems";>third-party 
contributed graph libraries and
 systems. TinkerPop’s ecosystem can appear complex to newcomers of all 
experience, especially when glancing at the
-http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/";>reference 
documentation for the first time.
+https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/";>reference 
documentation for the first time.
 
 
 So, where do you get started with TinkerPop? How do you dive in quickly and 
get productive? Well - Gremlin, the
@@ -847,7 +847,7 @@ your trainer is in order. Meet Gremlin!<
 databases, as http://sql2gremlin.com/";>SQL is the query language 
to relational databases. To tell Gremlin how
 he should "traverse" the graph (i.e. what you want your query to do) you need 
a way to provide him commands in the
 language he understands - and, of course, that language is called "Gremlin". 
For this task, you need one of
-TinkerPop’s most important tools: http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#gremlin-console";>The
 Gremlin Console.
+TinkerPop’s most important tools: https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#gremlin-console";>The
 Gremlin Console.
 
 
 
@@ -903,10 +903,10 @@ graphs, working out complex traversals,
 
 
 To get Gremlin to traverse a graph, you need a Graph instance, 
which holds the
-http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#_the_graph_structure";>structure
 and data of the
+https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#_the_graph_structure";>structure
 and data of the
 graph. TinkerPop is a graph abstraction layer over different graph databases 
and different graph processors, so there
 are many Graph instances you can choose from to instantiate in 
the console. The best Graph instance to start with
-however is http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#tinkergraph-gremlin";>TinkerGraph.
 TinkerGraph
+however is https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#tinkergraph-gremlin";>TinkerGraph.
 TinkerGraph
 is a fast, in-memory graph database with a small handful of configuration 
options, making it a good choice for beginners.
 
 
@@ -931,7 +931,7 @@ can fit in memory.
 
 
 For purposes of "getting started", resist the temptation to dig into more 
complex databases that have lots of
-configuration options or to delve into how to get http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#gremlin-server";>Gremlin
 Server
+configuration options or to delve into how to get https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#gremlin-server";>Gremlin
 Server
 working properly. Focusing on the basics, presented in this guide, builds a 
good foundation for all the other things
 TinkerPop offers.
 
@@ -970,10 +970,10 @@ be a simple Gremlin script that can be c
 It can be instantiated in the console this way:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1001,18 +1001,18 @@ g = graph.traversal()
 The first command creates a Graph instance named 
graph, which thus provides a reference to the data you want
 Gremlin to traverse. Unfortunately, just having graph 
doesn’t provide Gremlin enough context to do his job. You
 also need something called a TraversalSource, which is generated 
by the second command. The TraversalSource
-provides additional information to Gremlin (such as the http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#traversalstrategy";>traversal
 strategies
-to apply and the http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#graphcomputer";>traversal
 engine to use) which
+provides additional information to Gremlin (such as the https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#traversalstrategy";>traversal
 strate

svn commit: r1878229 [2/12] - in /tinkerpop/site: docs/3.3.11-SNAPSHOT/ docs/3.3.11-SNAPSHOT/dev/developer/ docs/3.3.11-SNAPSHOT/dev/future/ docs/3.3.11-SNAPSHOT/dev/io/ docs/3.3.11-SNAPSHOT/dev/provi

2020-05-28 Thread spmallette
Modified: tinkerpop/site/docs/3.3.11-SNAPSHOT/recipes/index.html
URL: 
http://svn.apache.org/viewvc/tinkerpop/site/docs/3.3.11-SNAPSHOT/recipes/index.html?rev=1878229&r1=1878228&r2=1878229&view=diff
==
--- tinkerpop/site/docs/3.3.11-SNAPSHOT/recipes/index.html (original)
+++ tinkerpop/site/docs/3.3.11-SNAPSHOT/recipes/index.html Thu May 28 13:15:31 
2020
@@ -874,7 +874,7 @@ table.CodeRay td.code>pre{padding:0}
 
 
 
-http://tinkerpop.apache.org";>
+https://tinkerpop.apache.org";>
 
 
 
@@ -894,8 +894,8 @@ provide some basic building blocks for v
 
 
 Recipes assume general familiarity with Gremlin and the Apache TinkerPop™ 
stack. Be sure to have read the
-http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/getting-started";>Getting
 Started tutorial and the
-http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/the-gremlin-console/";>The
 Gremlin Console tutorial.
+https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/getting-started";>Getting
 Started tutorial and the
+https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/tutorials/the-gremlin-console/";>The
 Gremlin Console tutorial.
 
 
 
@@ -908,10 +908,10 @@ provide some basic building blocks for v
 traversal on the paths found between them. Consider the following examples 
using the modern toy graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -986,10 +986,10 @@ scenarios. For one such example, conside
 vertices:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1038,10 +1038,10 @@ to extract the known job, the company th
 the known person completed an application.
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1177,10 +1177,10 @@ demonstrate how some of these different
 edges associated to each vertex. The following examples use the modern toy 
graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1254,8 +1254,8 @@ OLAP traversals.
 Note
 
 
-The http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#group-step";>group
 step takes up to two separate
-http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#by-step";>by
 modulators. The first by() tells group()
+The https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#group-step";>group
 step takes up to two separate
+https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#by-step";>by
 modulators. The first by() tells group()
 what the key in the resulting Map will be (i.e. the value to 
group on). In the above examples, the by() is empty
 and as a result, the grouping will be on the incoming Vertex 
object itself. The second by() is the value to be
 stored in the Map for each key.
@@ -1275,10 +1275,10 @@ graph for demonstration purposes:
 
 
 
-  
-  console (groovy )
-  
-  groovy 
+  
+  console (groovy )
+  
+  groovy 
   
 
 
@@ -1391,7 +1391,7 @@ g.V().as(
 Since the betweeness centrality algorithm requires the shortest path between 
any pair of vertices in the graph,
 its practical applications are very limited. It’s recommended to use 
this algorithm only on small subgraphs (graphs like
-the http://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
+the https://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
 and 8049 edges already require a massive amount of compute resources to 
determine the shortest paths between all vertex
 pairs).
 
@@ -1406,10 +1406,10 @@ pairs).
 other reachable vertices in the graph. The following examples use the modern 
toy graph:
 
 
-  
-  console (groovy)
-  
-  groovy
+  
+  console (groovy)
+  
+  groovy
   
 
 
@@ -1467,7 +1467,7 @@ g.withSack(1f
 
 
 
-Defines a Gremlin http://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#sack-step";>sack
 with a value of one.
+Defines a Gremlin https://tinkerpop.apache.org/docs/3.3.11-SNAPSHOT/reference/#sack-step";>sack
 with a value of one.
 
 
 Traverses on both - incoming and outgoing - edges, avoiding cyclic paths.
@@ -1498,7 +1498,7 @@ g.withSack(1f
 
 Since the closeness centrality algorithm requires the shortest path between 
any pair of vertices in the graph,
 its practical applications are very limited. It’s recommended to use 
this algorithm only on small subgraphs (graphs like
-the http://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
+the https://tinkerpop.apache.org/docs/current/reference/#grateful-dead";>Grateful
 Dead graph with only 808 vertices
 and 8049 edges already require a massive amount of compute resources to 
determine the shortest paths between all vertex
 pairs).
 
@@ -1515,10 +1515,10 @@ relative importance of adjacent vertices
 give it the highest rank. Consider the following example using the Grateful 
Dead g