diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-04-28 11:29:23 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-04-28 11:29:23 +0000 |
commit | c757acf1f7f3f45522024af7adf8df71a42a1dc1 (patch) | |
tree | 03c99b56130a8345b3461533d057579c7ceb78fe /LUFA | |
parent | 41810f6e9e60ba3291d7d9838b9d54adad999f88 (diff) | |
download | lufa-c757acf1f7f3f45522024af7adf8df71a42a1dc1.tar.gz lufa-c757acf1f7f3f45522024af7adf8df71a42a1dc1.tar.bz2 lufa-c757acf1f7f3f45522024af7adf8df71a42a1dc1.zip |
Allow the title of top level pages to be overridden in the Atmel Studio help.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt index 0959c99d6..82ad935c2 100644 --- a/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt +++ b/LUFA/StudioIntegration/HV1/lufa_docbook_transform.xslt @@ -62,6 +62,7 @@ <!-- Add index chapter --> <xsl:call-template name="generate.top.level.page"> <xsl:with-param name="top.level.page" select="compounddef[@kind = 'page' and @id = 'indexpage']"/> + <xsl:with-param name="top.level.page.title" select="'Library Information'"/> </xsl:call-template> <!-- Add free-floating chapters --> @@ -87,10 +88,11 @@ <xsl:template name="generate.top.level.page"> <xsl:param name="top.level.page"/> + <xsl:param name="top.level.page.title" select="$top.level.page/title"/> <chapter id="{$top.level.page/@id}"> <title> - <xsl:value-of select="$top.level.page/title"/> + <xsl:value-of select="$top.level.page.title"/> </title> <xsl:apply-templates select="$top.level.page/detaileddescription"/> |