diff options
author | Bruce Momjian <bruce@momjian.us> | 2024-09-18 17:13:19 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2024-09-18 17:13:19 -0400 |
commit | 8a6e85b46e0ff1a49b1b2303149ec010e5e0b30e (patch) | |
tree | be738dbfd0fc743d552dc4b9becd5e62a7ee7270 /doc/src | |
parent | f986882ffd67a4a2560b5cbd9056fc70d0c69209 (diff) | |
download | postgresql-8a6e85b46e0ff1a49b1b2303149ec010e5e0b30e.tar.gz postgresql-8a6e85b46e0ff1a49b1b2303149ec010e5e0b30e.zip |
doc PG relnotes: add paragraph explaining the section symbol
And suppress the symbol in print mode, where the section symbol does not
appear.
Discussion: https://postgr.es/m/ZuobILbmGGetxEg5@momjian.us
Backpatch-through: 12
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/release.sgml | 9 | ||||
-rw-r--r-- | doc/src/sgml/stylesheet-fo.xsl | 5 |
2 files changed, 14 insertions, 0 deletions
diff --git a/doc/src/sgml/release.sgml b/doc/src/sgml/release.sgml index cf6ba540876..d602374d347 100644 --- a/doc/src/sgml/release.sgml +++ b/doc/src/sgml/release.sgml @@ -69,6 +69,15 @@ For new features, add links to the documentation sections. review, so each item is truly a community effort. </para> + <para id="release-no-print-output"> + Section markers (§) in the release notes link to <ulink + url="https://git.postgresql.org/gitweb/?p=postgresql.git"><application>gitweb</application></ulink> + pages which show the primary <application>git</application> commit + messages and source tree changes responsible for the release note item. + There might be additional <application>git</application> commits which + are not shown. + </para> + <!-- When beginning a new major-release series, create a new release-NN.sgml file, removing the previous one, and change the &-reference here. diff --git a/doc/src/sgml/stylesheet-fo.xsl b/doc/src/sgml/stylesheet-fo.xsl index 739958bb804..1728124e9da 100644 --- a/doc/src/sgml/stylesheet-fo.xsl +++ b/doc/src/sgml/stylesheet-fo.xsl @@ -20,6 +20,11 @@ <!-- Do nothing for ulink to avoid footnotes --> </xsl:template> +<!-- Also suppress the description of the section markers in print mode --> +<xsl:template match="appendix[@id='release']//para[@id='release-no-print-output']"> + <!-- Output nothing for this para --> +</xsl:template> + <xsl:param name="use.extensions" select="1"></xsl:param> <xsl:param name="variablelist.as.blocks" select="1"></xsl:param> <xsl:param name="orderedlist.label.width">1.5em</xsl:param> |