[go: up one dir, main page]

Menu

[80c337]: / Lurch-doxygen-xml.xsl  Maximize  Restore  History

Download this file

23 lines (22 with data), 960 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text" encoding="iso-8859-1"/>
<xsl:template match="/">
<xsl:for-each select="//memberdef">
<xsl:value-of disable-output-escaping="yes" select="../../compoundname"/>
<xsl:text>::</xsl:text>
<xsl:value-of disable-output-escaping="yes" select="name"/>
<xsl:text> // </xsl:text>
<xsl:value-of disable-output-escaping="yes" select="@kind"/>
<xsl:text> // </xsl:text>
<xsl:value-of select="translate(briefdescription,'&#x20;&#x9;&#xD;&#xA;',' ')"/>
<xsl:text> // </xsl:text>
<xsl:value-of disable-output-escaping="yes"
select="substring-after(location/@bodyfile,'Lurch/trunk/')"/>
<xsl:text>#</xsl:text>
<xsl:value-of disable-output-escaping="yes" select="location/@bodystart"/>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>