[SCM] PostGIS branch master updated. 3.5.0beta1-7-g2be69a364
git at osgeo.org
git at osgeo.org
Wed Sep 18 14:53:09 PDT 2024
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 2be69a364b520850c1ae58cb587d7f04ba59f753 (commit)
from fd3b52f0d7b59e59e3ffa92cac00b22a8e274fd4 (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 2be69a364b520850c1ae58cb587d7f04ba59f753
Author: Regina Obe <lr at pcorp.us>
Date: Wed Sep 18 17:51:59 2024 -0400
Fix link labels.
Should use refname instead of refid
Closes #5778 for PostGIS 3.5.0
diff --git a/doc/xsl/list_3d_functions.xml.xsl b/doc/xsl/list_3d_functions.xml.xsl
index 46c2460d6..5579df67f 100644
--- a/doc/xsl/list_3d_functions.xml.xsl
+++ b/doc/xsl/list_3d_functions.xml.xsl
@@ -27,15 +27,19 @@
<xsl:variable name='comment'>
<xsl:value-of select="normalize-space(translate(translate(db:refnamediv/db:refpurpose,'
', ' '), ' ', ' '))"/>
</xsl:variable>
+
<xsl:variable name="refid">
<xsl:value-of select="@xml:id" />
</xsl:variable>
+ <xsl:variable name="refname">
+ <xsl:value-of select="db:refnamediv/db:refname" />
+ </xsl:variable>
<!-- For each section if there is note that it supports 3d catalog it -->
<xsl:for-each select="db:refsection">
<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>
+ <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>
diff --git a/doc/xsl/list_sqlmm_functions.xml.xsl b/doc/xsl/list_sqlmm_functions.xml.xsl
index 620b74e62..1d157d101 100644
--- a/doc/xsl/list_sqlmm_functions.xml.xsl
+++ b/doc/xsl/list_sqlmm_functions.xml.xsl
@@ -26,15 +26,19 @@
<xsl:variable name='comment'>
<xsl:value-of select="normalize-space(translate(translate(db:refnamediv/db:refpurpose,'
', ' '), ' ', ' '))"/>
</xsl:variable>
+
<xsl:variable name="refid">
<xsl:value-of select="@xml:id" />
</xsl:variable>
+ <xsl:variable name="refname">
+ <xsl:value-of select="db:refnamediv/db:refname" />
+ </xsl:variable>
<!-- For each section if there is note that it implements SQL/MM catalog it -->
<xsl:for-each select="db:refsection">
<xsl:choose>
<xsl:when test="descendant::node()[@conformance='sqlmm']">
- <listitem><simpara><link linkend="{$refid}"><xsl:value-of select="$refid" /></link> - <xsl:value-of select="$comment" /></simpara></listitem>
+ <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>
-----------------------------------------------------------------------
Summary of changes:
doc/xsl/list_3d_functions.xml.xsl | 6 +++++-
doc/xsl/list_sqlmm_functions.xml.xsl | 6 +++++-
2 files changed, 10 insertions(+), 2 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list