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 2015/11/09 14:01:30 UTC

[7/8] incubator-tinkerpop git commit: Add an image to the getting started tutorial.

Add an image to the getting started tutorial.


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

Branch: refs/heads/master
Commit: 6701cc80816e3689c27ab2bd840258d7b851daa6
Parents: 364ea69
Author: Stephen Mallette <sp...@genoprime.com>
Authored: Fri Nov 6 10:04:56 2015 -0500
Committer: Stephen Mallette <sp...@genoprime.com>
Committed: Fri Nov 6 10:04:56 2015 -0500

----------------------------------------------------------------------
 docs/src/tutorials-getting-started.asciidoc       |  12 +++++++-----
 docs/static/images/gremlin-on-software-vertex.png | Bin 0 -> 39573 bytes
 2 files changed, 7 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6701cc80/docs/src/tutorials-getting-started.asciidoc
----------------------------------------------------------------------
diff --git a/docs/src/tutorials-getting-started.asciidoc b/docs/src/tutorials-getting-started.asciidoc
index 456b4aa..e890eab 100644
--- a/docs/src/tutorials-getting-started.asciidoc
+++ b/docs/src/tutorials-getting-started.asciidoc
@@ -29,7 +29,7 @@ most recognizable citizen of The TinkerPop, is here to help with this thirty min
 thirty short minutes, you too can be fit to start building graph applications with TinkerPop. Welcome to _The Gremlin
 TinkerPop - by Gremlin_!
 
-image::gremlin-gym.png[]
+image::gremlin-gym.png[width=1024]
 
 The First Five Minutes
 ----------------------
@@ -73,7 +73,7 @@ graphs, working out complex traversals, etc.
 
 To get Gremlin to traverse a graph, you need a `Graph` instance, which holds the
 link:http://tinkerpop.incubator.apache.org/docs/x.y.z/#_the_graph_structure[structure] and data of the
-graph. TinkerPop is an graph abstraction layer over different graph databases and different graph processors, so there
+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 link:http://tinkerpop.incubator.apache.org/docs/x.y.z/#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.
@@ -335,9 +335,11 @@ step. We know how to find the "software" that "marko" created:
 g.V().has('name','marko').out('created')
 ----
 
-Let's extend on that to try to learn who "marko" collaborates with. To do that, we should first picture Gremlin
-standing on the "software" vertex. To find out who "created" that "software" we need to have Gremlin traverse back
-_in_ along the "created" edges to find the "person" vertices tied to it.
+image:gremlin-on-software-vertex.png[width=300,float=right] Let's extend on that to try to learn who "marko"
+collaborates with. In other words, let's try to answer the question of: "Who are the people that "marko" develops
+"software" with?" To do that, we should first picture Gremlin standing on the "software" vertex. To find out who
+"created" that "software" we need to have Gremlin traverse back _in_ along the "created" edges to find the "person"
+vertices tied to it.
 
 [gremlin-groovy,modern]
 ----

http://git-wip-us.apache.org/repos/asf/incubator-tinkerpop/blob/6701cc80/docs/static/images/gremlin-on-software-vertex.png
----------------------------------------------------------------------
diff --git a/docs/static/images/gremlin-on-software-vertex.png b/docs/static/images/gremlin-on-software-vertex.png
new file mode 100755
index 0000000..8100ee7
Binary files /dev/null and b/docs/static/images/gremlin-on-software-vertex.png differ