Add a trailing slash to the header prefix, if needed

[SVN r20142]
This commit is contained in:
Douglas Gregor 2003-09-22 02:19:15 +00:00
parent 4dcef9d8b7
commit 07e23689eb

View File

@ -276,8 +276,14 @@ Cannot handle compounddef with kind=<xsl:value-of select="@kind"/>
<xsl:if test="$include-header='yes'"> <xsl:if test="$include-header='yes'">
<header> <header>
<xsl:attribute name="name"> <xsl:attribute name="name">
<xsl:value-of select="concat($boost.doxygen.header.prefix, <xsl:value-of select="$boost.doxygen.header.prefix"/>
string(compoundname))"/> <xsl:if
test="not(substring($boost.doxygen.header.prefix,
string-length($boost.doxygen.header.prefix))
= '/')">
<xsl:text>/</xsl:text>
</xsl:if>
<xsl:value-of select="string(compoundname)"/>
</xsl:attribute> </xsl:attribute>
<xsl:if test="briefdescription/*|detaileddescription/*"> <xsl:if test="briefdescription/*|detaileddescription/*">