Skip to content

Commit e2d3fef

Browse files
committed
Converted http to https in links
1 parent 5118c40 commit e2d3fef

File tree

4 files changed

+13
-14
lines changed

4 files changed

+13
-14
lines changed

book/Section-Introducing-Gremlin-Server.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ simple HTTP protocols.
3131

3232
NOTE: The official Apache TinkerPop documentation includes in-depth coverage of
3333
configuring and using Gremlin Server.
34-
http://tinkerpop.apache.org/docs/current/reference/#gremlin-server
34+
https://tinkerpop.apache.org/docs/current/reference/#gremlin-server
3535

3636
Gremlin Server offers a lot of valuable capabilities. In this section we are going to
3737
explain how to customize a local Gremlin Server setup with TinkerGraph. There are
@@ -55,7 +55,7 @@ infrastructure of their production graph. TinkerGraph can be configured within
5555
Gremlin Server to try to closely mimic the behavior of the that production graph.
5656

5757
You can download Gremlin Server from the official Apache TinkerPop website at
58-
http://tinkerpop.apache.org/
58+
https://tinkerpop.apache.org/
5959

6060
It only takes a few minutes to get Gremlin Server installed and running. You
6161
download the ZIP, 'unzip' it and you are all set. As with Gremlin Console,

book/Section-Introduction.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,8 @@ only generated formats that are updated outside the full release cycle. The PDF
279279
version includes pagination as well as page numbering and is produced using an A4
280280
page size. The HTML version does not include these features. Otherwise, they are
281281
more or less identical.
282-
- http://kelvinlawrence.net/book/PracticalGremlin.pdf
283-
- http://kelvinlawrence.net/book/PracticalGremlin.html
282+
- https://kelvinlawrence.net/book/PracticalGremlin.pdf
283+
- https://kelvinlawrence.net/book/PracticalGremlin.html
284284
Official book releases in multiple formats::
285285
- Official releases include Asciidoc, HTML, PDF, ePub, MOBI and DocBook versions as
286286
well as snapshots of all the samples and other materials in a single package

book/Section-Moving-Beyond.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Java application that uses Gremlin and TinkerGraph.
5353
There are a number of Java interfaces and classes, defined by the Apache TinkerPop
5454
project, that you will want to become familiar with. The most recent JavaDoc format
5555
API documentation is always available at
56-
http://tinkerpop.apache.org/javadocs/current/full
56+
https://tinkerpop.apache.org/javadocs/current/full
5757

5858
The TinkerPop JavaDoc is a bit lacking in terms of English prose but is still a
5959
useful source of reference information when it comes to methods, parameters and
@@ -378,7 +378,7 @@ Java find confusing is figuring out which Classes and Enums have been statically
378378
imported "behind the scenes" and how to access those same capabilities from Java. You
379379
should also bookmark the TinkerPop javadoc pages as you can find more detail on all
380380
of the classes and enums covered below there. The latest javadoc is always available
381-
at http://tinkerpop.apache.org/javadocs/current/full/
381+
at https://tinkerpop.apache.org/javadocs/current/full/
382382

383383
NOTE: The source code in this section comes from the 'TestImports.java' sample
384384
located at https://github.com/krlawrence/graph/tree/main/sample-code/java and

book/Section-Writing-Gremlin-Queries.adoc

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ rather, We have tried to provide a good and approachable foundation in writing m
217217
different types of Gremlin query using an interesting and real-world graph.
218218

219219
NOTE: The latest TinkerPop documentation is always available at this URL:
220-
http://tinkerpop.apache.org/docs/current/reference/
220+
https://tinkerpop.apache.org/docs/current/reference/
221221

222222
Below are some simple queries against the 'air-routes' graph to get us started. It is
223223
assumed that the 'air-routes' graph has been loaded already per the instructions
@@ -2079,7 +2079,7 @@ the 'with' modulator.
20792079

20802080
NOTE: The valueMap configuration options are described in the official
20812081
documentation at the following link
2082-
http://tinkerpop.apache.org/docs/current/reference/#valuemap-step.
2082+
https://tinkerpop.apache.org/docs/current/reference/#valuemap-step.
20832083

20842084
Instead of using 'valueMap(true)' to include the ID and label of an element (a vertex
20852085
or an edge) in the results, the new 'with(WithOptions.tokens)' construct can
@@ -2107,8 +2107,7 @@ desc=[San Francisco International Airport]
21072107

21082108
TIP: All of the possible values that can be specified using WithOptions can be found
21092109
in the official Apache TinkerPop JavaDoc documentation
2110-
http://tinkerpop.apache.org/javadocs/current/full/org/apache/tinkerpop/gremlin/process/traversal/step/util/WithOptions.html[at
2111-
this location].
2110+
https://tinkerpop.apache.org/javadocs/current/full/org/apache/tinkerpop/gremlin/process/traversal/step/util/WithOptions.html.
21122111

21132112
You can still include the ID and label in the results, along with a subset of the
21142113
properties, by explicitly naming the property keys you are interested in. In the
@@ -4424,7 +4423,7 @@ one or more characters within a string of text and three that search for the non
44244423
existence of one or more characters.
44254424

44264425
TIP: Additional information on the text predicates can be found in the official
4427-
Apache TinkerPop documentation here: http://tinkerpop.apache.org/docs/current/reference/#a-note-on-predicates
4426+
Apache TinkerPop documentation here: https://tinkerpop.apache.org/docs/current/reference/#a-note-on-predicates
44284427

44294428
.Text searching predicates
44304429
[cols="^1,4"]
@@ -7407,7 +7406,7 @@ The 'repeat' step can be nested inside another 'repeat' step as well as inside '
74077406
and 'until' steps.
74087407

74097408
TIP: The official documentation for these new capabilities can be located here:
7410-
http://tinkerpop.apache.org/docs/current/reference/#repeat-step
7409+
https://tinkerpop.apache.org/docs/current/reference/#repeat-step
74117410

74127411
It is also possible to label a repeat step with a name so that it can be referenced
74137412
later in a traversal. Nested 'repeat' steps allow for some interesting new graph
@@ -8459,7 +8458,7 @@ query, the result set will consist of a number of individual lists all with an i
84598458
of zero.
84608459

84618460
TIP: The official Apache TinkerPop documentation for the 'index' step can be found at
8462-
the following link http://tinkerpop.apache.org/docs/current/reference/#index-step.
8461+
the following link https://tinkerpop.apache.org/docs/current/reference/#index-step.
84638462

84648463
[source,groovy]
84658464
----
@@ -8522,7 +8521,7 @@ which is the default. The results are then sorted in reverse order.
85228521

85238522
TIP: All of the possible values that can be specified using WithOptions can be found
85248523
in the official Apache TinkerPop JavaDoc documentation
8525-
http://tinkerpop.apache.org/javadocs/current/full/org/apache/tinkerpop/gremlin/process/traversal/step/util/WithOptions.html[at
8524+
https://tinkerpop.apache.org/javadocs/current/full/org/apache/tinkerpop/gremlin/process/traversal/step/util/WithOptions.html[at
85268525
this location].
85278526

85288527
Note that this query uses 'desc' rather than the now deprecated 'decr' to ask for

0 commit comments

Comments
 (0)