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:34:22 +0300 |
commit | d6ce58c01056fa0f475ea468f1633890f6a1d74c (patch) | |
tree | 8a1d67b8d93c0abd9d63c32cd3c502ef7fe73950 /doc/src | |
parent | 65558995a214026ec544326465711588eafd2e95 (diff) | |
download | postgresql-d6ce58c01056fa0f475ea468f1633890f6a1d74c.tar.gz postgresql-d6ce58c01056fa0f475ea468f1633890f6a1d74c.zip |
Show step titles in the pg_upgrade man page
The upstream XSLT stylesheets missed that case.
found by Álvaro Herrera
Diffstat (limited to 'doc/src')
-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 --> |