summaryrefslogtreecommitdiff
path: root/doc/custom-html.xsl.in
blob: b2eaf150b1bace39721a92456af5c6f270c07e71 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version='1.0'?> <!--*-nxml-*-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns:ss="http://docbook.sf.net/xmlns/string.subst/1.0"
  xmlns:exsl="http://exslt.org/common" version="1.0">

  <xsl:import href="HTML_STYLESHEET"/>
  <xsl:param name="vendordir"/>

  <xsl:template match="filename">
    <xsl:variable name="replacements">
      <ss:substitution oldstring="%vendordir%" newstring="{$vendordir}" />
    </xsl:variable>
    <xsl:call-template name="apply-string-subst-map">
      <xsl:with-param name="content" select="."/>
      <xsl:with-param name="map.contents" select="exsl:node-set($replacements)/*" />
    </xsl:call-template>
  </xsl:template>
</xsl:stylesheet>