summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2012-11-09 04:55:36 +0000
committerPeter Eisentraut2012-11-09 04:59:22 +0000
commitdd1ca20dfee9f05d0aa9df5b1f4d5215c181162e (patch)
treeae28b21b5449a95dabc31d1419a5b1d35f36a37a
parent8e344eacdccc3c069974cba61af42be60e50c764 (diff)
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 19cb5b0f649..2911af0f593 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>