Author: thorsten
Date: Tue Dec 20 15:54:07 2005
New Revision: 358153
URL: http://svn.apache.org/viewcvs?rev=358153&view=rev
Log:
Since contracts are standalone we do not need to pass alone params anymore, we
declare them once.
Modified:
forrest/trunk/main/template-sites/v3/src/documentation/resources/themes/common/html/content-minitoc.ft
Modified:
forrest/trunk/main/template-sites/v3/src/documentation/resources/themes/common/html/content-minitoc.ft
URL:
http://svn.apache.org/viewcvs/forrest/trunk/main/template-sites/v3/src/documentation/resources/themes/common/html/content-minitoc.ft?rev=358153&r1=358152&r2=358153&view=diff
==============================================================================
---
forrest/trunk/main/template-sites/v3/src/documentation/resources/themes/common/html/content-minitoc.ft
(original)
+++
forrest/trunk/main/template-sites/v3/src/documentation/resources/themes/common/html/content-minitoc.ft
Tue Dec 20 15:54:07 2005
@@ -46,8 +46,6 @@
<div id="content-minitoc-area">
<xsl:call-template name="content-minitoc-processing">
<xsl:with-param name="tocroot" select="tocitems"/>
- <xsl:with-param name="content-minitoc-conf"
- select="$content-minitoc-conf"/>
</xsl:call-template>
</div>
</xsl:if>
@@ -58,7 +56,6 @@
</xsl:template>
<xsl:template name="content-minitoc-processing">
<xsl:param name="tocroot"/>
- <xsl:param name="content-minitoc-conf"/>
<xsl:if
test="count($tocroot/tocitem) >=
$content-minitoc-conf/@min-sections">
<xsl:if test="contains($content-minitoc-conf/@location,'page')">
@@ -72,8 +69,6 @@
test="@level<$content-minitoc-conf/@max-depth+1">
<xsl:call-template name="content-minitoc-processing">
<xsl:with-param name="tocroot" select="."/>
- <xsl:with-param name="content-minitoc-conf"
- select="$content-minitoc-conf"/>
</xsl:call-template>
</xsl:if>
</li>