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/08/31 19:58:46 UTC

[1/2] tinkerpop git commit: Added logj to gremlin-python as it no longer comes from gremlin-test as it there CTR

Repository: tinkerpop
Updated Branches:
  refs/heads/master 01398b044 -> 2baaaa766


Added logj to gremlin-python as it no longer comes from gremlin-test as it <optional> there CTR


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

Branch: refs/heads/master
Commit: 5162507e1759de45dde5cdd6c3f929eb78ed3629
Parents: 01398b0
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Aug 31 15:57:16 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Aug 31 15:58:19 2016 -0400

----------------------------------------------------------------------
 gremlin-python/pom.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/5162507e/gremlin-python/pom.xml
----------------------------------------------------------------------
diff --git a/gremlin-python/pom.xml b/gremlin-python/pom.xml
index d455ec8..0b1b8b1 100644
--- a/gremlin-python/pom.xml
+++ b/gremlin-python/pom.xml
@@ -70,6 +70,12 @@
             <version>${project.version}</version>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.slf4j</groupId>
+            <artifactId>slf4j-log4j12</artifactId>
+            <version>${slf4j.version}</version>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <properties>
         <!-- provide a way to convert maven.test.skip value to skipTests for use in skipping python tests -->


[2/2] tinkerpop git commit: Fixed the RST format for "code block" CTR

Posted by sp...@apache.org.
Fixed the RST format for "code block" CTR


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

Branch: refs/heads/master
Commit: 2baaaa7665282389c9c31044f4e393ffb856cba4
Parents: 5162507
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Wed Aug 31 15:58:23 2016 -0400
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Wed Aug 31 15:58:23 2016 -0400

----------------------------------------------------------------------
 gremlin-python/src/main/jython/README | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2baaaa76/gremlin-python/src/main/jython/README
----------------------------------------------------------------------
diff --git a/gremlin-python/src/main/jython/README b/gremlin-python/src/main/jython/README
index 84ab9e8..a42db62 100644
--- a/gremlin-python/src/main/jython/README
+++ b/gremlin-python/src/main/jython/README
@@ -30,14 +30,14 @@ Gremlin-Python implements Gremlin within the Python language and can be used on
 the popular CPython machine. Python\u2019s syntax has the same constructs as Java including "dot notation" for function
 chaining ``(a.b.c)``, round bracket function arguments ``(a(b,c))```, and support for global namespaces
 ``(a(b()) vs a(__.b()))```. As such, anyone familiar with Gremlin-Java will immediately be able to work with
-Gremlin-Python. Moreover, there are a few added constructs to Gremlin-Python that make traversals a bit more succinct.
+Gremlin-Python. Moreover, there are a few added constructs to Gremlin-Python that make traversals a bit more succinct._::
 
-| >>> g.V().both()[1:3].toList()
-| [v[2], v[4]]
-| >>> g.V().both()[1].toList()
-| [v[2]]
-| >>> g.V().both().name.toList()
-| [lop, vadas, josh, marko, marko, josh, peter, ripple, lop, marko, josh, lop]
+    >>> g.V().both()[1:3].toList()
+    [v[2], v[4]]
+    >>> g.V().both()[1].toList()
+    [v[2]]
+    >>> g.V().both().name.toList()
+    [lop, vadas, josh, marko, marko, josh, peter, ripple, lop, marko, josh, lop]
 
 Please see the `reference documentation <http://tinkerpop.apache.org/docs/current/reference/#gremlin-python>`_
 at Apache TinkerPop for more information on usage.
\ No newline at end of file