This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new afa041d  Added some images CTR
afa041d is described below

commit afa041d3f348f0cb9399287ea8cf5e5105b80275
Author: Stephen Mallette <[email protected]>
AuthorDate: Mon Dec 17 11:25:26 2018 -0500

    Added some images CTR
---
 docs/src/reference/intro.asciidoc                  |  28 ++++++++++-----------
 docs/static/images/blueprints-character-1.png      | Bin 0 -> 92815 bytes
 docs/static/images/blueprints-character-2.png      | Bin 0 -> 76156 bytes
 docs/static/images/blueprints-character-3.png      | Bin 0 -> 78918 bytes
 docs/static/images/frames-character-1.png          | Bin 0 -> 90541 bytes
 docs/static/images/frames-character-2.png          | Bin 0 -> 88217 bytes
 docs/static/images/frames-character-3.png          | Bin 0 -> 89257 bytes
 docs/static/images/furnace-character-2.png         | Bin 0 -> 58118 bytes
 docs/static/images/gremlin-chickenwing.png         | Bin 0 -> 34307 bytes
 docs/static/images/gremlin-clownin-around.png      | Bin 0 -> 23213 bytes
 docs/static/images/gremlin-grad.png                | Bin
 docs/static/images/gremlin-gremalicious.png        | Bin 0 -> 31216 bytes
 docs/static/images/gremlin-gremicide.png           | Bin 0 -> 24198 bytes
 docs/static/images/gremlin-gremlin-the-grouch.png  | Bin 0 -> 31944 bytes
 docs/static/images/gremlin-gremlin.png             | Bin 0 -> 21704 bytes
 docs/static/images/gremlin-gremlivich.png          | Bin 0 -> 30441 bytes
 docs/static/images/gremlin-gremopoly.png           | Bin 0 -> 28803 bytes
 docs/static/images/gremlin-gremreaper.png          | Bin 0 -> 33275 bytes
 docs/static/images/gremlin-gremstefani.png         | Bin 0 -> 32122 bytes
 docs/static/images/gremlin-hardhat.png             | Bin 0 -> 23783 bytes
 docs/static/images/gremlin-inthewild.png           | Bin 0 -> 36309 bytes
 docs/static/images/gremlin-kilt.png                | Bin 0 -> 29616 bytes
 docs/static/images/gremlin-new-sheriff-in-town.png | Bin 0 -> 30381 bytes
 docs/static/images/gremlin-no-more-mr-nice-guy.png | Bin 0 -> 27941 bytes
 docs/static/images/gremlin-on-the-case.png         | Bin 0 -> 31032 bytes
 docs/static/images/gremlin-pipe.png                | Bin 0 -> 31474 bytes
 docs/static/images/gremlin-xmas-alpha.png          | Bin 0 -> 18655 bytes
 docs/static/images/pipes-character-2.png           | Bin 0 -> 112929 bytes
 docs/static/images/pipes-character-3.png           | Bin 0 -> 120021 bytes
 docs/static/images/rexster-2.png                   | Bin 0 -> 28778 bytes
 30 files changed, 13 insertions(+), 15 deletions(-)

diff --git a/docs/src/reference/intro.asciidoc 
b/docs/src/reference/intro.asciidoc
index 9e84e6e..285a451 100644
--- a/docs/src/reference/intro.asciidoc
+++ b/docs/src/reference/intro.asciidoc
@@ -301,22 +301,22 @@ because the GTM is responsible for processing traversals. 
One can write Gremlin
 a GTM there will be no way to execute that traversal against a 
TinkerPop-enabled graph. The GTM is typically in one
 of the following places:
 
-* Embedded in a Java application (i.e. Java Virtual Machine)
-* Hosted in <<gremlin-server,Gremlin Server>>
-* Exposed by a remote Remote Gremlin Provider (RGP)
+* <<connecting-embedded,Embedded>> in a Java application (i.e. Java Virtual 
Machine)
+* <<connecting-gremlin-server,Hosted>> in <<gremlin-server,Gremlin Server>>
+* <<connecting-rgp,Hosted>> by a Remote Gremlin Provider (RGP)
 
 The following sections outline each of these models and what impact they have 
to using Gremlin.
 
 [[connecting-embedded]]
 === Embedded
 
