view schemas/doxygen/csharp/file.xsl @ 16:e69c970c3ddd default tip

sync
author sergey
date Tue, 20 May 2014 01:28:48 +0400
parents fa7a99c2d079
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
    version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>
    <xsl:import href="default.xsl"/>
    <xsl:template name="compounddefType">
	    <h1>file <xsl:apply-templates select="compoundname" mode="compounddefType"/></h1>
	    <div class="dox-source-code">
			<xsl:apply-templates select="programlisting" mode="compounddefType"/>
		</div>
    
    </xsl:template>
    <xsl:template name="listingType">
		<xsl:apply-templates mode="listingType"/>
	</xsl:template>
	<xsl:template name="codelineType">
		<div>
			<xsl:apply-templates mode="codelineType"/>
		</div>
	</xsl:template>
	<xsl:template match="sp" mode="highlightType">
		<xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
	</xsl:template>
	<xsl:template match="highlight" mode="codelineType">
		<span class="{@class}"><xsl:call-template name="highlightType"/></span>
	</xsl:template>
</xsl:stylesheet>