[2/3] tinkerpop git commit: Fixed a spelling mistake in collections recipe CTR

2018-04-11 Thread dkuppitz
Fixed a spelling mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/35bf95ad
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/35bf95ad
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/35bf95ad

Branch: refs/heads/TINKERPOP-1912
Commit: 35bf95ad31067a7a7203f21a310dd9d26e371f59
Parents: e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:13:43 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:13:43 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/35bf95ad/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index f44040a..d027376 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -324,7 +324,7 @@ g.V().
   by(values))
 
 
-The addition steps above `unfold()` the `Map` to key-value entries and filter 
the values for "n/a" and remove them
+The additional steps above `unfold()` the `Map` to key-value entries and 
filter the values for "n/a" and remove them
 prior to reconstructing the `Map` with the method shown earlier. To go a step 
further, apply the pattern presented
 earlier to flatten `List` values within a `Map`:
 



[1/3] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR [Forced Update!]

2018-04-11 Thread dkuppitz
Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1912 ed751d189 -> 54df6dcbd (forced update)


Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e1a69fd8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e1a69fd8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e1a69fd8

Branch: refs/heads/TINKERPOP-1912
Commit: e1a69fd8075f02ae1f22c4195edd956bf988445a
Parents: 42bacaf
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:33 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e1a69fd8/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[3/3] tinkerpop git commit: TINKERPOP-1912 Removed MD5 checksums from release

2018-04-11 Thread dkuppitz
TINKERPOP-1912 Removed MD5 checksums from release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/54df6dcb
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/54df6dcb
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/54df6dcb

Branch: refs/heads/TINKERPOP-1912
Commit: 54df6dcbd081ec685723cdfc508af5513fb66dd0
Parents: 35bf95a
Author: Daniel Kuppitz 
Authored: Tue Apr 10 13:31:47 2018 -0700
Committer: Daniel Kuppitz 
Committed: Wed Apr 11 09:27:19 2018 -0700

--
 bin/validate-distribution.sh| 3 ++-
 docs/src/dev/developer/release.asciidoc | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/54df6dcb/bin/validate-distribution.sh