-TinkerPop maintains the reference implementation for the GTM, which is written 
in Java and thus available for the
-Java Virtual Machine (JVM). This is the classic model that TinkerPop has long 
been based on and many examples, blog
-posts and other resources on the internet will be demonstrated in this style. 
It is worth noting that the embedded
-mode is not restricted to just Java as a programming language. Any JVM 
language can take this approach and in some
-cases there are language specific wrappers that can help make Gremlin more 
convenient to use in the style and
-capability of that language. Examples of these wrappers include 
link:https://github.com/mpollmeier/gremlin-scala[gremlin-scala]
-and link:http://ogre.clojurewerkz.org/[Ogre] (for Clojure).
+image:blueprints-character-1.png[width=125,float=left] TinkerPop maintains the 
reference implementation for the GTM,
+which is written in Java and thus available for the Java Virtual Machine 
(JVM). This is the classic model that
+TinkerPop has long been based on and many examples, blog posts and other 
resources on the internet will be
+demonstrated in this style. It is worth noting that the embedded mode is not 
restricted to just Java as a programming
+language. Any JVM language can take this approach and in some cases there are 
language specific wrappers that can help
+make Gremlin more convenient to use in the style and capability of that 
language. Examples of these wrappers include
+link:https://github.com/mpollmeier/gremlin-scala[gremlin-scala] and 
link:http://ogre.clojurewerkz.org/[Ogre] (for Clojure).
 
 In this mode, users will start by creating a `Graph` instance, followed by a 
`GraphTraversalSource` which is the class
 from which Gremlin traversals are spawned. Graphs that allow this sort of 
direct instantiation are obviously ones
@@ -359,9 +359,9 @@ methods by end-users.
 [[connecting-gremlin-server]]
 === Gremlin Server
 
-A JVM-based graph maybe be hosted in TinkerPop's <<gremlin-server,Gremlin 
Server>>. Gremlin Server exposes the graph
-as an endpoint to which different clients can connect, essentially providing a 
remote GTM. Gremlin Server supports
-multiple methods for clients to interface with it:
+image:rexster-character-3.png[width=125,float=left] A JVM-based graph maybe be 
hosted in TinkerPop's
+<<gremlin-server,Gremlin Server>>. Gremlin Server exposes the graph as an 
endpoint to which different clients can
+connect, essentially providing a remote GTM. Gremlin Server supports multiple 
methods for clients to interface with it:
 
 * Websockets with a 
link:http://tinkerpop.apache.org/docs/x.y.z/dev/provider/#_graph_driver_provider_requirements[custom
 sub-protocol]
 ** String-based Gremlin scripts
