diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-07-17 21:34:22 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-07-17 21:35:30 +0300 |
commit | 3d03c97a45b6904704e1ed2a4856a55396cb23b0 (patch) | |
tree | 449163e628424dee16e46814e6bcf208270b3d49 | |
parent | 82b7faa3b207193dc98d9dd5a5c8b64710ebc1a4 (diff) | |
download | postgresql-3d03c97a45b6904704e1ed2a4856a55396cb23b0.tar.gz postgresql-3d03c97a45b6904704e1ed2a4856a55396cb23b0.zip |
Show step titles in the pg_upgrade man page
The upstream XSLT stylesheets missed that case.
found by Álvaro Herrera
-rw-r--r-- | doc/src/sgml/stylesheet-man.xsl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/src/sgml/stylesheet-man.xsl b/doc/src/sgml/stylesheet-man.xsl index f5c890ef609..66d6733899a 100644 --- a/doc/src/sgml/stylesheet-man.xsl +++ b/doc/src/sgml/stylesheet-man.xsl @@ -173,6 +173,13 @@ </xsl:template> + <!-- https://sourceforge.net/tracker/?func=detail&aid=3545150&group_id=21935&atid=373747 --> + <xsl:template match="step/title"> + <xsl:apply-templates/> + <xsl:text>: </xsl:text> + </xsl:template> + + <!-- Gentext customization --> <!-- see http://www.sagehill.net/docbookxsl/CustomGentext.html --> |