summaryrefslogtreecommitdiff
path: root/docs/newapi.xsl
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2007-06-29 13:23:13 +0000
committerDaniel Veillard <veillard@redhat.com>2007-06-29 13:23:13 +0000
commitb4c282a79bc0d60609624eaa7193b511477dfa46 (patch)
treee1a50daddcbf064b91fdfb413d1ade34f35fad6c /docs/newapi.xsl
parent4c0f24c10f5fa8d87b57f04374c3b85c79976e95 (diff)
downloadlibvirt-b4c282a79bc0d60609624eaa7193b511477dfa46.tar.gz
* docs/apibuild.py docs/newapi.xsl: fix generation of XML and
stylesheet * docs/*: regenerated * src/bridge.c src/bridge.h src/buf.c src/iptables.c src/libvirt.c src/qemu_driver.c src/qemu_driver.h src/uuid.c src/uuid.h: cleanup, addd comments, made functions static and fixe a few bugs Daniel
Diffstat (limited to 'docs/newapi.xsl')
-rw-r--r--docs/newapi.xsl11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/newapi.xsl b/docs/newapi.xsl
index b20dc84381..6fae4c8001 100644
--- a/docs/newapi.xsl
+++ b/docs/newapi.xsl
@@ -476,20 +476,19 @@
</xsl:template>
<xsl:template name="docomponents">
- <xsl:param name="mode"/>
- <xsl:apply-templates select="exports[@type='macro']" mode="$mode">
+ <xsl:apply-templates select="exports[@type='macro']">
<xsl:sort select='@symbol'/>
</xsl:apply-templates>
- <xsl:apply-templates select="exports[@type='enum']" mode="$mode">
+ <xsl:apply-templates select="exports[@type='enum']">
<xsl:sort select='@symbol'/>
</xsl:apply-templates>
- <xsl:apply-templates select="exports[@type='typedef']" mode="$mode">
+ <xsl:apply-templates select="exports[@type='typedef']">
<xsl:sort select='@symbol'/>
</xsl:apply-templates>
- <xsl:apply-templates select="exports[@type='struct']" mode="$mode">
+ <xsl:apply-templates select="exports[@type='struct']">
<xsl:sort select='@symbol'/>
</xsl:apply-templates>
- <xsl:apply-templates select="exports[@type='function']" mode="$mode">
+ <xsl:apply-templates select="exports[@type='function']">
<xsl:sort select='@symbol'/>
</xsl:apply-templates>
</xsl:template>