Author: cdupoirieux
Date: Fri Oct 20 04:19:45 2006
New Revision: 466066
URL: http://svn.apache.org/viewvc?view=rev&rev=466066
Log:
Need to pass the context here...
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/content-main.ft
Modified:
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/content-main.ft
URL:
http://svn.apache.org/viewvc/forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/content-main.ft?view=diff&rev=466066&r1=466065&r2=466066
==============================================================================
---
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/content-main.ft
(original)
+++
forrest/trunk/whiteboard/plugins/org.apache.forrest.themes.core/themes/pelt/html/content-main.ft
Fri Oct 20 04:19:45 2006
@@ -95,8 +95,12 @@
</xsl:template>
<xsl:template match="@*|*|text()|processing-instruction()" priority="-1">
+ <xsl:param name="content-main-conf"/>
<xsl:copy>
- <xsl:apply-templates select="@*|*|text()|processing-instruction()"/>
+ <xsl:apply-templates select="@*|*|text()|processing-instruction()">
+ <xsl:with-param name="content-main-conf"
+ select="$content-main-conf"/>
+ </xsl:apply-templates>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>