Skip to content

Commit aac58bb

Browse files
Replace page-version with current in links (#260)
* Replace `page-version` with `current` in links * Put back `page-version` for the Ops manual and fix links on locks/deadlocks * Update modules/ROOT/pages/java-embedded/unique-nodes.adoc * Update modules/ROOT/pages/extending-neo4j/unmanaged-extensions.adoc
1 parent 6910e99 commit aac58bb

10 files changed

+13
-13
lines changed

modules/ROOT/pages/extending-neo4j/customized-code.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ In addition, procedures can perform write operations on the database.
5353

5454
Neo4j also comes bundled with a number of _built-in_ procedures and functions.
5555

56-
The available built-in procedures vary depending on edition and mode, as described in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures[Operations Manual -> Procedures].
56+
The available built-in procedures vary depending on edition and mode, as described in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/procedures[Operations Manual -> Procedures].
5757
Running `SHOW PROCEDURES` displays the full list of procedures available in your Neo4j DBMS, including user-defined procedures.
5858

59-
The built-in functions are described in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/functions[Cypher Manual -> Functions].
59+
The built-in functions are described in link:{neo4j-docs-base-uri}/cypher-manual/current/functions[Cypher Manual -> Functions].
6060
Running `SHOW FUNCTIONS` displays the full list of all the functions available in your Neo4j DBMS, including user-defined functions.
6161

modules/ROOT/pages/extending-neo4j/procedures.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CALL org.neo4j.examples.findDenseNodes(1000)
2828

2929
`CALL` may be the only clause within a Cypher statement or may be combined with other clauses.
3030
Arguments can be supplied directly within the query or taken from the associated parameter set.
31-
For full details, see the documentation in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/clauses/call[Cypher Manual -> `CALL` procedure].
31+
For full details, see the documentation in link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/call[Cypher Manual -> `CALL` procedure].
3232

3333

3434
[[user-defined-procedures]]

modules/ROOT/pages/extending-neo4j/unmanaged-extensions.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ When writing unmanaged extensions, you have greater control over the amount of m
102102
If you keep too much state around, it can lead to more frequent full Garbage Collection and subsequent unresponsiveness by the Neo4j server.
103103

104104
A common way that state can increase, is the creation of JSON objects to represent the result of a query, which is then sent back to your application.
105-
Neo4j's Transactional Cypher HTTP endpoint (see link:{neo4j-docs-base-uri}/http-api/{page-version}/actions[HTTP API Docs -> transactional Cypher endpoint]) streams responses back to the client.
105+
Neo4j's HTTP endpoint (see link:{neo4j-docs-base-uri}/http-api/current/transactions[HTTP API Docs -> Run transactions]) streams responses back to the client.
106106
For example, the following unmanaged extension streams an array of a person's colleagues:
107107

108108
//https://github.com/neo4j/neo4j-documentation/blob/dev/server-examples/src/main/java/org/neo4j/examples/server/unmanaged/ColleaguesResource.java

modules/ROOT/pages/extending-neo4j/values-and-types.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[[extending-neo4j-procedures-and-functions-values-and-types]]
77
= Values and types
88

9-
The _input_ and _output_ to and from a procedure or a function must be one of the supported types, as described in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/values-and-types/[Cypher Manual -> Values and types].
9+
The _input_ and _output_ to and from a procedure or a function must be one of the supported types, as described in link:{neo4j-docs-base-uri}/cypher-manual/current/values-and-types/[Cypher Manual -> Values and types].
1010

1111
Composite types are supported via:
1212

modules/ROOT/pages/java-embedded/cypher-java.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[[cypher-java]]
55
= Cypher queries
66

7-
In Java, you can use the link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/[Cypher query language] as per the example below.
7+
In Java, you can use the link:{neo4j-docs-base-uri}/cypher-manual/current/[Cypher query language] as per the example below.
88

99
[TIP]
1010
====
@@ -118,5 +118,5 @@ You should instead use only one and if you need the facilities of the other meth
118118

119119
For more information on the Java interface to Cypher, see the link:{neo4j-javadocs-base-uri}/index.html[Neo4j Javadocs^].
120120

121-
For more information and examples for Cypher, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/[Neo4j Cypher Manual].
121+
For more information and examples for Cypher, see link:{neo4j-docs-base-uri}/cypher-manual/current/[Neo4j Cypher Manual].
122122

modules/ROOT/pages/java-embedded/indexes.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
[[java-embedded-new-index]]
55
= Using indexes
66

7-
It is possible to create and use all the index types described in link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/indexes-for-search-performance[Cypher Manual -> Indexes].
7+
It is possible to create and use all the index types described in link:{neo4j-docs-base-uri}/cypher-manual/current/indexes-for-search-performance[Cypher Manual -> Indexes].
88

99
This section demonstrates how to work with indexes with an example of a user database.
10-
For information about how to create an index on all `User` nodes that have a `username` property, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/indexes-for-search-performance#administration-indexes-create-a-single-property-index-for-nodes[Cypher Manual -> Create a single-property index for nodes].
10+
For information about how to create an index on all `User` nodes that have a `username` property, see link:{neo4j-docs-base-uri}/cypher-manual/current/indexes-for-search-performance#administration-indexes-create-a-single-property-index-for-nodes[Cypher Manual -> Create a single-property index for nodes].
1111

1212
[TIP]
1313
====

modules/ROOT/pages/java-embedded/property-values.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ If these objects are returned from procedures, the original types cannot be recr
5454
[NOTE]
5555
====
5656
Strings that contain special characters can have inconsistent or non-deterministic ordering in Neo4j.
57-
For details, see link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/syntax/values#property-types-sip-note[Cypher Manual -> Sorting of special characters].
57+
For details, see link:{neo4j-docs-base-uri}/cypher-manual/current/syntax/values#property-types-sip-note[Cypher Manual -> Sorting of special characters].
5858
====
5959

modules/ROOT/pages/java-embedded/query-parameters.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
The following examples illustrate how to use parameters when executing Cypher queries from Java.
88

9-
For more information on parameters, see the link:{neo4j-docs-base-uri}/cypher-manual/{page-version}/[Neo4j Cypher Manual].
9+
For more information on parameters, see the link:{neo4j-docs-base-uri}/cypher-manual/current/[Neo4j Cypher Manual].
1010

1111

1212
//https://github.com/neo4j/neo4j-documentation/blob/dev/cypher/cypher-docs/src/test/java/org/neo4j/cypher/example/JavaExecutionEngineDocTest.java

modules/ROOT/pages/java-embedded/unique-nodes.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ You might also be tempted to use Java synchronization for pessimistic locking, b
8282
By mixing locks in Neo4j and the Java runtime, it is possible to produce deadlocks that are not detectable by Neo4j.
8383
As long as all locking is done by Neo4j, all deadlocks will be detected and avoided.
8484

85-
For more information on locks and deadlocks, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-internals/locks-deadlocks.adoc#_locks[Operations Manual -> Locks and deadlocks^].
85+
For more information on locks and deadlocks, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-internals/concurrent-data-access/#_locks[Operations Manual -> Locks and deadlocks^].
8686

modules/ROOT/pages/transaction-management.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ The interaction cycle of working with transactions follows the steps:
3131
[NOTE]
3232
====
3333
It is crucial to finish each transaction because the locks or memory acquired by a transaction are only released upon completion.
34-
For more information on locks and deadlocks, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-internals/locks-deadlocks[Operations Manual -> Locks and deadlocks^].
34+
For more information on locks and deadlocks, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-internals/concurrent-data-access/#_locks[Operations Manual -> Locks and deadlocks^].
3535
====
3636

3737
The idiomatic use of transactions in Neo4j is to use a `try-with-resources` statement and declare `transaction` as one of the resources.

0 commit comments

Comments
 (0)