Author: thorsten
Date: Tue Nov  8 01:49:45 2005
New Revision: 331761

URL: http://svn.apache.org/viewcvs?rev=331761&view=rev
Log:
Since we removed site2xhtml.xsl we have to copy over now all remaining nodes. 
That fixes the content bug from pelt which was causing that no markup where 
copied over beside the headings.

Modified:
    
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.themer/resources/themes/pelt/html/content-main.ft

Modified: 
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.themer/resources/themes/pelt/html/content-main.ft
URL: 
http://svn.apache.org/viewcvs/forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.themer/resources/themes/pelt/html/content-main.ft?rev=331761&r1=331760&r2=331761&view=diff
==============================================================================
--- 
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.themer/resources/themes/pelt/html/content-main.ft
 (original)
+++ 
forrest/trunk/whiteboard/plugins/org.apache.forrest.plugin.output.themer/resources/themes/pelt/html/content-main.ft
 Tue Nov  8 01:49:45 2005
@@ -86,6 +86,11 @@
           </xsl:otherwise>
         </xsl:choose>
       </xsl:template>
+      <xsl:template match="@*|*|text()|processing-instruction()" priority="-1">
+        <xsl:copy>
+          <xsl:apply-templates select="@*|*|text()|processing-instruction()"/>
+        </xsl:copy>
+      </xsl:template>
     </xsl:stylesheet>
   </forrest:template>
 </forrest:contract>


Reply via email to