[postgis-tickets] [SCM] postgis.net branch hugo updated. b2a86c72e89871d71c7a3fec42862cd3c24a7e56
git at osgeo.org
git at osgeo.org
Mon Feb 28 10:01:22 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 b2a86c72e89871d71c7a3fec42862cd3c24a7e56 (commit)
from 39a8f1fdc361eb1a6fb1eaccf143de2ec9409d83 (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 b2a86c72e89871d71c7a3fec42862cd3c24a7e56
Author: Regina Obe <lr at pcorp.us>
Date: Mon Feb 28 13:00:40 2022 -0500
CHANGES
1. Move 2013 postgis day hangout to events section
2. Work in progress on windows download page
diff --git a/content/ci/01-04_win-pgrouting-2-4_branch.md b/content/ci/01-04_win-pgrouting-2-4_branch.md
index daaaf19..e965a56 100644
--- a/content/ci/01-04_win-pgrouting-2-4_branch.md
+++ b/content/ci/01-04_win-pgrouting-2-4_branch.md
@@ -6,7 +6,7 @@ pr_major_version: 2
pr_minor_version: 4
pr_micro_version: 3dev
branch: 2.4
-buildbot: [pre_release_win_bin, pgrouting_2.4]
+tags: [pre_release_win_bin, pgrouting_2.4]
author: Winnie
thumbnail: postgis.png
---
diff --git a/content/post/2013/11-21_postgis-day-panel.md b/content/events/11-21_postgis-day-panel.md
similarity index 74%
rename from content/post/2013/11-21_postgis-day-panel.md
rename to content/events/11-21_postgis-day-panel.md
index 6bed6d4..f0dffcf 100644
--- a/content/post/2013/11-21_postgis-day-panel.md
+++ b/content/events/11-21_postgis-day-panel.md
@@ -1,10 +1,15 @@
---
title: "PostGIS Day Hang-out Panel discussion"
-layout: post
-category: news
-tags: [postgisday,events]
+category: events
+tags: ["events", "postgisday", "hangout"]
+type: event
author: Regina Obe
-thumbnail: postgis.png
+date: "2013-11-21"
+eventDates: "2013 November 21st"
+featured: false
+eventLink: http://images.spatiallyadjusted.com.s3.amazonaws.com/irc_logs/2013-11-21.txt
+videosLink: http://www.youtube.com/watch?feature=player_embedded&v=xzl6gaOsasE
+location: "Online"
---
November 21st, 2013 was PostGIS day and to celebrate we had a four panel discussion with host James Fee and panel members
diff --git a/content/pages/windows_downloads.md b/content/pages/windows_downloads.md
index aafbf29..daecee7 100644
--- a/content/pages/windows_downloads.md
+++ b/content/pages/windows_downloads.md
@@ -4,11 +4,13 @@ layout: column2
description: PostGIS windows binaries for both 32-bit and 64-bit windows
buildbot_windows_prerelease:
has_tags: [pre_release_win_bin]
+singlecolumn: true
+sidebar: false
---
-
+{{< columns >}}
If you need help using these packages (the installers and buildbot binaries), please ask on our [users mailing list](https://lists.osgeo.org/mailman/listinfo/postgis-users).
-If you find a bug with the installers or the buildbot packages, please report these on our [Ticket Tracker]({{ pcurl('support') }}) under component: build/upgrade/install with keyword: windows.
+If you find a bug with the installers or the buildbot packages, please report these on our [Ticket Tracker](/support) under component: build/upgrade/install with keyword: windows.
***The installers are designed to work with [EnterpriseDb PostgreSQL distributions](https://www.postgresql.org/download/windows/).***
@@ -55,7 +57,7 @@ You can also just extract the .exe setup file to get the binaries, but the extra
[7]: http://nsis.sourceforge.net/Download
----sidebar---
+---column---
# Unreleased PostGIS Versions
If you are more adventurous, and risk-seeking you can partake in our experimental windows
binaries of PostGIS built automatically by Winnie whenever there is a change in any of the PostGIS Stable or development branches.
@@ -104,15 +106,9 @@ Windows binaries for osm2pgrouting can be found in the `extras` folder of each v
Make sure to use the 32-bit with 32-bit PostgreSQL install and 64-bit for PostgreSQL 64-bit install (copying the .dlls into your respective PostgreSQL/bin folder).
-See the [install]({{ pcurl('install') }}) section for more guidance.
-
+See the [install](/install) section for more guidance.
-{% for post in blog.posts.filter('buildbot_windows_prerelease') %}
-*PostGIS {{post.major_version}}.{{post.minor_version}}.{{post.micro_version}}*
-
- {{ post.content|raw }}
-<hr />
-{% endfor %}
+{{< prerelease "windows" >}}
[1]: https://winnie.postgis.net/download/windows/
@@ -128,3 +124,5 @@ See the [install]({{ pcurl('install') }}) section for more guidance.
[14]: https://winnie.postgis.net/download/windows/pg10/buildbot/
[15]: https://winnie.postgis.net/download/windows/pg11/buildbot/
[16]: https://winnie.postgis.net/download/windows/pg12/buildbot/
+{{< /columns >}}
+
diff --git a/layouts/shortcodes/prerelease.html b/layouts/shortcodes/prerelease.html
new file mode 100644
index 0000000..c32bf96
--- /dev/null
+++ b/layouts/shortcodes/prerelease.html
@@ -0,0 +1,9 @@
+{{ $ver := (.Get 0) }}
+{{ if (eq $ver "windows") }}
+<b>Hello</b>
+ {{ range (where .Site.Pages ".Params.tags" "intersect" ("pre_release_win_bin")) }}
+*PostGIS {{.major_version}}.{{.minor_version}}.{{.micro_version}}*
+{{.Content}}
+<hr />
+ {{end }}
+{{ end }}
-----------------------------------------------------------------------
Summary of changes:
content/ci/01-04_win-pgrouting-2-4_branch.md | 2 +-
.../{post/2013 => events}/11-21_postgis-day-panel.md | 13 +++++++++----
content/pages/windows_downloads.md | 20 +++++++++-----------
layouts/shortcodes/prerelease.html | 9 +++++++++
4 files changed, 28 insertions(+), 16 deletions(-)
rename content/{post/2013 => events}/11-21_postgis-day-panel.md (74%)
create mode 100644 layouts/shortcodes/prerelease.html
hooks/post-receive
--
postgis.net
More information about the postgis-tickets
mailing list