diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-04-22 14:54:49 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-04-22 14:54:49 +0000 |
commit | c1ffcd8681fe14c1b4ea8f3339fcde3557b846eb (patch) | |
tree | aa7d06e77865b40f9be02ea38ab6e15219f7456f | |
parent | 8232721102b7dee4be98e54687457b28b8318a58 (diff) | |
download | lufa-c1ffcd8681fe14c1b4ea8f3339fcde3557b846eb.tar.gz lufa-c1ffcd8681fe14c1b4ea8f3339fcde3557b846eb.tar.bz2 lufa-c1ffcd8681fe14c1b4ea8f3339fcde3557b846eb.zip |
Restrict the Doxygen to Docbook transform to only the relevant items.
-rw-r--r-- | LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl index 9374b9b0e..c1b6b2d84 100644 --- a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl +++ b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xsl @@ -152,20 +152,21 @@ <xsl:value-of select="$name"/> </secondary> </indexterm> - <indexterm> - <primary> - <xsl:value-of select="$book.title"/> - </primary> - <secondary> - <xsl:value-of select="$name"/> - </secondary> - </indexterm> + + <xsl:call-template name="generate.index.id"> + <xsl:with-param name="name" select="$name"/> + </xsl:call-template> + <indexterm> <primary> <xsl:value-of select="$name"/> </primary> </indexterm> - <xsl:apply-templates/> + + <xsl:apply-templates select="detaileddescription" /> + + <xsl:apply-templates select="sectiondef" /> + <xsl:for-each select="innerclass"> <xsl:apply-templates select="ancestor::*/compounddef[@id = current()/@refid]"/> </xsl:for-each> @@ -410,6 +411,7 @@ <title> <xsl:value-of select="title"/> </title> + <xsl:apply-templates/> </section> </xsl:template> @@ -420,12 +422,8 @@ </xsl:if> </xsl:template> - <xsl:template match="compoundname"/> - <xsl:template match="title"/> - <xsl:template match="indexterm"/> - <xsl:template match="indexentry"> <xsl:variable name="prim"> <xsl:choose> |