[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1117-ge0e27f295
git at osgeo.org
git at osgeo.org
Tue Jul 4 13:27:29 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 e0e27f29599b382759859552e08bebdae95f4756 (commit)
from 9f102e75070a764f0e245b3b508e5869a1a9e286 (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 e0e27f29599b382759859552e08bebdae95f4756
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Jul 4 22:26:32 2023 +0200
Loosen conformance filter so it doesn't depend on <remark> tag
diff --git a/doc/xsl/list_3d_functions.xml.xsl b/doc/xsl/list_3d_functions.xml.xsl
index f55f4535e..754b6b90c 100644
--- a/doc/xsl/list_3d_functions.xml.xsl
+++ b/doc/xsl/list_3d_functions.xml.xsl
@@ -29,13 +29,11 @@
<!-- For each section if there is note that it supports 3d catalog it -->
<xsl:for-each select="refsection">
- <xsl:for-each select="para">
- <xsl:choose>
- <xsl:when test="contains(remark/@conformance, '3d')">
- <listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refid" /></link> - <xsl:value-of select="$comment" /></simpara></listitem>
- </xsl:when>
- </xsl:choose>
- </xsl:for-each>
+ <xsl:choose>
+ <xsl:when test="descendant::node()[@conformance='3d']">
+ <listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refid" /></link> - <xsl:value-of select="$comment" /></simpara></listitem>
+ </xsl:when>
+ </xsl:choose>
</xsl:for-each>
</xsl:for-each>
</itemizedlist>
diff --git a/doc/xsl/list_curved_geometry_functions.xml.xsl b/doc/xsl/list_curved_geometry_functions.xml.xsl
index 96040059c..b87abfbbd 100644
--- a/doc/xsl/list_curved_geometry_functions.xml.xsl
+++ b/doc/xsl/list_curved_geometry_functions.xml.xsl
@@ -31,13 +31,11 @@
<!-- For each section if there is note that it implements Circular String catalog it -->
<xsl:for-each select="refsection">
- <xsl:for-each select="para">
- <xsl:choose>
- <xsl:when test="contains(remark/@conformance, 'curve')">
- <listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refname" /></link> - <xsl:value-of select="$comment" /></simpara></listitem>
- </xsl:when>
- </xsl:choose>
- </xsl:for-each>
+ <xsl:choose>
+ <xsl:when test="descendant::node()[@conformance='curve']">
+ <listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refname" /></link> - <xsl:value-of select="$comment" /></simpara></listitem>
+ </xsl:when>
+ </xsl:choose>
</xsl:for-each>
</xsl:for-each>
</itemizedlist>
diff --git a/doc/xsl/list_sqlmm_functions.xml.xsl b/doc/xsl/list_sqlmm_functions.xml.xsl
index a7e825fe3..7010808ae 100644
--- a/doc/xsl/list_sqlmm_functions.xml.xsl
+++ b/doc/xsl/list_sqlmm_functions.xml.xsl
@@ -28,13 +28,11 @@
<!-- For each section if there is note that it implements SQL/MM catalog it -->
<xsl:for-each select="refsection">
- <xsl:for-each select="para">
<xsl:choose>
- <xsl:when test="contains(remark/@conformance, 'sqlmm')">
+ <xsl:when test="descendant::node()[@conformance='sqlmm']">
<listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refid" /></link> - <xsl:value-of select="$comment" /> <xsl:value-of select="." /></simpara></listitem>
</xsl:when>
</xsl:choose>
- </xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</itemizedlist>
-----------------------------------------------------------------------
Summary of changes:
doc/xsl/list_3d_functions.xml.xsl | 12 +++++-------
doc/xsl/list_curved_geometry_functions.xml.xsl | 12 +++++-------
doc/xsl/list_sqlmm_functions.xml.xsl | 4 +---
3 files changed, 11 insertions(+), 17 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list