You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by ok...@apache.org on 2016/09/09 00:27:25 UTC

tinkerpop git commit: bug in the docs. the ws: URL is /gremlin. dah. live demo was hangin' with HTTP timeouts. @spmallette or @dkuppitz, can you change the HTML on the 3.2.2 release. see the minor tweak I just did in this commit.

Repository: tinkerpop
Updated Branches:
  refs/heads/master ec02e88e0 -> ec76c2670


bug in the docs. the ws: URL is /gremlin. dah. live demo was hangin' with HTTP timeouts. @spmallette or @dkuppitz, can you change the HTML on the 3.2.2 release<question mark>. see the minor tweak I just did in this commit.


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

Branch: refs/heads/master
Commit: ec76c2670fc29de5171f95edb74fd8a9537bf209
Parents: ec02e88
Author: Marko A. Rodriguez <ok...@gmail.com>
Authored: Thu Sep 8 17:27:19 2016 -0700
Committer: Marko A. Rodriguez <ok...@gmail.com>
Committed: Thu Sep 8 17:27:19 2016 -0700

----------------------------------------------------------------------
 docs/src/reference/gremlin-variants.asciidoc                | 2 +-
 docs/src/tutorials/gremlin-language-variants/index.asciidoc | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ec76c267/docs/src/reference/gremlin-variants.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/reference/gremlin-variants.asciidoc b/docs/src/reference/gremlin-variants.asciidoc
index 86e0e5b..0673867 100644
--- a/docs/src/reference/gremlin-variants.asciidoc
+++ b/docs/src/reference/gremlin-variants.asciidoc
@@ -122,7 +122,7 @@ Within the CPython console, it is possible to evaluate the following.
 
 [source,python]
 >>> graph = Graph()
->>> g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182','g'))
+>>> g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g'))
 
 When a traversal spawned from the `GraphTraversalSource` above is iterated, the traveral's `Bytecode` is sent over the wire
 via the registered `RemoteConnection`. The bytecode is used to construct the equivalent traversal at the remote traversal source.

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ec76c267/docs/src/tutorials/gremlin-language-variants/index.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/tutorials/gremlin-language-variants/index.asciidoc b/docs/src/tutorials/gremlin-language-variants/index.asciidoc
index 0c26992..533aa04 100644
--- a/docs/src/tutorials/gremlin-language-variants/index.asciidoc
+++ b/docs/src/tutorials/gremlin-language-variants/index.asciidoc
@@ -551,7 +551,7 @@ Type "help", "copyright", "credits" or "license" for more information.
 # loading statics enables __.out() to be out() and P.gt() to be gt()
 >>> statics.load_statics(globals())
 >>> graph = Graph()
->>> g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182','g'))
+>>> g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g'))
 # nested traversal with Python slicing and attribute interception extensions
 >>> g.V().hasLabel("person").repeat(both()).times(2).name[0:2].toList()
 [u'marko', u'marko']