@@ -413,8 +413,6 @@ g = traversal().withRemote(
 As shown in the embedded approach in the previous section, once "g" is 
defined, writing Gremlin is structurally and
 conceptually the same irrespective of programming language.
 
-
-
 [[connecting-gremlin-server-limitations]]
 ==== Limitations
 
diff --git a/docs/static/images/blueprints-character-1.png 
b/docs/static/images/blueprints-character-1.png
new file mode 100644
index 0000000..cd99529
Binary files /dev/null and b/docs/static/images/blueprints-character-1.png 
differ
diff --git a/docs/static/images/blueprints-character-2.png 
b/docs/static/images/blueprints-character-2.png
new file mode 100644
index 0000000..30abdbd
Binary files /dev/null and b/docs/static/images/blueprints-character-2.png 
differ
diff --git a/docs/static/images/blueprints-character-3.png 
b/docs/static/images/blueprints-character-3.png
new file mode 100644
index 0000000..7e5292e
Binary files /dev/null and b/docs/static/images/blueprints-character-3.png 
differ
diff --git a/docs/static/images/frames-character-1.png 
b/docs/static/images/frames-character-1.png
new file mode 100644
index 0000000..0405dca
Binary files /dev/null and b/docs/static/images/frames-character-1.png differ
diff --git a/docs/static/images/frames-character-2.png 
b/docs/static/images/frames-character-2.png
new file mode 100644
index 0000000..85dff2d
Binary files /dev/null and b/docs/static/images/frames-character-2.png differ
diff --git a/docs/static/images/frames-character-3.png 
b/docs/static/images/frames-character-3.png
new file mode 100644
index 0000000..ce0f9c1
Binary files /dev/null and b/docs/static/images/frames-character-3.png differ
diff --git a/docs/static/images/furnace-character-2.png 
b/docs/static/images/furnace-character-2.png
new file mode 100644
index 0000000..1d59664
Binary files /dev/null and b/docs/static/images/furnace-character-2.png differ
diff --git a/docs/static/images/gremlin-chickenwing.png 
b/docs/static/images/gremlin-chickenwing.png
new file mode 100644
index 0000000..b549fa3
Binary files /dev/null and b/docs/static/images/gremlin-chickenwing.png differ
diff --git a/docs/static/images/gremlin-clownin-around.png 
b/docs/static/images/gremlin-clownin-around.png
new file mode 100644
index 0000000..9de14cf
Binary files /dev/null and b/docs/static/images/gremlin-clownin-around.png 
differ
diff --git a/docs/static/images/gremlin-grad.png 
b/docs/static/images/gremlin-grad.png
old mode 100644
new mode 100755
diff --git a/docs/static/images/gremlin-gremalicious.png 
b/docs/static/images/gremlin-gremalicious.png
new file mode 100644
index 0000000..4a2bd68
Binary files /dev/null and b/docs/static/images/gremlin-gremalicious.png differ
diff --git a/docs/static/images/gremlin-gremicide.png 
b/docs/static/images/gremlin-gremicide.png
new file mode 100644
index 0000000..68a53db
Binary files /dev/null and b/docs/static/images/gremlin-gremicide.png differ
diff --git a/docs/static/images/gremlin-gremlin-the-grouch.png 
b/docs/static/images/gremlin-gremlin-the-grouch.png
new file mode 100644
index 0000000..6a8ee89
Binary files /dev/null and b/docs/static/images/gremlin-gremlin-the-grouch.png 
differ
diff --git a/docs/static/images/gremlin-gremlin.png 
b/docs/static/images/gremlin-gremlin.png
new file mode 100644
index 0000000..90a3c97
Binary files /dev/null and b/docs/static/images/gremlin-gremlin.png differ
diff --git a/docs/static/images/gremlin-gremlivich.png 
b/docs/static/images/gremlin-gremlivich.png
new file mode 100644
index 0000000..ceca0a0
Binary files /dev/null and b/docs/static/images/gremlin-gremlivich.png differ
diff --git a/docs/static/images/gremlin-gremopoly.png 
b/docs/static/images/gremlin-gremopoly.png
new file mode 100644
index 0000000..de0f06e
Binary files /dev/null and b/docs/static/images/gremlin-gremopoly.png differ
diff --git a/docs/static/images/gremlin-gremreaper.png 
b/docs/static/images/gremlin-gremreaper.png
new file mode 100644
index 0000000..7aaf931
Binary files /dev/null and b/docs/static/images/gremlin-gremreaper.png differ
diff --git a/docs/static/images/gremlin-gremstefani.png 
b/docs/static/images/gremlin-gremstefani.png
new file mode 100644
index 0000000..90373b8
Binary files /dev/null and b/docs/static/images/gremlin-gremstefani.png differ
diff --git a/docs/static/images/gremlin-hardhat.png 
b/docs/static/images/gremlin-hardhat.png
new file mode 100644
index 0000000..8094eaf
Binary files /dev/null and b/docs/static/images/gremlin-hardhat.png differ
diff --git a/docs/static/images/gremlin-inthewild.png 
b/docs/static/images/gremlin-inthewild.png
new file mode 100644
index 0000000..f337c19
Binary files /dev/null and b/docs/static/images/gremlin-inthewild.png differ
diff --git a/docs/static/images/gremlin-kilt.png 
b/docs/static/images/gremlin-kilt.png
new file mode 100644
index 0000000..49a322d
Binary files /dev/null and b/docs/static/images/gremlin-kilt.png differ
diff --git a/docs/static/images/gremlin-new-sheriff-in-town.png 
b/docs/static/images/gremlin-new-sheriff-in-town.png
new file mode 100644
index 0000000..841af99
Binary files /dev/null and b/docs/static/images/gremlin-new-sheriff-in-town.png 
differ
diff --git a/docs/static/images/gremlin-no-more-mr-nice-guy.png 
b/docs/static/images/gremlin-no-more-mr-nice-guy.png
new file mode 100644
index 0000000..2b248d9
Binary files /dev/null and b/docs/static/images/gremlin-no-more-mr-nice-guy.png 
differ
diff --git a/docs/static/images/gremlin-on-the-case.png 
b/docs/static/images/gremlin-on-the-case.png
new file mode 100644
index 0000000..d3cdb33
Binary files /dev/null and b/docs/static/images/gremlin-on-the-case.png differ
diff --git a/docs/static/images/gremlin-pipe.png 
b/docs/static/images/gremlin-pipe.png
new file mode 100644
index 0000000..86a85da
Binary files /dev/null and b/docs/static/images/gremlin-pipe.png differ
diff --git a/docs/static/images/gremlin-xmas-alpha.png 
b/docs/static/images/gremlin-xmas-alpha.png
new file mode 100644
index 0000000..3cc2740
Binary files /dev/null and b/docs/static/images/gremlin-xmas-alpha.png differ
diff --git a/docs/static/images/pipes-character-2.png 
b/docs/static/images/pipes-character-2.png
new file mode 100644
index 0000000..91ce615
Binary files /dev/null and b/docs/static/images/pipes-character-2.png differ
diff --git a/docs/static/images/pipes-character-3.png 
b/docs/static/images/pipes-character-3.png
new file mode 100644
index 0000000..f12afd2
Binary files /dev/null and b/docs/static/images/pipes-character-3.png differ
diff --git a/docs/static/images/rexster-2.png b/docs/static/images/rexster-2.png
new file mode 100644
index 0000000..79a9c39
Binary files /dev/null and b/docs/static/images/rexster-2.png differ

Reply via email to