From dbe0e950e9c414b0486205ca0e161001321d9cd9 Mon Sep 17 00:00:00 2001 From: g0dil <g0dil@wiback.org> Date: Mon, 26 Feb 2007 14:51:54 +0000 Subject: [PATCH] Add missing xref stylesheet arguments --- senfscons/SENFSCons.py | 2 +- senfscons/xrefhtml.xslt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/senfscons/SENFSCons.py b/senfscons/SENFSCons.py index 4dc6c636b..2691664b1 100644 --- a/senfscons/SENFSCons.py +++ b/senfscons/SENFSCons.py @@ -447,7 +447,7 @@ def DoxyXRef(env, docs=None, if HTML_HEADER: commands.append( "sed -e 's/\\$$title/$TITLE/g' -e 's/\\$$projectname/Overview/g' ${SOURCES[2]} > $TARGET") - commands.append("xsltproc --stringparam title '$TITLE' ${SOURCES[1]} $SOURCE >> $TARGET") + commands.append("xsltproc --stringparam title '$TITLE' --stringparam types '$DOXY_XREF_TYPES' ${SOURCES[1]} $SOURCE >> $TARGET") if HTML_FOOTER: commands.append( "sed -e 's/\\$$title/$TITLE/g' -e 's/\\$$projectname/Overview/g' ${SOURCES[%d]} >> $TARGET" diff --git a/senfscons/xrefhtml.xslt b/senfscons/xrefhtml.xslt index 3c81bfda6..373338617 100644 --- a/senfscons/xrefhtml.xslt +++ b/senfscons/xrefhtml.xslt @@ -13,7 +13,7 @@ <xsl:output method="html"/> <xsl:strip-space elements="*"/> <xsl:param name="title" select="''"/> - <xsl:param name="types" select="'bug fixme todo idea'"/> + <xsl:param name="types" select="'bug todo'"/> <xsl:template match="/"> <div class="xref"> -- GitLab