]> git.openstreetmap.org Git - nominatim.git/commitdiff
fix dangling links in documentation
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 7 Aug 2024 14:58:45 +0000 (16:58 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 7 Aug 2024 14:58:45 +0000 (16:58 +0200)
docs/admin/Deployment-Python.md
docs/customize/Tokenizers.md
docs/library/Input-Parameter-Types.md
src/nominatim_api/core.py
src/nominatim_api/results.py

index 821a2c06d994793639216177652586b08be72d66..9275bab86d536f6fcba5e61dcc08eda84ac0e9e7 100644 (file)
@@ -19,8 +19,8 @@ to configure it.
 ### Installing the required packages
 
 The Nominatim frontend is best run from its own virtual environment. If
-you have already created one for the database backend during
-[installation](Installation.md#Building-Nominatim), you can use that. Otherwise
+you have already created one for the database backend during the
+[installation](Installation.md#building-nominatim), you can use that. Otherwise
 create one now with:
 
 ```sh
index 6b811a9adb13004560064df2c8796e700e9fdea0..ee51fec05b1e98da8425a6596dfbe5fa725d7901 100644 (file)
@@ -52,7 +52,7 @@ NOMINATIM_DATABASE_MODULE_PATH=<path to directory where nominatim.so resides>
 ```
 
 This is in particular useful when the database runs on a different server.
-See [Advanced installations](../admin/Advanced-Installations.md#importing-nominatim-to-an-external-postgresql-database) for details.
+See [Advanced installations](../admin/Advanced-Installations.md#using-an-external-postgresql-database) for details.
 
 There are no other configuration options for the legacy tokenizer. All
 normalization functions are hard-coded.
index 5c53773290fee36565b7396068b4414a7b390528..d27bc96ff9d78613a96553b0b0dcb1a45d5fa516 100644 (file)
@@ -5,8 +5,8 @@ in the query functions of the API object.
 
 ## Place identification
 
-The [details](NominatimAPI.md#nominatim_api.core.NominatimAPI.details) and
-[lookup](NominatimAPI.md#nominatim_api.core.NominatimAPI.lookup) functions
+The [details](NominatimAPI.md#nominatim_api.NominatimAPI.details) and
+[lookup](NominatimAPI.md#nominatim_api.NominatimAPI.lookup) functions
 require references to places in the database. Below the possible
 types for place identification are listed. All types are dataclasses.
 
index c460d98c3ce099817138e30d3dfc646ff9235905..6c4c37d7e824b681e91f3de6ace74968cc440813 100644 (file)
@@ -382,7 +382,7 @@ class NominatimAPI:
 
     @property
     def config(self) -> Configuration:
-        """ Provide read-only access to the [configuration](#Configuration)
+        """ Provide read-only access to the [configuration](Configuration.md)
             used by the API.
         """
         return self._async_api.config
index 805527a7b590ba9b80c1315536fc125abd6c9051..28c0fc1a4bf4a3d2e747d30c0d6032ea3ea0722e 100644 (file)
@@ -127,7 +127,7 @@ class AddressLine:
 
     local_name: Optional[str] = None
     """ Place holder for localization of this address part. See
-        [Localization](#localization) below.
+        [Localization](Result-Handling.md#localization) below.
     """