docs: xsl: Properly propagate 'href_base' as XSL template parameter

Propagate it as a parameter both from site.xsl and from newapi.xsl, the
latter of which declared it as a variable.

Signed-off-by: Peter Krempa <pkrempa@redhat.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
Peter Krempa 2024-02-07 17:30:55 +01:00
parent 8c0e313339
commit 334858bd40
3 changed files with 4 additions and 1 deletions

View File

@ -27,6 +27,7 @@ index_api_gen = custom_target(
xsltproc_prog, '--nonet', '-o', docs_builddir,
'--stringparam', 'builddir', meson.project_build_root(),
'--stringparam', 'timestamp', docs_timestamp,
'--stringparam', 'href_base', '../',
'@INPUT@',
],
install: true,
@ -53,6 +54,7 @@ foreach name : [ 'admin', 'lxc', 'qemu' ]
xsltproc_prog, '--nonet', '-o', docs_builddir,
'--stringparam', 'builddir', meson.project_build_root(),
'--stringparam', 'timestamp', docs_timestamp,
'--stringparam', 'href_base', '../',
'@INPUT@',
],
install: true,

View File

@ -24,7 +24,6 @@
<!-- the target directory for the HTML output -->
<xsl:variable name="htmldir">html</xsl:variable>
<xsl:variable name="href_base">../</xsl:variable>
<xsl:template name="aclinfo">
<xsl:param name="acl"/>
@ -816,6 +815,7 @@
encoding="UTF-8">
<xsl:apply-templates select="exsl:node-set($subpage)" mode="page">
<xsl:with-param name="timestamp" select="$timestamp"/>
<xsl:with-param name="href_base" select="$href_base"/>
</xsl:apply-templates>
</xsl:document>
</xsl:for-each>

View File

@ -17,6 +17,7 @@
<xsl:template match="/" mode="page">
<xsl:param name="pagesrc"/>
<xsl:param name="timestamp"/>
<xsl:param name="href_base"/>
<xsl:text disable-output-escaping="yes">&lt;!DOCTYPE html&gt;
</xsl:text>
<html data-sourcedoc="{$pagesrc}">