Skip to content

Commit 702e683

Browse files
authored
Fix links and version references (branch 15) (#772)
* Fix broken link references (404s) found during `mkdocs serve` (branch 15) * Change hardcoded version 16 in links to use {{pgversion}} Change version 16 to 15 in README.md for the CONTRIBUTING.md link
1 parent 6035c5a commit 702e683

8 files changed

+13
-13
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This repository contains the source files for [Percona Distribution for PostgreS
1212

1313
We welcome all contributions and are always looking for new members that are as dedicated to serving the community as we are. You can reach out to us using our [forums ](https://forums.percona.com/c/postgresql/25) and [Jira issue tracker ](https://jira.percona.com/projects/DISTPG/issues/DISTPG-16?filter=allopenissues).
1414

15-
For how to contribute to documentation, read the [Contributing guide ](https://github.com/percona/postgresql-docs/blob/16/CONTRIBUTING.md).
15+
For how to contribute to documentation, read the [Contributing guide ](https://github.com/percona/postgresql-docs/blob/15/CONTRIBUTING.md).
1616

1717
## License
1818

docs/contrib.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ Find the list of controb modules and extensions included in Percona Distribution
4747
|[tablefunc](https://www.postgresql.org/docs/{{pgversion}}/tablefunc.html) | |Includes various functions that return tables (that is, multiple rows). These functions are useful both in their own right and as examples of how to write C functions that return multiple rows. |
4848
|[tcn](https://www.postgresql.org/docs/{{pgversion}}/tcn.html) | | Provides a trigger function that notifies listeners of changes to any table on which it is attached. |
4949
|[test_decoding](https://www.postgresql.org/docs/{{pgversion}}/test-decoding.html) | Required | An SQL-based test/example module for WAL logical decoding|
50-
|[tsm_system_rows](https://www.postgresql.org/docs/16/tsm-system-rows.html) | |Provides the table sampling method SYSTEM_ROWS, which can be used in the TABLESAMPLE clause of a SELECT command. |
51-
|[tsm_system_time](https://www.postgresql.org/docs/16/tsm-system-time.html) | | Provides the table sampling method SYSTEM_TIME, which can be used in the TABLESAMPLE clause of a SELECT command.|
52-
|[unaccent](https://www.postgresql.org/docs/16/unaccent.html) | |A text search dictionary that removes accents (diacritic signs) from lexemes. It's a filtering dictionary, which means its output is always passed to the next dictionary (if any). This allows accent-insensitive processing for full text search. |
53-
|[uuid-ossp](https://www.postgresql.org/docs/16/uuid-ossp.html) |Required | Provides functions to generate universally unique identifiers (UUIDs) using one of several standard algorithms |
50+
|[tsm_system_rows](https://www.postgresql.org/docs/{{pgversion}}/tsm-system-rows.html) | |Provides the table sampling method SYSTEM_ROWS, which can be used in the TABLESAMPLE clause of a SELECT command. |
51+
|[tsm_system_time](https://www.postgresql.org/docs/{{pgversion}}/tsm-system-time.html) | | Provides the table sampling method SYSTEM_TIME, which can be used in the TABLESAMPLE clause of a SELECT command.|
52+
|[unaccent](https://www.postgresql.org/docs/{{pgversion}}/unaccent.html) | |A text search dictionary that removes accents (diacritic signs) from lexemes. It's a filtering dictionary, which means its output is always passed to the next dictionary (if any). This allows accent-insensitive processing for full text search. |
53+
|[uuid-ossp](https://www.postgresql.org/docs/{{pgversion}}/uuid-ossp.html) |Required | Provides functions to generate universally unique identifiers (UUIDs) using one of several standard algorithms |
5454

docs/enable-extensions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ For details about each option, see [pdBadger documentation :octicons-link-extern
6060

6161
## pgaudit
6262

63-
Add the `pgaudit` to `shared_preload_libraries` in `postgresql.conf`. The recommended way is to use the [ALTER SYSTEM](https://www.postgresql.org/docs/16/sql-altersystem.html) command. [Connect to psql](#connect-to-the-postgresql-server) and use the following command:
63+
Add the `pgaudit` to `shared_preload_libraries` in `postgresql.conf`. The recommended way is to use the [ALTER SYSTEM](https://www.postgresql.org/docs/{{pgversion}}/sql-altersystem.html) command. [Connect to psql](connect.md) and use the following command:
6464

6565
```sql
6666
ALTER SYSTEM SET shared_preload_libraries = 'pgaudit';
@@ -84,7 +84,7 @@ CREATE EXTENSION pgaudit;
8484

8585
## pgaudit set-user
8686

87-
Add the `set-user` to `shared_preload_libraries` in `postgresql.conf`. The recommended way is to use the [ALTER SYSTEM :octicons-link-external-16:](https://www.postgresql.org/docs/15/sql-altersystem.html) command. [Connect to psql](#connect-to-the-postgresql-server) and use the following command:
87+
Add the `set-user` to `shared_preload_libraries` in `postgresql.conf`. The recommended way is to use the [ALTER SYSTEM :octicons-link-external-16:](https://www.postgresql.org/docs/15/sql-altersystem.html) command. [Connect to psql](connect.md) and use the following command:
8888

8989
```sql
9090
ALTER SYSTEM SET shared_preload_libraries = 'set-user';

docs/migration.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Depending on your business requirements, you may migrate to Percona Distribution
7676
$ sudo percona-release setup ppg15
7777
```
7878

79-
5. [Install Percona Distribution for PostgreSQL packages](installing.md#install-percona-distribution-for-postgresql-packages)
79+
5. [Install Percona Distribution for PostgreSQL packages](installing.md#install-percona-distribution-for-postgresql)
8080
6. (Optional) Restore the data from the backup.
8181
7. Start the `postgresql` service
8282

docs/release-notes-v15.1.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Percona Distribution for PostgreSQL is a solution with the collection of tools f
1010

1111
This release of Percona Distribution for PostgreSQL is based on [PostgreSQL 15.1](https://www.postgresql.org/docs/current/release-15-1.html).
1212

13-
Percona Distribution for PostgreSQL now includes the [meta-packages](installing.md#package-contents) that simplify its installation. The `percona-ppg-server` meta-package installs PostgreSQL and the extensions, while `percona-ppg-server-ha` package installs high-availability components that are recommended by Percona.
13+
Percona Distribution for PostgreSQL now includes the [meta-packages](repo-overview.md#repository-contents) that simplify its installation. The `percona-ppg-server` meta-package installs PostgreSQL and the extensions, while `percona-ppg-server-ha` package installs high-availability components that are recommended by Percona.
1414

1515
-----------------------------------------------------------------------------
1616

docs/solutions/backup-recovery.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ A Disaster Recovery (DR) solution ensures that a system can be quickly restored
4848

4949
To achieve a production grade PostgreSQL disaster recovery solution, you need something that can take full or incremental database backups from a running instance, and restore from those backups at any point in time. Percona Distribution for PostgreSQL is supplied with [pgBackRest](#pgbackrest): a reliable, open-source backup and recovery solution for PostgreSQL.
5050

51-
This document focuses on the Disaster recovery solution in Percona Distribution for PostgreSQL. The [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pg-backrestsetup.md) tutorial provides guidelines of how to set up and test this solution.
51+
This document focuses on the Disaster recovery solution in Percona Distribution for PostgreSQL. The [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pgbackrest-setup.md) tutorial provides guidelines of how to set up and test this solution.
5252

5353
### pgBackRest
5454

@@ -68,7 +68,7 @@ Finally, `pgBackRest` also supports restoring PostgreSQL databases to a differen
6868

6969
## Setup overview
7070

71-
This section describes the architecture of the backup and disaster recovery solution. For the configuration steps, refer to the [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pg-backrestsetup.md).
71+
This section describes the architecture of the backup and disaster recovery solution. For the configuration steps, refer to the [Deploying backup and disaster recovery solution in Percona Distribution for PostgreSQL](dr-pgbackrest-setup.md).
7272

7373
### System architecture
7474

docs/solutions/postgis-deploy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The following document provides guidelines how to install PostGIS and how to run
6868

6969
=== ":octicons-download-16: From tarballs"
7070

71-
PostGIS is included into binary tarball and is a part of the `percona-postgresql{{pgversion}}` binary. Use the [install from tarballs](../tarball/.md) tutorial to install it.
71+
PostGIS is included into binary tarball and is a part of the `percona-postgresql{{pgversion}}` binary. Use the [install from tarballs](../tarball.md) tutorial to install it.
7272

7373

7474
## Enable PostGIS extension

docs/solutions/postgis-testing.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Query spatial data
22

3-
After you [installed and set up PostGIS](postgis-install.md), let’s find answers to the following questions by querying the database:
3+
After you [installed and set up PostGIS](postgis-deploy.md), let’s find answers to the following questions by querying the database:
44

55
## *What is the population of the New York City?*
66

0 commit comments

Comments
 (0)