aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2012-11-08 23:55:36 -0500
committerPeter Eisentraut <peter_e@gmx.net>2012-11-08 23:58:05 -0500
commit9b06d91ac88d2263d185fb12c7f11d9b450326db (patch)
treee21a2ff7117e85b364460c8d392cef61e2b78100
parent8354ce92165ee969510e975d30a69f875e3ffcd9 (diff)
downloadpostgresql-9b06d91ac88d2263d185fb12c7f11d9b450326db.tar.gz
postgresql-9b06d91ac88d2263d185fb12c7f11d9b450326db.zip
XSLT stylesheet: Add slash to directory name
Some versions of the XSLT stylesheets don't handle the missing slash correctly (they concatenate directory and file name without the slash). This might never have worked correctly.
-rw-r--r--doc/src/sgml/stylesheet.xsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/stylesheet.xsl b/doc/src/sgml/stylesheet.xsl
index 72dcd2c986c..09d8981e568 100644
--- a/doc/src/sgml/stylesheet.xsl
+++ b/doc/src/sgml/stylesheet.xsl
@@ -9,7 +9,7 @@
<!-- Parameters -->
-<xsl:param name="base.dir" select="'html'"></xsl:param>
+<xsl:param name="base.dir" select="'html/'"></xsl:param>
<xsl:param name="html.stylesheet" select="'stylesheet.css'"></xsl:param>
<xsl:param name="use.id.as.filename" select="'1'"></xsl:param>
<xsl:param name="make.valid.html" select="1"></xsl:param>