Skip to content

Commit f791315

Browse files
authored
Update external xrefs to links and fix table (#203)
1 parent 8d92c9f commit f791315

27 files changed

+58
-57
lines changed

modules/ROOT/pages/access-control/built-in-roles.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ SHOW ROLE admin PRIVILEGES AS COMMANDS
361361
a|Rows: 11
362362
|===
363363

364-
If the built-in `admin` role has been altered or dropped, and needs to be restored to its original state, see xref:4.4@operations-manual:ROOT:configuration/password-and-user-recovery/index.adoc[Operations Manual -> Password and user recovery].
364+
If the built-in `admin` role has been altered or dropped, and needs to be restored to its original state, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/password-and-user-recovery[Operations Manual -> Password and user recovery].
365365

366366

367367
[[access-control-built-in-roles-admin-recreate]]
@@ -413,4 +413,4 @@ GRANT ALL ON DATABASE * TO admin
413413

414414
The resulting `admin` role now has the same privileges as the original built-in `admin` role.
415415

416-
Additional information about restoring the `admin` role can be found at xref:4.4@operations-manual:ROOT:configuration/password-and-user-recovery/index.adoc#recover-admin-role[Operations Manual -> Recover the admin role].
416+
Additional information about restoring the `admin` role can be found at link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/password-and-user-recovery#recover-admin-role[Operations Manual -> Recover the admin role].

modules/ROOT/pages/access-control/manage-roles.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ By default it gives access to the home database and to execute privileges for pr
361361
1+a|Rows: 6
362362
|===
363363

364-
More information about the built-in roles can be found in xref:4.4@operations-manual:ROOT:authentication-authorization/built-in-roles/index.adoc[Operations Manual -> Built-in roles].
364+
More information about the built-in roles can be found in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/built-in-roles[Operations Manual -> Built-in roles].
365365

366366
There are multiple versions of this command, the default being `SHOW ALL ROLES`.
367367
To only show roles that are assigned to users, the command is `SHOW POPULATED ROLES`.

modules/ROOT/pages/access-control/manage-users.adoc

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,6 @@ GRANT SHOW PRIVILEGE
113113

114114
(see xref::access-control/dbms-administration.adoc#access-control-dbms-administration-privilege-management[DBMS PRIVILEGE MANAGEMENT privileges])
115115

116-
|===
117-
118116
[source, privilege, role="noheader"]
119117
----
120118
GRANT SHOW USER
@@ -187,8 +185,6 @@ GRANT CREATE USER
187185

188186
(see xref::access-control/dbms-administration.adoc#access-control-dbms-administration-user-management[DBMS USER MANAGEMENT privileges])
189187

190-
|===
191-
192188
[source, privilege, role="noheader"]
193189
----
194190
GRANT DROP USER
@@ -468,7 +464,7 @@ SHOW USERS
468464
|===
469465

470466
When first starting a Neo4j DBMS, there is always a single default user `neo4j` with administrative privileges.
471-
It is possible to set the initial password using xref:4.4@operations-manual:ROOT:configuration/set-initial-password/index.adoc[neo4j-admin set-initial-password], otherwise it is necessary to change the password after the first login.
467+
It is possible to set the initial password using link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/set-initial-password[neo4j-admin set-initial-password], otherwise it is necessary to change the password after the first login.
472468

473469
.Show user
474470
======
@@ -536,7 +532,7 @@ Consequently, it is never possible to get the plaintext of a password back out o
536532
A password can be set in either fashion at any time.
537533
** The optional `PLAINTEXT` in `SET PLAINTEXT PASSWORD` has the same behavior as `SET PASSWORD`.
538534
** The optional `ENCRYPTED` is used to recreate an existing user when the plaintext password is unknown, but the encrypted password is available in the _data/scripts/databasename/restore_metadata.cypher_ file of a database backup.
539-
See xref:4.4@operations-manual:ROOT:backup-restore/restore-backup/index.adoc#restore-backup-example[Operations Manual -> Restore a database backup -> Example]. +
535+
See link:{neo4j-docs-base-uri}/operations-manual/{page-version}/backup-restore/restore-backup#restore-backup-example[Operations Manual -> Restore a database backup -> Example]. +
540536
With `ENCRYPTED`, the password string is expected to be in the format of `<encryption-version>`, `<hash>` or `<salt>`, where, for example:
541537
*** `0` is the first version and refers to the `SHA-256` cryptographic hash function with iterations `1`.
542538
*** `1` is the second version and refers to the `SHA-256` cryptographic hash function with iterations `1024`.
@@ -695,7 +691,7 @@ Consequently, it is never possible to get the plaintext of a password back out o
695691
A password can be set in either fashion at any time.
696692
** The optional `PLAINTEXT` in `SET PLAINTEXT PASSWORD` has the same behavior as `SET PASSWORD`.
697693
** The optional `ENCRYPTED` is used to update an existing user's password when the plaintext password is unknown, but the encrypted password is available in the _data/scripts/databasename/restore_metadata.cypher_ file of a database backup.
698-
See xref:4.4@operations-manual:ROOT:backup-restore/restore-backup/index.adoc#restore-backup-example[Operations Manual -> Restore a database backup -> Example]. +
694+
See link:{neo4j-docs-base-uri}/operations-manual/{page-version}/backup-restore/restore-backup#restore-backup-example[Operations Manual -> Restore a database backup -> Example]. +
699695
With `ENCRYPTED`, the password string is expected to be in the format of `<encryption-version>`,`<hash>` or `<salt>`, where, for example:
700696
*** `0` is the first version and refers to the `SHA-256` cryptographic hash function with iterations `1`.
701697
*** `1` is the second version and refers to the `SHA-256` cryptographic hash function with iterations `1024`.

modules/ROOT/pages/access-control/privileges-writes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ DENY DELETE ON GRAPH * RELATIONSHIPS bar TO regularUsers
126126
[NOTE]
127127
====
128128
Users with `DELETE` privilege, but restricted `TRAVERSE` privileges, will not be able to do `DETACH DELETE` in all cases.
129-
See xref:4.4@operations-manual:ROOT:authentication-authorization/access-control/index.adoc#detach-delete-restricted-user[Operations Manual -> Fine-grained access control] for more info.
129+
See link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/access-control#detach-delete-restricted-user[Operations Manual -> Fine-grained access control] for more info.
130130
====
131131

132132

@@ -350,7 +350,7 @@ DENY WRITE ON GRAPH neo4j TO regularUsers
350350
[NOTE]
351351
====
352352
Users with `WRITE` privilege but restricted `TRAVERSE` privileges will not be able to do `DETACH DELETE` in all cases.
353-
See xref:4.4@operations-manual:ROOT:authentication-authorization/access-control/index.adoc#detach-delete-restricted-user[Operations Manual -> Fine-grained access control] for more info.
353+
See link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/access-control#detach-delete-restricted-user[Operations Manual -> Fine-grained access control] for more info.
354354
====
355355

356356

modules/ROOT/pages/aliases.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Please note that the local alias will be resolved while executing the command.
1919
Privileges are defined on the database, and not the local alias.
2020

2121
A remote alias can be used for connecting to a database of a remote Neo4j DBMS, use clauses, setting a user's home database and defining the access privileges to the remote database.
22-
Remote aliases requires configuration to safely connect to the remote target, which is described in xref:4.4@operations-manual:ROOT:manage-databases/remote-alias/index.adoc[Connecting remote databases].
22+
Remote aliases requires configuration to safely connect to the remote target, which is described in link:{neo4j-docs-base-uri}/operations-manual/{page-version}/manage-databases/remote-alias[Connecting remote databases].
2323
It is not possible to impersonate a user on the remote database or to execute an administration command on the remote database via a remote alias.
2424

2525
Aliases can be created and managed using a set of Cypher administration commands executed against the `system` database.
@@ -151,7 +151,7 @@ A timeout of zero is treated as an infinite timeout and will be bound by the tim
151151
| Duration
152152

153153
| Default value
154-
| xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.routing.driver.connection.connect_timeout[dbms.routing.driver.connection.connect_timeout]
154+
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.routing.driver.connection.connect_timeout[dbms.routing.driver.connection.connect_timeout]
155155

156156
|===
157157

@@ -171,7 +171,7 @@ It is recommended to set maximum lifetime to a slightly smaller value than the o
171171
Zero and negative values result in lifetime not being checked.
172172

173173
| Default value
174-
| xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.routing.driver.connection.max_lifetime[dbms.routing.driver.connection.max_lifetime]
174+
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.routing.driver.connection.max_lifetime[dbms.routing.driver.connection.max_lifetime]
175175

176176
|===
177177

@@ -191,7 +191,7 @@ Negative values are allowed and result in unlimited acquisition timeout.
191191
Value of `0` is allowed and results in no timeout and immediate failure when connection is unavailable.
192192

193193
| Default value
194-
| xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.routing.driver.connection.pool.acquisition_timeout[dbms.routing.driver.connection.pool.acquisition_timeout]
194+
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.routing.driver.connection.pool.acquisition_timeout[dbms.routing.driver.connection.pool.acquisition_timeout]
195195

196196
|===
197197

@@ -211,7 +211,7 @@ Negative values are allowed and result in unlimited pool.
211211
Value of `0` is not allowed.
212212

213213
| Default value
214-
| xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.routing.driver.connection.pool.max_size[dbms.routing.driver.connection.pool.max_size]
214+
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.routing.driver.connection.pool.max_size[dbms.routing.driver.connection.pool.max_size]
215215

216216
|===
217217

@@ -228,7 +228,7 @@ Value of `0` is not allowed.
228228
One of `DEBUG`, `INFO`, `WARN`, `ERROR`, or `NONE`.
229229

230230
| Default value
231-
| xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.routing.driver.logging.level[dbms.routing.driver.logging.level]
231+
| link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.routing.driver.logging.level[dbms.routing.driver.logging.level]
232232

233233
|===
234234

@@ -698,7 +698,7 @@ CREATE ALIAS `northwind` FOR DATABASE `northwind-graph-2020`
698698
=== Creating remote database aliases
699699

700700
Database aliases can also point to remote databases by providing an url and the credentials of a user on the remote Neo4j DBMS.
701-
See xref:4.4@operations-manual:ROOT:manage-databases/remote-alias/index.adoc[Connecting remote databases] for the necessary configurations.
701+
See link:{neo4j-docs-base-uri}/operations-manual/{page-version}/manage-databases/remote-alias[Connecting remote databases] for the necessary configurations.
702702

703703
Creating remote aliases also allows `IF NOT EXISTS` and `OR REPLACE` clauses.
704704
Both check for any remote or local database aliases.

modules/ROOT/pages/clauses/call.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ Calling a `VOID` procedure in the middle of a larger query will simply pass on e
4747
[NOTE]
4848
====
4949
Neo4j comes with a number of built-in procedures.
50-
For a list of these, see xref:4.4@operations-manual:ROOT:reference/procedures/index.adoc[Operations Manual -> Procedures].
50+
For a list of these, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures[Operations Manual -> Procedures].
5151
5252
Users can also develop custom procedures and deploy to the database.
53-
See xref:4.4@java-reference:ROOT:extending-neo4j/procedures.adoc#extending-neo4j-procedures[Java Reference -> User-defined procedures] for details.
53+
See link:{neo4j-docs-base-uri}/java-reference/{page-version}/extending-neo4j/procedures#extending-neo4j-procedures[Java Reference -> User-defined procedures] for details.
5454
====
5555

5656

modules/ROOT/pages/clauses/delete.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Relationships deleted: 2
9393

9494
[NOTE]
9595
====
96-
For `DETACH DELETE` for users with restricted security privileges, see xref:4.4@operations-manual:ROOT:authentication-authorization/access-control/index.adoc#detach-delete-restricted-user[Operations Manual -> Fine-grained access control].
96+
For `DETACH DELETE` for users with restricted security privileges, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/access-control#detach-delete-restricted-user[Operations Manual -> Fine-grained access control].
9797
====
9898

9999

modules/ROOT/pages/clauses/load-csv.adoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@
3636
* `LOAD CSV` is often used in conjunction with the query hint `PERIODIC COMMIT`; more information on this may be found in xref::query-tuning/using.adoc#query-using-periodic-commit-hint[[deprecated\]#`PERIODIC COMMIT` query hint].
3737

3838
.Configuration settings for file URLs
39-
xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.security.allow_csv_import_from_file_urls[dbms.security.allow_csv_import_from_file_urls]::
39+
link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.security.allow_csv_import_from_file_urls[dbms.security.allow_csv_import_from_file_urls]::
4040
This setting determines if Cypher will allow the use of `+file:///+` URLs when loading data using `LOAD CSV`.
4141
Such URLs identify files on the filesystem of the database server.
4242
Default is _true_.
4343
Setting `dbms.security.allow_csv_import_from_file_urls=false` will completely disable access to the file system for `LOAD CSV`.
4444

45-
xref:4.4@operations-manual:ROOT:reference/configuration-settings/index.adoc#config_dbms.directories.import[dbms.directories.import]::
45+
link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/configuration-settings#config_dbms.directories.import[dbms.directories.import]::
4646
Sets the root directory for `+file:///+` URLs used with the Cypher `LOAD CSV` clause.
4747
This should be set to a single directory relative to the Neo4j installation path on the database server.
4848
All requests to load from `+file:///+` URLs will then be relative to the specified directory.
4949
The default value set in the config settings is _import_.
50-
This is a security measure which prevents the database from accessing files outside the standard xref:4.4@operations-manual:ROOT:configuration/file-locations/index.adoc[import directory],
50+
This is a security measure which prevents the database from accessing files outside the standard link:{neo4j-docs-base-uri}/operations-manual/{page-version}/configuration/file-locations[import directory],
5151
similar to how a Unix `chroot` operates.
5252
Setting this to an empty field will allow access to all files within the Neo4j installation folder.
5353
Commenting out this setting will disable the security feature, allowing all files in the local system to be imported.
@@ -241,7 +241,7 @@ The xref::clauses/use.adoc[`USE` clause] can not be used together with the `PERI
241241

242242
[NOTE]
243243
====
244-
Queries with the `PERIODIC COMMIT` query hint can not be routed by xref:4.4@operations-manual:ROOT:clustering/internals/index.adoc#causal-clustering-routing[Server-side routing].
244+
Queries with the `PERIODIC COMMIT` query hint can not be routed by link:{neo4j-docs-base-uri}/operations-manual/{page-version}/clustering/internals#causal-clustering-routing[Server-side routing].
245245
====
246246

247247
.Query

modules/ROOT/pages/clauses/use.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ CALL {
6161
In subqueries, a `USE` clause may appear as the second clause, if directly following an xref::clauses/call-subquery.adoc#subquery-correlated-importing[importing `WITH` clause]
6262

6363
When executing queries against a Fabric database, in addition to referring to databases in the DBMS, the `<graph>` may also refer to a graph mounted through the Fabric configuration.
64-
For more information, see xref:4.4@operations-manual:ROOT:fabric/index.adoc[Operations Manual -> Fabric].
64+
For more information, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/fabric[Operations Manual -> Fabric].
6565

6666

6767
[[query-use-examples]]

modules/ROOT/pages/databases.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ Subsequently, the database access mode can be switched back to read-write using
531531
Altering the database access mode is allowed at all times, whether a database is online or offline.
532532

533533
Database access modes can also be managed using the configuration parameters `dbms.databases.default_to_read_only`, `dbms.databases.read_only`, and `dbms.database.writable`.
534-
For details, see xref:4.4@operations-manual:ROOT:manage-databases/configuration/index.adoc#manage-databases-parameters[Configuration parameters].
534+
For details, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/manage-databases/configuration#manage-databases-parameters[Configuration parameters].
535535
If conflicting modes are set by the `ALTER DATABASE` command and the configuration parameters, i.e. one says read-write and the other read-only, the database will be read-only and prevent write queries.
536536

537537

0 commit comments

Comments
 (0)