[postgis-tickets] [SCM] postgis.net branch website updated. clarity-final-38-g4f66284
git at osgeo.org
git at osgeo.org
Fri Jul 14 17:56:20 PDT 2023
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "postgis.net".
The branch, website has been updated
via 4f66284ce4b587a11c7c1e6a099ae34ba53e6a6d (commit)
from 9f2682eea0e009dd3adb4db50a32bb97c70cfcd5 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 4f66284ce4b587a11c7c1e6a099ae34ba53e6a6d
Author: Regina Obe <lr at pcorp.us>
Date: Fri Jul 14 20:55:53 2023 -0400
Make home page links relative
Put our friends first and their links
diff --git a/content/_index.md b/content/_index.md
index 2a0c9ef..ae2750a 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -8,10 +8,10 @@ PostGIS extends the capabilities of the [PostgreSQL](https://postgresql.org) rel
PostGIS features include:
-* **Spatial Data Storage**: Store different types of spatial data such as points, lines, polygons, and multi-geometries, in both 2D and [3D](http://postgis.net/docs/PostGIS_Special_Functions_Index.html#PostGIS_3D_Functions) data.
-* **Spatial Indexing**: Quickly [search](http://postgis.net/docs/using_postgis_dbmanagement.html#build-indexes) and retrieve spatial data based on its location.
-* **Spatial Functions**: A wide range of spatial functions that allow you to filter and analyze spatial data, measuring [distances](http://postgis.net/docs/ST_Distance.html) and [areas](http://postgis.net/docs/ST_Area.html), [intersecting](http://postgis.net/docs/ST_Intersection.html) geometries, [buffering](postgis.net/docs/ST_Buffer.html), and more.
-* **Geometry Processing**: Tools for [processing](https://postgis.net/docs/ST_Union.html) and [manipulating](https://postgis.net/docs/ST_Translate.html) geometry data, such as [simplification](http://postgis.net/docs/ST_Simplify.html), [conversion](http://postgis.net/docs/ST_AsMVT.html), and generalization.
-* **Raster Data Support**: Storage and processing of [raster data](http://postgis.net/docs/RT_reference.html), such as elevation data and weather data.
-* **Geocoding and Reverse Geocoding**: Functions for [geocoding](http://postgis.net/docs/postgis_installation.html#loading_extras_tiger_geocoder) and reverse geocoding.
-* **Integration**: Access and work with PostGIS using third party tools such as QGIS, GeoServer, ArcGIS, Tableau, and MapServer.
+* **Spatial Data Storage**: Store different types of spatial data such as points, lines, polygons, and multi-geometries, in both 2D and [3D](docs/PostGIS_Special_Functions_Index.html#PostGIS_3D_Functions) data.
+* **Spatial Indexing**: Quickly [search](docs/using_postgis_dbmanagement.html#build-indexes) and retrieve spatial data based on its location.
+* **Spatial Functions**: A wide range of spatial functions that allow you to filter and analyze spatial data, measuring [distances](docs/ST_Distance.html) and [areas](docs/ST_Area.html), [intersecting](docs/ST_Intersection.html) geometries, [buffering](docs/ST_Buffer.html), and more.
+* **Geometry Processing**: Tools for [processing](docs/ST_Union.html) and [manipulating](docs/ST_Translate.html) geometry data, such as [simplification](docs/ST_Simplify.html), [conversion](docs/ST_AsMVT.html), and generalization.
+* **Raster Data Support**: Storage and processing of [raster data](docs/RT_reference.html), such as elevation data and weather data.
+* **Geocoding and Reverse Geocoding**: Functions for [geocoding](docs/postgis_installation.html#loading_extras_tiger_geocoder) and reverse geocoding.
+* **Integration**: Access and work with PostGIS using third party tools such as [QGIS](https://qgis.org), [GeoServer](https://geoserver.org), MapServer, ArcGIS, Tableau.
diff --git a/content/development/developer_docs.md b/content/development/developer_docs.md
new file mode 100644
index 0000000..8ea9bed
--- /dev/null
+++ b/content/development/developer_docs.md
@@ -0,0 +1,16 @@
+---
+title: Developer Documentation
+date: 2023-07-14
+weight: 110
+geekdocHidden: false
+layout: toplevel
+---
+
+* [Style Guide](https://git.osgeo.org/gitea/postgis/postgis/src/branch/master/STYLE)
+* [Testing with Docker](https://trac.osgeo.org/postgis/wiki/DevWikiDockerTesting)
+* [Backtracing Crashes](https://trac.osgeo.org/postgis/wiki/DevWikiGettingABackTrace)
+
+## Doxygen Documentation
+This is doxygen documentation for all supported branches.
+
+{{< doxygenlinks >}}
diff --git a/layouts/shortcodes/doxygenlinks.html b/layouts/shortcodes/doxygenlinks.html
new file mode 100644
index 0000000..92be419
--- /dev/null
+++ b/layouts/shortcodes/doxygenlinks.html
@@ -0,0 +1,12 @@
+{{ $ver := (.Get 0) }}
+{{ $md := $.Site.Params.postgis.releases }}
+<ul>
+{{ range sort $md "minor" "desc"}}
+{{ $key := .minor }}
+<li>
+ <a href="{{$.Site.Params.postgis.site_docs}}/doxygen/{{ $key }}/">{{$key}}</a>
+</li>
+
+{{end}}
+
+</ul>
-----------------------------------------------------------------------
Summary of changes:
content/_index.md | 14 +++++++-------
content/development/developer_docs.md | 16 ++++++++++++++++
layouts/shortcodes/doxygenlinks.html | 12 ++++++++++++
3 files changed, 35 insertions(+), 7 deletions(-)
create mode 100644 content/development/developer_docs.md
create mode 100644 layouts/shortcodes/doxygenlinks.html
hooks/post-receive
--
postgis.net
More information about the postgis-tickets
mailing list