[postgis-tickets] [SCM] PostGIS branch master updated. 3.3.0rc2-1111-g008e1c6c0
git at osgeo.org
git at osgeo.org
Mon Jul 3 19:23:11 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 008e1c6c02e8b19d76890063381b2f9e13507a99 (commit)
from 8d1ba14324505966696b356e66d38366855051a9 (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 008e1c6c02e8b19d76890063381b2f9e13507a99
Author: Regina Obe <lr at pcorp.us>
Date: Mon Jul 3 22:21:27 2023 -0400
DOC CHANGES
- Loosen filter on table matrix
Was filtering out input / output functions among others.
- Also filter out version section which has no specific geome/geog type
functions
diff --git a/doc/xsl/table_body_function_support_matrix.xml.xsl b/doc/xsl/table_body_function_support_matrix.xml.xsl
index 33915da88..f272d8304 100644
--- a/doc/xsl/table_body_function_support_matrix.xml.xsl
+++ b/doc/xsl/table_body_function_support_matrix.xml.xsl
@@ -58,7 +58,7 @@
<tbody>
<!-- Exclude PostGIS types, management functions, long transaction support, or exceptional functions from consideration -->
<!-- leaving out operators in an effor to try to fit on one page -->
- <xsl:for-each select="sect1[not(@id='PostGIS_Types' or @id='Management_Functions' or @id='Long_Transactions_Support' or @id='Exceptional_Functions')]/refentry">
+ <xsl:for-each select="descendant::node()[not(@id='PostGIS_Types' or @id='Management_Functions' or @id='Long_Transactions_Support' or @id='Exceptional_Functions' or @id='Version_Functions')]/refentry">
<xsl:sort select="@id"/>
<xsl:variable name='comment'>
<xsl:value-of select="normalize-space(translate(translate(refnamediv/refpurpose,'
', ' '), ' ', ' '))"/>
@@ -92,7 +92,7 @@
</entry>
</xsl:when>
<!-- support via autocast -->
- <xsl:when test="contains(refsynopsisdiv/funcsynopsis,'box') or contains(refsynopsisdiv/funcsynopsis/funcprototype/funcdef,'box')">
+ <xsl:when test="contains(refsynopsisdiv/funcsynopsis,'box') or contains(refsynopsisdiv/funcsynopsis/funcprototype/funcdef,'box') or contains(refsynopsisdiv/funcsynopsis, 'geom_name')">
<entry><xsl:value-of select="$matrix_autocast" disable-output-escaping="yes"/></entry>
</xsl:when>
<!-- no support -->
-----------------------------------------------------------------------
Summary of changes:
doc/xsl/table_body_function_support_matrix.xml.xsl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list