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

[1/4] tinkerpop git commit: fixed option step header

Repository: tinkerpop
Updated Branches:
  refs/heads/master e1543f101 -> 0c6971019


fixed option step header


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

Branch: refs/heads/master
Commit: 7cae75a8af39fa583dbcc66382595de9427262c3
Parents: e1543f1
Author: Robert Dale <ro...@gmail.com>
Authored: Tue Sep 6 16:54:13 2016 -0400
Committer: Robert Dale <ro...@gmail.com>
Committed: Tue Sep 6 16:54:13 2016 -0400

----------------------------------------------------------------------
 docs/src/reference/the-traversal.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/7cae75a8/docs/src/reference/the-traversal.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-traversal.asciidoc b/docs/src/reference/the-traversal.asciidoc
index 6bf904d..34e6b4d 100644
--- a/docs/src/reference/the-traversal.asciidoc
+++ b/docs/src/reference/the-traversal.asciidoc
@@ -1129,7 +1129,7 @@ This works for `Collection` and `Number`-type objects. For any other object, a m
 
 [[option-step]]
 Option Step
-~~~~~~~~~~~~~
+~~~~~~~~~~~
 
 An option to a <<branch-step,`branch()`>> or <<choose-step,`choose()`>>
 


[4/4] tinkerpop git commit: Merge branch 'pr-401'

Posted by sp...@apache.org.
Merge branch 'pr-401'


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

Branch: refs/heads/master
Commit: 0c6971019c2892f45d4337bf9be3a15cbba2d623
Parents: a351964 7cae75a
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Sep 7 07:36:45 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Sep 7 07:36:45 2016 -0400

----------------------------------------------------------------------
 docs/src/reference/the-traversal.asciidoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------



[3/4] tinkerpop git commit: Removed tabs from GraphSON 2.0 example

Posted by sp...@apache.org.
Removed tabs from GraphSON 2.0 example

Tabs mess up the asciidoc formatting CTR


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

Branch: refs/heads/master
Commit: a351964762dd1424784c3c5c156c4dab7bb9899a
Parents: 84a973c
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Sep 7 07:34:37 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Sep 7 07:34:37 2016 -0400

----------------------------------------------------------------------
 docs/src/reference/the-graph.asciidoc | 100 ++++++++++++++---------------
 1 file changed, 49 insertions(+), 51 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/a3519647/docs/src/reference/the-graph.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/the-graph.asciidoc b/docs/src/reference/the-graph.asciidoc
index c8b6153..42b1a76 100644
--- a/docs/src/reference/the-graph.asciidoc
+++ b/docs/src/reference/the-graph.asciidoc
@@ -716,65 +716,63 @@ graph.io(graphson()).writer().mapper(mapper).create().writeVertex(f, g.V(1).next
 f.close()
 ----
 
-////
 Creating a GraphSON 2.0 mapper is done by calling `.version(GraphSONVersion.V2_0)` on the mapper builder. Here's is the
 example output from the code above:
 
 [source, json]
 ----
 {
-	"@type": "g:Vertex",
-	"@value": {
-		"id": {
-			"@type": "g:Int32",
-			"@value": 1
-		},
-		"label": "person",
-		"properties": {
-			"name": [{
-				"@type": "g:VertexProperty",
-				"@value": {
-					"id": {
-						"@type": "g:Int64",
-						"@value": 0
-					},
-					"value": "marko",
-					"label": "name"
-				}
-			}],
-			"uuid": [{
-				"@type": "g:VertexProperty",
-				"@value": {
-					"id": {
-						"@type": "g:Int64",
-						"@value": 12
-					},
-					"value": {
-						"@type": "g:UUID",
-						"@value": "829c7ddb-3831-4687-a872-e25201230cd3"
-					},
-					"label": "uuid"
-				}
-			}],
-			"age": [{
-				"@type": "g:VertexProperty",
-				"@value": {
-					"id": {
-						"@type": "g:Int64",
-						"@value": 1
-					},
-					"value": {
-						"@type": "g:Int32",
-						"@value": 29
-					},
-					"label": "age"
-				}
-			}]
-		}
-	}
+    "@type": "g:Vertex",
+    "@value": {
+        "id": {
+            "@type": "g:Int32",
+            "@value": 1
+        },
+        "label": "person",
+        "properties": {
+            "name": [{
+                "@type": "g:VertexProperty",
+                "@value": {
+                    "id": {
+                        "@type": "g:Int64",
+                        "@value": 0
+                    },
+                    "value": "marko",
+                    "label": "name"
+                }
+            }],
+            "uuid": [{
+                "@type": "g:VertexProperty",
+                "@value": {
+                    "id": {
+                        "@type": "g:Int64",
+                        "@value": 12
+                    },
+                    "value": {
+                        "@type": "g:UUID",
+                        "@value": "829c7ddb-3831-4687-a872-e25201230cd3"
+                    },
+                    "label": "uuid"
+                }
+            }],
+            "age": [{
+                "@type": "g:VertexProperty",
+                "@value": {
+                    "id": {
+                        "@type": "g:Int64",
+                        "@value": 1
+                    },
+                    "value": {
+                        "@type": "g:Int32",
+                        "@value": 29
+                    },
+                    "label": "age"
+                }
+            }]
+        }
+    }
 }
 ----
-////
 
 Types can be disabled when creating a GraphSON 2.0 `Mapper` with:
 


[2/4] tinkerpop git commit: Fixed broken link in document index CTR

Posted by sp...@apache.org.
Fixed broken link in document index CTR


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

Branch: refs/heads/master
Commit: 84a973c2167f1053e6d51323f2604d7c457afcee
Parents: e1543f1
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Sep 7 07:04:45 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Sep 7 07:04:45 2016 -0400

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


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/84a973c2/docs/src/index.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/index.asciidoc b/docs/src/index.asciidoc
index f5295bd..2270043 100644
--- a/docs/src/index.asciidoc
+++ b/docs/src/index.asciidoc
@@ -53,7 +53,7 @@ A gentle introduction to TinkerPop and the Gremlin traversal language that is di
 Provides a detailed look at The Gremlin Console and how it can be used when working with TinkerPop.
 ^|image:gremlin-chef.png[width=125] |link:http://tinkerpop.apache.org/docs/x.y.z/recipes/[Gremlin Recipes]
 A collection of best practices and common traversal patterns for Gremlin.
-^|image:gremlin-house-of-mirrors-cropped.png[width=200] |link:http://tinkerpop.apache.org/docs/x.y.z/gremlin-language-variants/[Gremlin Language Variants]
+^|image:gremlin-house-of-mirrors-cropped.png[width=200] |link:http://tinkerpop.apache.org/docs/x.y.z/tutorials/gremlin-language-variants/[Gremlin Language Variants]
 Instructs developers on the approach to building a Gremlin variant in their native programming language.
 |image:gremlin-lab-coat.png[width=200] |link:http://sql2gremlin.com/[Sql2Gremlin] +
 Learn Gremlin using typical patterns found when querying data with SQL. (*external*)