7
|
1 <?xml version="1.0" encoding="UTF-8"?>
|
|
2 <xsl:stylesheet
|
|
3 version="1.0"
|
|
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
5 >
|
|
6 <xsl:import href="default.xsl"/>
|
|
7 <xsl:template name="compounddefType">
|
|
8 <h1>file <xsl:apply-templates select="compoundname" mode="compounddefType"/></h1>
|
|
9 <div class="dox-source-code">
|
|
10 <xsl:apply-templates select="programlisting" mode="compounddefType"/>
|
|
11 </div>
|
|
12
|
|
13 </xsl:template>
|
|
14 <xsl:template name="listingType">
|
|
15 <xsl:apply-templates mode="listingType"/>
|
|
16 </xsl:template>
|
|
17 <xsl:template name="codelineType">
|
|
18 <div>
|
|
19 <xsl:apply-templates mode="codelineType"/>
|
|
20 </div>
|
|
21 </xsl:template>
|
|
22 <xsl:template match="sp" mode="highlightType">
|
|
23 <xsl:text disable-output-escaping="yes">&nbsp;</xsl:text>
|
|
24 </xsl:template>
|
|
25 <xsl:template match="highlight" mode="codelineType">
|
|
26 <span class="{@class}"><xsl:call-template name="highlightType"/></span>
|
|
27 </xsl:template>
|
|
28 </xsl:stylesheet> |