Skip to content

Commit 176617b

Browse files
Fix the broken links (#2538) (#2549)
Co-authored-by: Reneta Popova <[email protected]>
1 parent 98b2587 commit 176617b

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

modules/ROOT/pages/authentication-authorization/dbms-administration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ This includes the following tasks and their relevant privileges:
9797
* Manage xref:authentication-authorization/privileges-reads.adoc[read] and xref:authentication-authorization/privileges-writes.adoc[write] sub-graph privileges.
9898
* Manage <<access-control-dbms-administration-impersonation, impersonation privileges>>.
9999
* Manage <<access-control-dbms-administration-execute, procedure security>>.
100-
* Manage <<access-control-dbms-administration-load-privileges, load data security>>.
100+
* Manage xref:authentication-authorization/load-privileges.adoc[load data security].
101101

102102
To enable a user to perform these tasks, you can grant them the `admin` role, but it is also possible to make a custom role with a subset of these privileges.
103103
All privileges are also assignable using Cypher commands.

modules/ROOT/pages/authentication-authorization/limitations.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ Further to that, Neo4j's role-based access control has some limitations and impl
2626
== Security and indexes
2727

2828
Neo4j lets you create and use indexes to speed up Cypher queries.
29-
See the link:{neo4j-docs-base-uri}/cypher-manual/current/indexes/search-performance-indexes/[Cypher Manual -> Indexes] for more details on the different types of indexes available in Neo4j.
29+
See the link:{neo4j-docs-base-uri}/cypher-manual/current/indexes/[Cypher Manual -> Indexes] for more details on the different types of indexes available in Neo4j.
3030

3131
However, Neo4j’s security model still controls what results you see, regardless of whether or not you use indexes.
32-
For example, when you use link:{neo4j-docs-base-uri}/cypher-manual/current/indexes/search-performance-indexes/overview/[search-performance indexes] (non–full-text) indexes, queries return the same results they would without any index.
32+
For example, when you use link:{neo4j-docs-base-uri}/cypher-manual/current/indexes/search-performance-indexes/[search-performance indexes] (non–full-text) indexes, queries return the same results they would without any index.
3333
This means that, if the security model causes fewer results to be returned due to restricted read access in xref:authentication-authorization/manage-privileges.adoc[graph and sub-graph access control],
3434
the index will also return the same fewer results.
3535

modules/ROOT/pages/changes-deprecations-removals.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ Replaced by xref:procedures.adoc#procedure_dbms_unquarantineDatabase[`dbms.unqua
408408
| label:deprecated[Deprecated in 5.26] +
409409
label:removed[Removed in Cypher 25] +
410410
Replaced by the Cypher command `CREATE VECTOR INDEX`.
411-
For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/indexes/semantic-indexes/vector-indexes/#create-vector-index/[Cypher Manual → Create a vector index].
411+
For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/indexes/semantic-indexes/vector-indexes/#create-vector-index[Cypher Manual → Create a vector index].
412412
413413
414414
| xref:procedures.adoc#procedure_dbms_cluster_uncordonServer[`dbms.cluster.uncordonServer()`]

modules/ROOT/pages/configuration/neo4j-conf.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The _neo4j.conf_ file is the main source of configuration settings in Neo4j and
66
The location of the _neo4j.conf_ file in the different configurations of Neo4j is listed in xref:configuration/file-locations.adoc[Default file locations].
77

88
Most of the configuration settings in the _neo4j.conf_ file apply directly to Neo4j itself, but there are also other settings related to the Java Runtime (the JVM) on which Neo4j runs.
9-
For more information, see the xref:configuration/neo4j-conf.adoc#neo4j-conf-JVM[JVM specific configuration settings].
9+
For more information, see the <<neo4j-conf-JVM, JVM specific configuration settings>>.
1010
Many of the configuration settings are also used by `neo4j` launcher scripts.
1111

1212

modules/ROOT/pages/database-administration/standard-databases/create-databases.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Replaced by `existingDataSeedServer`.
137137
| URI to a backup or a dump from an existing database.
138138
|
139139
Defines an identical seed from an external source which will be used to seed all servers.
140-
For more information, see xref::database-administration/standard-databases/seed-from-uri.adoc[Seed from a URI].
140+
For more information, see xref:database-administration/standard-databases/seed-from-uri.adoc[Create a database from a URI].
141141

142142
| `seedConfig`
143143
| Comma-separated list of configuration values.
@@ -198,14 +198,14 @@ Defines a seed from an external source, which will be used to seed all servers.
198198
| `seedConfig`
199199
| Comma-separated list of configuration values.
200200
|
201-
For more information see xref::clustering/databases.adoc#cluster-seed-uri[Seed from URI].
201+
For more information see xref:database-administration/standard-databases/seed-from-uri.adoc[Create a database from a URI].
202202

203-
| `txLogEnrichment`
203+
| `txLogEnrichment`§
204204
| `FULL` \| `DIFF` \| `OFF`
205205
|
206206
Defines the level of enrichment applied to transaction logs for Change Data Capture (CDC) purposes.
207207

208-
For details about enrichment mode, see link:{neo4j-docs-base-uri}/cdc/current/get-started/self-managed/#set-enrichment-mode/[Change Data Capture Manual -> Enable CDC on self-managed instances -> Set the enrichment mode].
208+
For details about enrichment mode, see link:{neo4j-docs-base-uri}/cdc/current/get-started/self-managed/#tweak-mode[Change Data Capture Manual -> Enable CDC on self-managed instances -> Toggle CDC mode].
209209

210210
| `storeFormat`
211211
| `aligned` \| `standard` \| `high_limit` \| `block`

modules/ROOT/pages/kubernetes/operations/backup-restore.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ To restore the `system` database, follow the steps described in xref:kubernetes/
10531053
To migrate from persistent volume-based backups to cloud-native backups, you need to follow these steps:
10541054

10551055
. Perform a final traditional backup to ensure you have the latest data.
1056-
For more information, see <<kubernetes-neo4j-backup-on-prem, Prepare to back up a database(s) to on-premises storage>> and <<kubernetes-neo4j-backup, Back up your databases>>.
1056+
For more information, see <<kubernetes-neo4j-backup-on-prem, Prepare to back up a database(s) to on-premises storage>> and <<#_back_up_your_databases, Back up your databases>>.
10571057
. Upload existing backups to the cloud storage bucket if needed.
10581058
You can use cloud provider CLI tools to transfer your backup files:
10591059
** For AWS S3: `aws s3 cp /path/to/backups s3://your-bucket/backups --recursive`
@@ -1062,5 +1062,5 @@ You can use cloud provider CLI tools to transfer your backup files:
10621062
. Update the _backup-values.yaml_ file to configure the cloud provider, bucket name, and credentials.
10631063
See <<kubernetes-neo4j-backup-cloud, Prepare to back up a database(s) to a cloud provider (AWS, GCP, and Azure) bucket>> for details.
10641064
. Install the _neo4j-admin_ Helm chart with the updated _backup-values.yaml_ file to back up your databases to the cloud provider bucket.
1065-
See <<_back_up_your_databases, Back up your databases>> for details.
1065+
See <<#_back_up_your_databases, Back up your databases>> for details.
10661066

modules/ROOT/pages/procedures.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -829,7 +829,7 @@ For more information, see the link:{neo4j-docs-base-uri}/cypher-manual/current/p
829829
====
830830
As of Neo4j 2025.05, `dbms.components()` returns the supported Cypher versions in a row where the `name` column has the value `"Cypher"`.
831831
As of Neo4j 2025.06, the row has the value `["5", "25"]`, indicating that both Cypher 5 and Cypher 25 are supported from this release onward.
832-
For more information about Cypher versions, see the link:{neo4j-docs-base-uri}/cypher-manual/queries/select-version/[Cypher Manual -> Select Cypher version].
832+
For more information about Cypher versions, see the link:{neo4j-docs-base-uri}/cypher-manual/current/queries/select-version/[Cypher Manual -> Select Cypher version].
833833
====
834834

835835
[[procedure_dbms_info]]
@@ -1140,7 +1140,7 @@ Starting with Neo4j 2025.04, the default database can also be set to a local or
11401140
| `quarantined` | `BOOLEAN` | Whether or not the database is quarantined.
11411141
| `result` | `STRING` | Details about the outcome of the procedure.
11421142
| *Mode* 3+| DBMS
1143-
| *Replaced by* 3+| xref:procedures.adoc#procedure_dbms_unquarantineDatabase[`dbms.unquarantineDatabase()`]
1143+
| *Replaced by* 3+| <<procedure_dbms_unquarantineDatabase, `dbms.unquarantineDatabase()`>>
11441144
|===
11451145

11461146
[NOTE]
@@ -1296,7 +1296,7 @@ The types are still enforced as `LIST<INTEGER | FLOAT>`.
12961296
.2+| *Return arguments* | *Name* | *Type* | *Description*
12971297
| `node` | `NODE` | The node on which the vector property was set.
12981298
| *Mode* 3+| WRITE
1299-
| *Replaced by* 3+| xref:procedures.adoc#procedure_db_create_setNodeVectorProperty[`db.create.setNodeVectorProperty()`] and xref:procedures.adoc#procedure_db_create_setRelationshipVectorProperty[`db.create.setRelationshipVectorProperty()`]
1299+
| *Replaced by* 3+| <<procedure_db_create_setNodeVectorProperty, `db.create.setNodeVectorProperty()`>> and <<procedure_db_create_setRelationshipVectorProperty, `db.create.setRelationshipVectorProperty()`>>
13001300
|===
13011301

13021302
.Known issue

modules/ROOT/pages/tutorial/tutorial-sso-configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ dbms.security.oidc.azure.config=token_type_principal=id_token;token_type_authent
291291
[IMPORTANT]
292292
====
293293
`sub` is the only claim guaranteed to be unique and stable.
294-
For details, see link:https://learn.microsoft.com/en-us/azure/active-directory/develop/id-tokens#using-claims-to-reliably-identify-a-user-subject-and-object-id[Microsoft documentation] as well as the https://openid.net/specs/openid-connect-core-1_0.html#ClaimStability[OpenId spec].
294+
For details, see link:https://learn.microsoft.com/en-us/azure/active-directory/develop/id-tokens[Microsoft documentation] as well as the https://openid.net/specs/openid-connect-core-1_0.html#ClaimStability[OpenId spec].
295295
====
296296
+
297297
[source, properties]

0 commit comments

Comments
 (0)