reassign 473580 aptitude tags 473580 + patch thanks Hi,
The problem in the upstream stylesheets has been fixed with the last upload. The problem you still see is now caused in your customization layer for the docbook-xsl manpage stylesheets in the aptitude source. Therefor I reassigned the bug to you and attached the patch to fix it (tested). Unfortunately the templates to style things as "bold" or "italic" have changed again so the attached fix is necessary. Regards, Daniel
--- doc/aptitude-man.xsl.orig 2008-03-30 22:06:05.000000000 +0200 +++ doc/aptitude-man.xsl 2008-04-16 19:33:07.000000000 +0200 @@ -19,7 +19,10 @@ <xsl:template match="literal"> - <xsl:apply-templates mode="bold" select="."/> + <xsl:call-template name="bold"> + <xsl:with-param name="node" select="."/> + <xsl:with-param name="context" select="."/> + </xsl:call-template> </xsl:template> <xsl:param name="preferred.mediaobject.role">text</xsl:param>

