Whamcloud - gitweb
LUDOC-445 fix minor typo
[doc/manual.git] / style / customstyle.xsl
1 <?xml version='1.0'?>
2 <xsl:stylesheet  xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
3
4 <!-- xsl:import takes place at compile time. For this reason, I sed in the correct
5                 primary xsl (for html,xhtml), and then run xsltproc -->
6 <xsl:import href="PRIMARYXSL"/>
7
8 <xsl:param name="html.stylesheet" select="'./style/manual.css'"/>
9
10 <xsl:param name="chapter.autolabel" select="1"></xsl:param>
11 <xsl:param name="section.autolabel" select="1"></xsl:param>
12 <xsl:param name="appendix.autolabel" select="1"></xsl:param>
13 <xsl:param name="autotoc.label.in.hyperlink" select="1"></xsl:param>
14 <xsl:param name="section.label.includes.component.label" select="1"></xsl:param>
15
16
17 <!-- include our decoration style for Lustre versions. -->
18 <xsl:include href='./style/customstyle_common.xsl'/>
19
20 <xsl:template match="*[@condition]">
21         <xsl:param name="content">
22                 <xsl:apply-imports/>
23         </xsl:param>
24
25         <xsl:call-template name='condition-decorator'>
26                 <xsl:with-param name='content' select="$content"/>
27         </xsl:call-template>
28 </xsl:template>
29
30 </xsl:stylesheet>