diff options
author | Peter Eisentraut | 2012-11-09 04:55:36 +0000 |
---|---|---|
committer | Peter Eisentraut | 2012-11-09 04:58:36 +0000 |
commit | 1458f0f1dab91458bd4f4f731a64a7a52fe028d1 (patch) | |
tree | d50820719428149d074c9962a8b93f9fbdb6ab21 | |
parent | f43ca3c8945fb60ed409b7768b0ce5ee0437161e (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.xsl | 2 |
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> |