function.xsl: Remove the <formalpara> stuff from the 'standardese' generation

mode. It looks silly at the moment.


[SVN r18184]
This commit is contained in:
Douglas Gregor 2003-04-04 21:37:30 +00:00
parent 3ac648327d
commit ce3af72b76

View File

@ -620,7 +620,9 @@
</xsl:call-template> </xsl:call-template>
</xsl:when> </xsl:when>
<xsl:when test="$boost.generation.mode='standardese'"> <xsl:when test="$boost.generation.mode='standardese'">
<xsl:with-param name="text" select="$text"/> <xsl:call-template name="function.documentation.standardese">
<xsl:with-param name="text" select="$text"/>
</xsl:call-template>
</xsl:when> </xsl:when>
<xsl:otherwise> <xsl:otherwise>
<xsl:text>Error: invalid value '</xsl:text> <xsl:text>Error: invalid value '</xsl:text>
@ -637,14 +639,17 @@
<xsl:template name="function.documentation.standardese"> <xsl:template name="function.documentation.standardese">
<xsl:param name="text"/> <xsl:param name="text"/>
<!--
<formalpara> <formalpara>
<title> <title>
<xsl:call-template name="fully-qualified-name"> <xsl:call-template name="fully-qualified-name">
<xsl:with-param name="node" select="."/> <xsl:with-param name="node" select="."/>
</xsl:call-template> </xsl:call-template>
<xsl:copy-of select="$text"/>
</title> </title>
<xsl:copy-of select="$text"/>
</formalpara> </formalpara>
-->
<listitem><xsl:copy-of select="$text"/></listitem>
</xsl:template> </xsl:template>
<!-- Semantic descriptions of functions --> <!-- Semantic descriptions of functions -->