--
diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 0121a1a..b071ea0 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -83,10 +83,11 @@ fi
 
 echo -n "* downloading ${COMPONENT} (${ZIP_FILENAME})... "
 curl -Lsf ${URL} -o ${ZIP_FILENAME} || { echo "Failed to download 
${COMPONENT}" ; exit 1; }
-for ext in "asc" "md5" "sha1"
+for ext in "asc" "sha1"
 do
   curl -Lsf ${URL}.${ext} -o ${ZIP_FILENAME}.${ext} || { echo "Failed to 
download ${COMPONENT} (${ext})" ; exit 1 ; }
 done
+curl -Lsf ${URL}.md5 -o ${ZIP_FILENAME}.md5 && { echo "MD5 checksums should 
not be released (${ZIP_FILENAME}.md5)" ; exit 1 ; }
 echo "OK"
 
 # validate zip file

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/54df6dcb/docs/src/dev/developer/release.asciidoc
--
diff --git a/docs/src/dev/developer/release.asciidoc 
b/docs/src/dev/developer/release.asciidoc
index c7c5bb7..608bb31 100644
--- a/docs/src/dev/developer/release.asciidoc
+++ b/docs/src/dev/developer/release.asciidoc
@@ -209,6 +209,7 @@ for generating javadoc and without that the binary 
distributions won't contain t
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/gremlin-console/xx.yy.zz/gremlin-console-xx.yy.zz-distribution.zip*
 dev/xx.yy.zz`
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/gremlin-server/xx.yy.zz/gremlin-server-xx.yy.zz-distribution.zip*
 dev/xx.yy.zz`
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/tinkerpop/xx.yy.zz/tinkerpop-xx.yy.zz-source-release.zip*
 dev/xx.yy.zz`
+.. `rm -f dev/*.md5
 .. `cd dev/xx.yy.zz`
 .. pass:[ls * | xargs -n1 -I {} echo "mv apache-tinkerpop-{} {}" | sed 
-e 's/distribution/bin/' -e 's/source-release/src/' -e 
's/tinkerpop-tinkerpop/tinkerpop/' -e s'/^\(.*\) \(.*\) \(.*\)$/\1 \3 \2/' | 
/bin/bash]
 .. `cd ..; svn add xx.yy.zz/; svn ci -m "TinkerPop xx.yy.zz release"`



[6/9] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread dkuppitz
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0c9afb61
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0c9afb61
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0c9afb61

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: 0c9afb614bd79bc48d02cf63f94e8942c8a577e1
Parents: 0f08514 e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:05:46 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:46 2018 -0400

--

--




[4/9] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread dkuppitz
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0f085146
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0f085146
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0f085146

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: 0f085146135b109a70821da699ca502c52fb375c
Parents: aa40dfa da05f94
Author: Stephen Mallette 
Authored: Wed Apr 11 08:57:02 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:57:02 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--




[1/9] tinkerpop git commit: CTR: fixed minor typos in docs [Forced Update!]

2018-04-11 Thread dkuppitz
Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1912-tp33 17bf6efe0 -> bf1e242ee (forced update)


CTR: fixed minor typos in docs


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/42bacafb
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/42bacafb
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/42bacafb

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: 42bacafbf4189cfb89ad53f1b38fee9ea21dd64e
Parents: df7870a
Author: Daniel Kuppitz 
Authored: Mon Apr 9 11:32:38 2018 -0700
Committer: Daniel Kuppitz 
Committed: Mon Apr 9 11:32:38 2018 -0700

--
 docs/src/reference/the-traversal.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/42bacafb/docs/src/reference/the-traversal.asciidoc
--
diff --git a/docs/src/reference/the-traversal.asciidoc 
b/docs/src/reference/the-traversal.asciidoc
index 69bc8a3..86fb324 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -2342,7 +2342,7 @@ g.V().out().as('a').out().as('b').out().as('c').
 by('name')
 
 
-By using the `from()` and `to()` modulators traversers can ensure that only 
certain sections of the path are are acyclic.
+By using the `from()` and `to()` modulators traversers can ensure that only 
certain sections of the path are acyclic.
 
 [gremlin-groovy]
 
@@ -3043,7 +3043,7 @@ of the Gremlin traversal machine's compiler. There are 5 
categories of strategie
  * There is an application-level feature that can be embedded into the 
traversal logic (*decoration*).
  * There is a more efficient way to express the traversal at the TinkerPop3 
level (*optimization*).
  * There is a more efficient way to express the traversal at the graph 
system/language/driver level (*provider optimization*).
- * There are are some final adjustments/cleanups/analyses required before 
executing the traversal (*finalization*).
+ * There are some final adjustments/cleanups/analyses required before 
executing the traversal (*finalization*).
  * There are certain traversals that are not legal for the application or 
traversal engine (*verification*).
 
 NOTE: The <>-step shows the user how each registered 
strategy mutates the traversal.



[2/9] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread dkuppitz
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/aa40dfa6
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/aa40dfa6
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/aa40dfa6

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: aa40dfa6e4240917e67077e315833ecedfde7e0b
Parents: 46be135 42bacaf
Author: Daniel Kuppitz 
Authored: Mon Apr 9 11:32:52 2018 -0700
Committer: Daniel Kuppitz 
Committed: Mon Apr 9 11:32:52 2018 -0700

--
 docs/src/reference/the-traversal.asciidoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/aa40dfa6/docs/src/reference/the-traversal.asciidoc
--



[8/9] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread dkuppitz
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/cf6f9746
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/cf6f9746
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/cf6f9746

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: cf6f9746e3427f6c9cbc5c48d1153b2b523f5880
Parents: 0c9afb6 35bf95a
Author: Stephen Mallette 
Authored: Wed Apr 11 09:14:00 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:14:00 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[5/9] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread dkuppitz
Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e1a69fd8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e1a69fd8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e1a69fd8

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: e1a69fd8075f02ae1f22c4195edd956bf988445a
Parents: 42bacaf
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:33 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e1a69fd8/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[3/9] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread dkuppitz
Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/da05f940
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/da05f940
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/da05f940

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: da05f9401100bb985c0697d06cb1a0487b14275f
Parents: df7870a
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:56:22 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/da05f940/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[7/9] tinkerpop git commit: Fixed a spelling mistake in collections recipe CTR

2018-04-11 Thread dkuppitz
Fixed a spelling mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/35bf95ad
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/35bf95ad
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/35bf95ad

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: 35bf95ad31067a7a7203f21a310dd9d26e371f59
Parents: e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:13:43 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:13:43 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/35bf95ad/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index f44040a..d027376 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -324,7 +324,7 @@ g.V().
   by(values))
 
 
-The addition steps above `unfold()` the `Map` to key-value entries and filter 
the values for "n/a" and remove them
+The additional steps above `unfold()` the `Map` to key-value entries and 
filter the values for "n/a" and remove them
 prior to reconstructing the `Map` with the method shown earlier. To go a step 
further, apply the pattern presented
 earlier to flatten `List` values within a `Map`:
 



[9/9] tinkerpop git commit: TINKERPOP-1912 Removed MD5 checksums from release

2018-04-11 Thread dkuppitz
TINKERPOP-1912 Removed MD5 checksums from release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/bf1e242e
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/bf1e242e
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/bf1e242e

Branch: refs/heads/TINKERPOP-1912-tp33
Commit: bf1e242eebfb4d16f3d50ac181698b7b57ee0635
Parents: cf6f974
Author: Daniel Kuppitz 
Authored: Tue Apr 10 13:31:47 2018 -0700
Committer: Daniel Kuppitz 
Committed: Wed Apr 11 09:26:41 2018 -0700

--
 bin/validate-distribution.sh| 3 ++-
 docs/site/home/downloads.html   | 4 ++--
 docs/src/dev/developer/release.asciidoc | 1 +
 3 files changed, 5 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bf1e242e/bin/validate-distribution.sh
--
diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 0121a1a..b071ea0 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -83,10 +83,11 @@ fi
 
 echo -n "* downloading ${COMPONENT} (${ZIP_FILENAME})... "
 curl -Lsf ${URL} -o ${ZIP_FILENAME} || { echo "Failed to download 
${COMPONENT}" ; exit 1; }
-for ext in "asc" "md5" "sha1"
+for ext in "asc" "sha1"
 do
   curl -Lsf ${URL}.${ext} -o ${ZIP_FILENAME}.${ext} || { echo "Failed to 
download ${COMPONENT} (${ext})" ; exit 1 ; }
 done
+curl -Lsf ${URL}.md5 -o ${ZIP_FILENAME}.md5 && { echo "MD5 checksums should 
not be released (${ZIP_FILENAME}.md5)" ; exit 1 ; }
 echo "OK"
 
 # validate zip file

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bf1e242e/docs/site/home/downloads.html
--
diff --git a/docs/site/home/downloads.html b/docs/site/home/downloads.html
index efe3ac8..f5f0ab3 100644
--- a/docs/site/home/downloads.html
+++ b/docs/site/home/downloads.html
@@ -491,7 +491,7 @@ limitations under the License.
 
 Note that upgrade documentation was only introduced at 
3.1.1-incubating which is why there are no links "upgrade" links in versions 
prior to that one.
 Verifying Downloads
-All downloads have associated PGP and MD5 signatures to help verify a 
distribution provided by a mirror. To verify a distribution via PGP or GPG 
first download the
+All downloads have associated PGP and SHA1 signatures to help verify a 
distribution provided by a mirror. To verify a distribution via PGP or GPG 
first download the
https://www.apache.org/dist/tinkerpop/KEYS;>KEYS file (it 
is important to use the linked file which is from the main distribution 
directory and not a
mirror. Next download the appropriate "asc" signature file for the 
relevant distribution (again, this file should come from the https://www.apache.org/dist/tinkerpop/;>main
distribution directory - note that older releases will have such 
files in the https://archive.apache.org/dist/tinkerpop/;>archives 
or if released under Apache
@@ -517,7 +517,7 @@ limitations under the License.
   gpg --verify apache-gremlin-console-x.y.z-bin.zip.asc 
apache-gremlin-console-x.y.z-bin.zip
   
 
-Alternatively, consider verifying the MD5 signature on the files. An 
MD5 signature consists of 32 hex characters, and a SHA1 signature consists of 
40 hex characters.
+Alternatively, consider verifying the SHA1 signature on the files. An 
SHA1 signature consists of 40 hex characters.
Ensure that the generated signature string matches the signature string 
published in the files above.
  
 

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/bf1e242e/docs/src/dev/developer/release.asciidoc
--
diff --git a/docs/src/dev/developer/release.asciidoc 
b/docs/src/dev/developer/release.asciidoc
index cc18bde..9439abb 100644
--- a/docs/src/dev/developer/release.asciidoc
+++ b/docs/src/dev/developer/release.asciidoc
@@ -224,6 +224,7 @@ for generating javadoc and without that the binary 
distributions won't contain t
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/gremlin-console/xx.yy.zz/gremlin-console-xx.yy.zz-distribution.zip*
 dev/xx.yy.zz`
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/gremlin-server/xx.yy.zz/gremlin-server-xx.yy.zz-distribution.zip*
 dev/xx.yy.zz`
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/tinkerpop/xx.yy.zz/tinkerpop-xx.yy.zz-source-release.zip*
 dev/xx.yy.zz`
+.. `rm -f dev/*.md5
 .. `cd dev/xx.yy.zz`
 .. pass:[ls * | xargs -n1 -I {} echo "mv apache-tinkerpop-{} {}" | sed 
-e 's/distribution/bin/' -e 's/source-release/src/' -e 
's/tinkerpop-tinkerpop/tinkerpop/' -e s'/^\(.*\) \(.*\) \(.*\)$/\1 \3 \2/' | 
/bin/bash]
 .. `cd ..; svn add 

tinkerpop git commit: TINKERPOP-1912 Removed MD5 checksums from release

2018-04-11 Thread dkuppitz
Repository: tinkerpop
Updated Branches:
  refs/heads/TINKERPOP-1912 42bacafbf -> ed751d189


TINKERPOP-1912 Removed MD5 checksums from release


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ed751d18
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ed751d18
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/ed751d18

Branch: refs/heads/TINKERPOP-1912
Commit: ed751d189e78224959abe3506ff13cdcef790f00
Parents: 42bacaf
Author: Daniel Kuppitz 
Authored: Tue Apr 10 13:31:47 2018 -0700
Committer: Daniel Kuppitz 
Committed: Tue Apr 10 13:31:47 2018 -0700

--
 bin/validate-distribution.sh| 3 ++-
 docs/src/dev/developer/release.asciidoc | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ed751d18/bin/validate-distribution.sh
--
diff --git a/bin/validate-distribution.sh b/bin/validate-distribution.sh
index 0121a1a..b071ea0 100755
--- a/bin/validate-distribution.sh
+++ b/bin/validate-distribution.sh
@@ -83,10 +83,11 @@ fi
 
 echo -n "* downloading ${COMPONENT} (${ZIP_FILENAME})... "
 curl -Lsf ${URL} -o ${ZIP_FILENAME} || { echo "Failed to download 
${COMPONENT}" ; exit 1; }
-for ext in "asc" "md5" "sha1"
+for ext in "asc" "sha1"
 do
   curl -Lsf ${URL}.${ext} -o ${ZIP_FILENAME}.${ext} || { echo "Failed to 
download ${COMPONENT} (${ext})" ; exit 1 ; }
 done
+curl -Lsf ${URL}.md5 -o ${ZIP_FILENAME}.md5 && { echo "MD5 checksums should 
not be released (${ZIP_FILENAME}.md5)" ; exit 1 ; }
 echo "OK"
 
 # validate zip file

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ed751d18/docs/src/dev/developer/release.asciidoc
--
diff --git a/docs/src/dev/developer/release.asciidoc 
b/docs/src/dev/developer/release.asciidoc
index c7c5bb7..608bb31 100644
--- a/docs/src/dev/developer/release.asciidoc
+++ b/docs/src/dev/developer/release.asciidoc
@@ -209,6 +209,7 @@ for generating javadoc and without that the binary 
distributions won't contain t
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/gremlin-console/xx.yy.zz/gremlin-console-xx.yy.zz-distribution.zip*
 dev/xx.yy.zz`
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/gremlin-server/xx.yy.zz/gremlin-server-xx.yy.zz-distribution.zip*
 dev/xx.yy.zz`
 .. `cp 
~/.m2/repository/org/apache/tinkerpop/tinkerpop/xx.yy.zz/tinkerpop-xx.yy.zz-source-release.zip*
 dev/xx.yy.zz`
+.. `rm -f dev/*.md5
 .. `cd dev/xx.yy.zz`
 .. pass:[ls * | xargs -n1 -I {} echo "mv apache-tinkerpop-{} {}" | sed 
-e 's/distribution/bin/' -e 's/source-release/src/' -e 
's/tinkerpop-tinkerpop/tinkerpop/' -e s'/^\(.*\) \(.*\) \(.*\)$/\1 \3 \2/' | 
/bin/bash]
 .. `cd ..; svn add xx.yy.zz/; svn ci -m "TinkerPop xx.yy.zz release"`



tinkerpop git commit: Fixed a spelling mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 e1a69fd80 -> 35bf95ad3


Fixed a spelling mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/35bf95ad
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/35bf95ad
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/35bf95ad

Branch: refs/heads/tp32
Commit: 35bf95ad31067a7a7203f21a310dd9d26e371f59
Parents: e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:13:43 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:13:43 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/35bf95ad/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index f44040a..d027376 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -324,7 +324,7 @@ g.V().
   by(values))
 
 
-The addition steps above `unfold()` the `Map` to key-value entries and filter 
the values for "n/a" and remove them
+The additional steps above `unfold()` the `Map` to key-value entries and 
filter the values for "n/a" and remove them
 prior to reconstructing the `Map` with the method shown earlier. To go a step 
further, apply the pattern presented
 earlier to flatten `List` values within a `Map`:
 



[1/2] tinkerpop git commit: Fixed a spelling mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/tp33 0c9afb614 -> cf6f9746e


Fixed a spelling mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/35bf95ad
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/35bf95ad
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/35bf95ad

Branch: refs/heads/tp33
Commit: 35bf95ad31067a7a7203f21a310dd9d26e371f59
Parents: e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:13:43 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:13:43 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/35bf95ad/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index f44040a..d027376 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -324,7 +324,7 @@ g.V().
   by(values))
 
 
-The addition steps above `unfold()` the `Map` to key-value entries and filter 
the values for "n/a" and remove them
+The additional steps above `unfold()` the `Map` to key-value entries and 
filter the values for "n/a" and remove them
 prior to reconstructing the `Map` with the method shown earlier. To go a step 
further, apply the pattern presented
 earlier to flatten `List` values within a `Map`:
 



[2/2] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread spmallette
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/cf6f9746
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/cf6f9746
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/cf6f9746

Branch: refs/heads/tp33
Commit: cf6f9746e3427f6c9cbc5c48d1153b2b523f5880
Parents: 0c9afb6 35bf95a
Author: Stephen Mallette 
Authored: Wed Apr 11 09:14:00 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:14:00 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[3/3] tinkerpop git commit: Merge branch 'tp33'

2018-04-11 Thread spmallette
Merge branch 'tp33'


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/973eda24
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/973eda24
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/973eda24

Branch: refs/heads/master
Commit: 973eda2477fa73ae1ba422968f8096fe0d46eb03
Parents: acaa5e8 cf6f974
Author: Stephen Mallette 
Authored: Wed Apr 11 09:14:08 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:14:08 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--




[1/3] tinkerpop git commit: Fixed a spelling mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/master acaa5e826 -> 973eda247


Fixed a spelling mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/35bf95ad
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/35bf95ad
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/35bf95ad

Branch: refs/heads/master
Commit: 35bf95ad31067a7a7203f21a310dd9d26e371f59
Parents: e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:13:43 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:13:43 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/35bf95ad/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index f44040a..d027376 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -324,7 +324,7 @@ g.V().
   by(values))
 
 
-The addition steps above `unfold()` the `Map` to key-value entries and filter 
the values for "n/a" and remove them
+The additional steps above `unfold()` the `Map` to key-value entries and 
filter the values for "n/a" and remove them
 prior to reconstructing the `Map` with the method shown earlier. To go a step 
further, apply the pattern presented
 earlier to flatten `List` values within a `Map`:
 



[3/3] tinkerpop git commit: Merge branch 'tp33'

2018-04-11 Thread spmallette
Merge branch 'tp33'


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/acaa5e82
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/acaa5e82
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/acaa5e82

Branch: refs/heads/master
Commit: acaa5e8265064f54670e915f020d382fb691ff7f
Parents: 6a6bd4f 0c9afb6
Author: Stephen Mallette 
Authored: Wed Apr 11 09:06:00 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:06:00 2018 -0400

--

--




[1/3] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/master 6a6bd4f5a -> acaa5e826


Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e1a69fd8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e1a69fd8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e1a69fd8

Branch: refs/heads/master
Commit: e1a69fd8075f02ae1f22c4195edd956bf988445a
Parents: 42bacaf
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:33 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e1a69fd8/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[2/2] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread spmallette
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0c9afb61
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0c9afb61
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0c9afb61

Branch: refs/heads/tp33
Commit: 0c9afb614bd79bc48d02cf63f94e8942c8a577e1
Parents: 0f08514 e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:05:46 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:46 2018 -0400

--

--




tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/tp32 42bacafbf -> e1a69fd80


Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e1a69fd8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e1a69fd8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e1a69fd8

Branch: refs/heads/tp32
Commit: e1a69fd8075f02ae1f22c4195edd956bf988445a
Parents: 42bacaf
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:33 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e1a69fd8/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[2/3] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread spmallette
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0c9afb61
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0c9afb61
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0c9afb61

Branch: refs/heads/master
Commit: 0c9afb614bd79bc48d02cf63f94e8942c8a577e1
Parents: 0f08514 e1a69fd
Author: Stephen Mallette 
Authored: Wed Apr 11 09:05:46 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:46 2018 -0400

--

--




[1/2] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/tp33 0f0851461 -> 0c9afb614


Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/e1a69fd8
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/e1a69fd8
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/e1a69fd8

Branch: refs/heads/tp33
Commit: e1a69fd8075f02ae1f22c4195edd956bf988445a
Parents: 42bacaf
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 09:05:33 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/e1a69fd8/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[1/3] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/master 722d57d11 -> 6a6bd4f5a


Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/da05f940
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/da05f940
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/da05f940

Branch: refs/heads/master
Commit: da05f9401100bb985c0697d06cb1a0487b14275f
Parents: df7870a
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:56:22 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/da05f940/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]
 



[2/2] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread spmallette
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0f085146
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0f085146
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0f085146

Branch: refs/heads/tp33
Commit: 0f085146135b109a70821da699ca502c52fb375c
Parents: aa40dfa da05f94
Author: Stephen Mallette 
Authored: Wed Apr 11 08:57:02 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:57:02 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--




[3/3] tinkerpop git commit: Merge branch 'tp33'

2018-04-11 Thread spmallette
Merge branch 'tp33'


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/6a6bd4f5
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/6a6bd4f5
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/6a6bd4f5

Branch: refs/heads/master
Commit: 6a6bd4f5a25e932a9d8ef80a187f8eae8f26773e
Parents: 722d57d 0f08514
Author: Stephen Mallette 
Authored: Wed Apr 11 08:57:14 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:57:14 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--




[2/3] tinkerpop git commit: Merge branch 'tp32' into tp33

2018-04-11 Thread spmallette
Merge branch 'tp32' into tp33


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/0f085146
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/0f085146
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/0f085146

Branch: refs/heads/master
Commit: 0f085146135b109a70821da699ca502c52fb375c
Parents: aa40dfa da05f94
Author: Stephen Mallette 
Authored: Wed Apr 11 08:57:02 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:57:02 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--




[1/2] tinkerpop git commit: Fixed a grammar mistake in collections recipe CTR

2018-04-11 Thread spmallette
Repository: tinkerpop
Updated Branches:
  refs/heads/tp33 aa40dfa6e -> 0f0851461


Fixed a grammar mistake in collections recipe CTR


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/da05f940
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/da05f940
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/da05f940

Branch: refs/heads/tp33
Commit: da05f9401100bb985c0697d06cb1a0487b14275f
Parents: df7870a
Author: Stephen Mallette 
Authored: Wed Apr 11 08:56:22 2018 -0400
Committer: Stephen Mallette 
Committed: Wed Apr 11 08:56:22 2018 -0400

--
 docs/src/recipes/collections.asciidoc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/da05f940/docs/src/recipes/collections.asciidoc
--
diff --git a/docs/src/recipes/collections.asciidoc 
b/docs/src/recipes/collections.asciidoc
index 61fee99..f44040a 100644
--- a/docs/src/recipes/collections.asciidoc
+++ b/docs/src/recipes/collections.asciidoc
@@ -64,9 +64,9 @@ g.V().fold().unfold().values('name')
 g.V().store('a').cap('a').unfold().values('name')
 
 
-The above examples show that `unfold()` works quite well when you want don't 
want to preserve the `List` structure of
-the traverser as it just flattens `List` traversers to the traversal stream. 
The above examples only have one `List`
-as a result, but consider what happens when there is more than one:
+The above examples show that `unfold()` works quite well when you don't want 
to preserve the `List` structure of the
+traverser as it just flattens `List` traversers to the traversal stream. The 
above examples only have one `List` as a
+result, but consider what happens when there is more than one:
 
 [gremlin-groovy,modern]