[postgis-tickets] [SCM] postgis.net branch hugo updated. a39551d1bef4f71abd8db8f8d995467f9fc55492

git at osgeo.org git at osgeo.org
Sat Feb 26 09:04:27 PST 2022


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, hugo has been updated
       via  a39551d1bef4f71abd8db8f8d995467f9fc55492 (commit)
      from  fbaa2a3118c415775f5c6ba37b823120edf7959a (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 a39551d1bef4f71abd8db8f8d995467f9fc55492
Author: Regina Obe <lr at pcorp.us>
Date:   Sat Feb 26 12:04:22 2022 -0500

    More cosmetic changes.  Fix development doxygen links

diff --git a/content/_index.md b/content/_index.md
index bb0a528..161aed5 100644
--- a/content/_index.md
+++ b/content/_index.md
@@ -3,8 +3,9 @@ title: About PostGIS
 description: PostGIS provides spatial objects for the PostgreSQL database, allowing storage and query of information about location and mapping.
 date: 2022-02-20
 draft: false
-relatedInSidebar: true
-recentPosts: true
+relatedInSidebar: false
+recentPosts: false
+toc: false
 ---
 
 <span itemscope itemtype="http://www.schema.org/SoftwareApplication">
diff --git a/content/pages/development.md b/content/pages/development.md
index f77d30e..6662143 100644
--- a/content/pages/development.md
+++ b/content/pages/development.md
@@ -4,8 +4,11 @@ description: How to get involved with PostGIS development, contributing patches,
 buildbot_pre_release_trunk:
     has_tags: [trunk, pre_release_source]
 draft: false
+relatedInSidebar: false
+singlecolumn: true
+sidebar: false
 ---
-
+{{< columns >}}
 # How It Works
 
 PostGIS adds extra types (geometry, geography, raster and others) to the [PostgreSQL](http://postgresql.org/) database. It also adds functions and indexes that apply to those types. It does this by:
@@ -23,15 +26,8 @@ Since PostGIS is in C, it can make use of other libraries in C and C++, and it d
 * [SFCGAL](http://www.sfcgal.org/) for extended 3D support and additional geoprocessing algorithms
 
 ## Developer Documentation
-{% for post in blog.posts.filter('buildbot_pre_release_trunk') %}
-* PostGIS {{post.major_version}}.{{post.minor_version}}  ([doxygen]({{ site.root }}docs/doxygen/{{post.major_version}}.{{post.minor_version}}))
-{% endfor %}
-* PostGIS 3.0  ([doxygen]({{ site.root }}docs/doxygen/3.0))
-* PostGIS 2.5  ([doxygen]({{ site.root }}docs/doxygen/2.5))
-* PostGIS 2.4  ([doxygen]({{ site.root }}docs/doxygen/2.4))
-* PostGIS 2.3  ([doxygen]({{ site.root }}docs/doxygen/2.3))
----sidebar---
-
+{{< doclinks "doxygen">}}
+---column---
 # Getting Involved
 
 PostGIS is an open source development community of people,
@@ -55,4 +51,5 @@ Key things we need:
 2. For enhancements and new features we expect <a href="http://trac.osgeo.org/postgis/wiki/DevWikiCUnit" target="_blank">CUnit tests</a> and <a href="http://trac.osgeo.org/postgis/wiki/DevWikiPGRegress" target="_blank">PostgreSQL test</a> included. Non-lwgeom patches don't need CUnit tests.
 3. For new features we expect a <a href="http://trac.osgeo.org/postgis/wiki/DevWikiDocNewFeature" target="_blank">documentation patch</a>.
 4. Make sure your code has copyright info and is GPLv2 compatible.
+5. {{< /columns >}}
 
diff --git a/layouts/index.html b/layouts/index.html
index 6aebda4..4290953 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -25,8 +25,8 @@
       {{- .Content }}
     </div>
 
-		<h2 class="post_related">News</h2>
-		<ul style="list-style-type: none">
+		<h1 class="post_title">News</h1>
+		<ul style="list-style-type: none" class="posts" id="posts">
 			{{- range where .Site.RegularPages ".Params.category" "eq" ("news") }}
 				{{ partial "excerpt" . }}
 			{{- end }}
diff --git a/layouts/shortcodes/doclinks.html b/layouts/shortcodes/doclinks.html
index 53db73c..6191a53 100644
--- a/layouts/shortcodes/doclinks.html
+++ b/layouts/shortcodes/doclinks.html
@@ -1,12 +1,16 @@
 {{ $md := $.Site.Params.postgis.dev_releases }}
 {{ $ver :=  (.Get 0)  }}
 {{ range $key, $value := $md}}
-	{{ if ( and (eq $key "dev") (ne $ver "stable") )   }}
+	{{ if ( and (eq $key "dev") (eq $ver "dev") )   }}
 * PostGIS {{ $key }} HTML: <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}">en</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-ja.html">ja</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-br.html">br</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-de.html">de</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-ko_KR.html">ko_KR</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-es.html">es</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-it.html">it</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-fr.html">fr</a>
 * PostGIS {{ $key }} PDF: <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}.pdf">en</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-ja.pdf">ja</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-br.pdf">br</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-de.pdf">de</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-ko_KR.pdf">ko_KR</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-es.pdf">es</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-it.pdf">it</a> <a href="{{ $.Site.Params.baseurl }}docs/manual-{{ $key }}/postgis-fr.pdf">fr</a>
 	{{ end }}
-	{{ if ( and (ne $key "dev") (ne $ver "dev")  )  }}
+	{{ if ( and (ne $key "dev") (eq $ver "stable")  )  }}
 * PostGIS {{ $key }} ([HTML]({{ $.Site.Params.baseurl }}docs/manual-{{ $key }})) ([PDF]({{ $.Site.Params.baseurl }}stuff/postgis-{{ $key }}.pdf)) ([EPUB]({{ $.Site.Params.baseurl }}stuff/postgis-{{ $key }}.epub))
 	{{ end }}
+
+	{{ if (eq $ver "doxygen")  }}
+* PostGIS {{ $key }} <a href="{{ $.Site.Params.baseurl }}docs/doxygen/{{ $key }}">doxygen</a>
+	{{ end }}
 {{ end }}
 

-----------------------------------------------------------------------

Summary of changes:
 content/_index.md                |  5 +++--
 content/pages/development.md     | 17 +++++++----------
 layouts/index.html               |  4 ++--
 layouts/shortcodes/doclinks.html |  8 ++++++--
 4 files changed, 18 insertions(+), 16 deletions(-)


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list