Skip to content

Commit 69876f5

Browse files
authored
Replacing underscores with hyphens for crawlability (#206) (#207)
1 parent d6ca482 commit 69876f5

13 files changed

+21
-21
lines changed

modules/ROOT/content-nav.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
** xref:java-embedded/query-parameters.adoc[]
3131
3232
* xref:traversal-framework/index.adoc[]
33-
** xref:traversal-framework/traversal_framework_java_api.adoc[]
34-
** xref:traversal-framework/bidirectional_traversal_framework.adoc[]
35-
** xref:traversal-framework/traversal_framework_example.adoc[]
33+
** xref:traversal-framework/traversal-framework-java-api.adoc[]
34+
** xref:traversal-framework/bidirectional-traversal-framework.adoc[]
35+
** xref:traversal-framework/traversal-framework-example.adoc[]
3636
3737
* xref:transaction-management.adoc[]
3838

modules/ROOT/images/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -25,24 +25,24 @@ Images.
2525
![](hello-world.png)
2626

2727

28-
`jconsole_beans.png`
28+
`jconsole-beans.png`
2929

30-
![](jconsole_beans.png)
30+
![](jconsole-beans.png)
3131

3232

33-
`jconsole_beans1.png`
33+
`jconsole-beans1.png`
3434

35-
![](jconsole_beans.png)
35+
![](jconsole-beans.png)
3636

3737

38-
`jconsole_connect.png`
38+
`jconsole-connect.png`
3939

40-
![](jconsole_beans.png)
40+
![](jconsole-beans.png)
4141

4242

43-
`jconsole_connect1.png`
43+
`jconsole-connect1.png`
4444

45-
![](jconsole_connect1.png)
45+
![](jconsole-connect1.png)
4646

4747

4848
`play.png`
File renamed without changes.

modules/ROOT/pages/jmx-metrics.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ $JAVA_HOME/bin/jconsole
172172
Connect to the process running your Neo4j database instance:
173173

174174
.Connecting JConsole to the Neo4j Java process
175-
image::jconsole_connect1.png[alt="Connecting with JConsole", width=300]
175+
image::jconsole-connect1.png[alt="Connecting with JConsole", width=300]
176176

177177
[NOTE]
178178
====
@@ -187,5 +187,5 @@ Under that, you have access to all the monitoring information exposed by Neo4j.
187187
For opening JMX to remote monitoring access, please see <<jmx-remote>> and link:https://docs.oracle.com/en/java/javase/11/management/monitoring-and-management-using-jmx-technology.html#GUID-805517EC-2D33-4D61-81D8-4D0FA770D1B8[the JMX documention^].
188188

189189
.Neo4j MBeans view
190-
image::jconsole_beans1.png[alt="Neo4j MBeans view", width=600]
190+
image::jconsole-beans1.png[alt="Neo4j MBeans view", width=600]
191191

modules/ROOT/pages/traversal-framework/bidirectional_traversal_framework.adoc modules/ROOT/pages/traversal-framework/bidirectional-traversal-framework.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ In the accepted path `(1)-[:A]->(2)-[:A]->(3)-[:B]->(4)-[:B]->(5)`, the traverse
2222
====
2323
The `Uniqueness` is shared between both traversals, which means that there will be no results if the `Uniqueness` is set to `Uniqueness.NODE_GLOBAL` (which is the default) as both traversals need to reach the same node to cause a collision.
2424
Therefore, when using `BidirectionalTraversalDescription`, always set the `Uniqueness` manually.
25-
For more information on the available options, see xref:traversal-framework/traversal_framework_java_api.adoc#traversal-java-api-uniqueness[`Uniqueness` options].
25+
For more information on the available options, see xref:traversal-framework/traversal-framework-java-api.adoc#traversal-java-api-uniqueness[`Uniqueness` options].
2626
====
2727

2828
== Defining the bidirectional traverser

modules/ROOT/pages/traversal-framework/index.adoc

+4-4
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ image::graphdb-traversal-description.svg[role="middle"]
2929

3030
The Traversal Framework can be used xref:java-embedded/traversal.adoc[embedded in Java applications].
3131
It can also be used when extending Neo4j with a xref:/extending-neo4j/procedures.adoc[User-defined Procedure].
32-
For an example, see xref:traversal-framework/traversal_framework_example.adoc#traversal-in-a-procedure-example[User-defined procedure with a Traversal Framework].
32+
For an example, see xref:traversal-framework/traversal-framework-example.adoc#traversal-in-a-procedure-example[User-defined procedure with a Traversal Framework].
3333

3434
[[traversal-vs-cypher]]
3535
== Traversal Framework vs Cypher
@@ -41,11 +41,11 @@ Some of the advantages of using the Traversal Framework over Cypher include:
4141

4242
* The Traversal Framework allows the use of any desired Java library to help in the evaluation of the traversal.
4343
* It allows customized pruning during the traversal of a path, which could potentially improve the performance of a traversal.
44-
See xref:/traversal-framework/traversal_framework_java_api.adoc#traversal-java-api-evaluator[Evaluator] for more information.
44+
See xref:/traversal-framework/traversal-framework-java-api.adoc#traversal-java-api-evaluator[Evaluator] for more information.
4545
* With Cypher, it is not possible to specify the order in which paths are expanded (e.g. depth-first).
46-
However, with the Traversal Framework, it is possible to specify the xref:/traversal-framework/traversal_framework_java_api.adoc#traversal-java-api-branchselector[order of paths traversed].
46+
However, with the Traversal Framework, it is possible to specify the xref:/traversal-framework/traversal-framework-java-api.adoc#traversal-java-api-branchselector[order of paths traversed].
4747
* With Cypher, relationships are only traversed when `RELATIONSHIP_GLOBAL` uniqueness is specified.
48-
By using the Traversal Framework, it is possible to specify the xref:/traversal-framework/traversal_framework_java_api.adoc#traversal-java-api-uniqueness[uniqueness constraints on the path traversed].
48+
By using the Traversal Framework, it is possible to specify the xref:/traversal-framework/traversal-framework-java-api.adoc#traversal-java-api-uniqueness[uniqueness constraints on the path traversed].
4949

5050
[WARNING]
5151
====

modules/ROOT/pages/traversal-framework/traversal_framework_example.adoc modules/ROOT/pages/traversal-framework/traversal-framework-example.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
The following are some examples of how you can use the Traversal Framework.
99
The source code for the examples can be found in link:https://github.com/neo4j/neo4j-documentation/blob/dev/embedded-examples/src/main/java/org/neo4j/examples/TraversalExample.java[`TraversalExample.java`^].
1010

11-
image::traversal_framework_example.svg[role="middle"]
11+
image::traversal-framework-example.svg[role="middle"]
1212

1313
This graph illustrates a small group of friends with the definition of `RelationshipType`:
1414

@@ -119,7 +119,7 @@ This gives the following output:
119119
(0)-[KNOWS,0]->(2)<-[KNOWS,2]-(3)<-[KNOWS,3]-(4)<-[KNOWS,4]-(1)
120120
----
121121

122-
For other useful evaluators, see xref:traversal-framework/traversal_framework_java_api.adoc#traversal-java-api-evaluator[Using Evaluators].
122+
For other useful evaluators, see xref:traversal-framework/traversal-framework-java-api.adoc#traversal-java-api-evaluator[Using Evaluators].
123123

124124
The `Traverser` also has a `nodes()` method, which returns an `Iterable` of all the nodes in the paths:
125125

modules/ROOT/pages/traversal-framework/traversal_framework_java_api.adoc modules/ROOT/pages/traversal-framework/traversal-framework-java-api.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ Keep in mind that breadth-first traversals have a higher memory overhead than de
230230

231231
The following example shows the result of `BranchOrderingPolicy` without any extra filter:
232232

233-
image::traversal_order_example_graph.png[align="center", role="middle", width=200]
233+
image::traversal-order-example-graph.png[align="center", role="middle", width=200]
234234

235235
[cols="1,1"]
236236
|===

0 commit comments

Comments
 (0)