[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1167-g5b710eed2

git at osgeo.org git at osgeo.org
Thu Jul 6 07:35:00 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".

The branch, master has been updated
       via  5b710eed2289d54af09b918343a4585d3ba7f18a (commit)
      from  1045c1fa1398865406ce4e71c280a4540792f4f2 (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 5b710eed2289d54af09b918343a4585d3ba7f18a
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jul 6 16:34:20 2023 +0200

    Add meta html tag to advertise utf8 encoding
    
    Fixes online cheatsheet display of unicode chars

diff --git a/doc/xsl/postgis_cheatsheet.html.xsl b/doc/xsl/postgis_cheatsheet.html.xsl
index 6dfe3fcd5..d2ba4c239 100644
--- a/doc/xsl/postgis_cheatsheet.html.xsl
+++ b/doc/xsl/postgis_cheatsheet.html.xsl
@@ -15,7 +15,10 @@
 	<xsl:variable name='linkstub'>https://postgis.net/docs/manual-<xsl:value-of select="$postgis_version" />/</xsl:variable>
 
 <xsl:template match="/">
-	<xsl:text><![CDATA[<html><head><title>PostGIS Cheat Sheet</title>
+	<xsl:text><![CDATA[<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>PostGIS Cheat Sheet</title>
 	<style type="text/css">
 <!--
 table { page-break-inside:avoid; page-break-after:auto }
diff --git a/doc/xsl/raster_cheatsheet.html.xsl b/doc/xsl/raster_cheatsheet.html.xsl
index 197122502..f5f260f1d 100644
--- a/doc/xsl/raster_cheatsheet.html.xsl
+++ b/doc/xsl/raster_cheatsheet.html.xsl
@@ -14,7 +14,10 @@
 	<xsl:variable name='output_purpose'>true</xsl:variable>
 	<xsl:variable name='linkstub'>https://postgis.net/docs/manual-<xsl:value-of select="$postgis_version" />/</xsl:variable>
 <xsl:template match="/">
-	<xsl:text><![CDATA[<html><head><title>PostGIS Raster Cheat Sheet</title>
+	<xsl:text><![CDATA[<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>PostGIS Raster Cheat Sheet</title>
 	<style type="text/css">
 <!--
 table { page-break-inside:avoid; page-break-after:auto }
diff --git a/doc/xsl/sfcgal_cheatsheet.html.xsl b/doc/xsl/sfcgal_cheatsheet.html.xsl
index 7b12512ec..4db22cadb 100644
--- a/doc/xsl/sfcgal_cheatsheet.html.xsl
+++ b/doc/xsl/sfcgal_cheatsheet.html.xsl
@@ -14,7 +14,10 @@
 	<xsl:variable name='output_purpose'>true</xsl:variable>
 	<xsl:variable name='linkstub'>https://postgis.net/docs/manual-<xsl:value-of select="$postgis_version" />/</xsl:variable>
 <xsl:template match="/">
-	<xsl:text><![CDATA[<html><head><title>PostGIS SFCGAL Cheat Sheet</title>
+	<xsl:text><![CDATA[<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>PostGIS SFCGAL Cheat Sheet</title>
 	<style type="text/css">
 <!--
 table { page-break-inside:avoid; page-break-after:auto }
diff --git a/doc/xsl/tiger_geocoder_cheatsheet.html.xsl b/doc/xsl/tiger_geocoder_cheatsheet.html.xsl
index 208c3b793..5e89afa95 100644
--- a/doc/xsl/tiger_geocoder_cheatsheet.html.xsl
+++ b/doc/xsl/tiger_geocoder_cheatsheet.html.xsl
@@ -14,7 +14,10 @@
 	<xsl:variable name='output_purpose'>true</xsl:variable>
 	<xsl:variable name='linkstub'>http://postgis.net/docs/manual-<xsl:value-of select="$postgis_version" />/</xsl:variable>
 <xsl:template match="/">
-	<xsl:text><![CDATA[<html><head><title>PostGIS ]]></xsl:text> <xsl:value-of select="$postgis_version" /> Tiger Geocoder Cheat Sheet <xsl:text><![CDATA[</title>
+	<xsl:text><![CDATA[<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>PostGIS ]]></xsl:text> <xsl:value-of select="$postgis_version" /> Tiger Geocoder Cheat Sheet <xsl:text><![CDATA[</title>
 	<style type="text/css">
 <!--
 body {
diff --git a/doc/xsl/topology_cheatsheet.html.xsl b/doc/xsl/topology_cheatsheet.html.xsl
index e960ce99a..b6a9c5abd 100644
--- a/doc/xsl/topology_cheatsheet.html.xsl
+++ b/doc/xsl/topology_cheatsheet.html.xsl
@@ -14,7 +14,10 @@
 	<xsl:variable name='output_purpose'>true</xsl:variable>
 	<xsl:variable name='linkstub'>http://postgis.net/docs/manual-<xsl:value-of select="$postgis_version" />/</xsl:variable>
 <xsl:template match="/">
-	<xsl:text><![CDATA[<html><head><title>PostGIS Topology Cheat Sheet</title>
+	<xsl:text><![CDATA[<html>
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
+<title>PostGIS Topology Cheat Sheet</title>
 	<style type="text/css">
 <!--
 table { page-break-inside:avoid; page-break-after:auto }

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

Summary of changes:
 doc/xsl/postgis_cheatsheet.html.xsl        | 5 ++++-
 doc/xsl/raster_cheatsheet.html.xsl         | 5 ++++-
 doc/xsl/sfcgal_cheatsheet.html.xsl         | 5 ++++-
 doc/xsl/tiger_geocoder_cheatsheet.html.xsl | 5 ++++-
 doc/xsl/topology_cheatsheet.html.xsl       | 5 ++++-
 5 files changed, 20 insertions(+), 5 deletions(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list