You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by ni...@apache.org on 2004/09/22 00:13:18 UTC

svn commit: rev 47003 - forrest/trunk/src/core/context/resources/stylesheets

Author: nicolaken
Date: Tue Sep 21 15:13:17 2004
New Revision: 47003

Modified:
   forrest/trunk/src/core/context/resources/stylesheets/declare-broken-site-links.xsl
Log:
Fixes FOR-293: HTML links and menus are not being generated properly

Modified: forrest/trunk/src/core/context/resources/stylesheets/declare-broken-site-links.xsl
==============================================================================
--- forrest/trunk/src/core/context/resources/stylesheets/declare-broken-site-links.xsl	(original)
+++ forrest/trunk/src/core/context/resources/stylesheets/declare-broken-site-links.xsl	Tue Sep 21 15:13:17 2004
@@ -38,13 +38,21 @@
       </xsl:choose>
     </xsl:attribute>
   </xsl:template>
--->
-	<!-- Identity transformation template -->			
+		
 	<xsl:template match="/ | * | comment() | processing-instruction() | text()"> 
 		<xsl:copy> 
 			<xsl:apply-templates select="@* | * | comment() | processing-instruction() | text()"/> 
 		</xsl:copy> 
 	</xsl:template> 
+-->
+
     
+    <!-- Identity transformation template -->			
+    <xsl:template match="/ | @* | * | comment() | processing-instruction() | text()"> 
+    	<xsl:copy> 
+    		<xsl:apply-templates select="@* | * | comment() | processing-instruction() | text()"/> 
+    	</xsl:copy> 
+    </xsl:template> 
+        
   
 </xsl:stylesheet>