You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2005/10/25 02:49:28 UTC

svn commit: r328202 - /forrest/trunk/main/webapp/skins/common/xslt/html/strip_namespaces.xsl

Author: crossley
Date: Mon Oct 24 17:49:24 2005
New Revision: 328202

URL: http://svn.apache.org/viewcvs?rev=328202&view=rev
Log:
Isolate the fixme note for FOR-555.

Modified:
    forrest/trunk/main/webapp/skins/common/xslt/html/strip_namespaces.xsl

Modified: forrest/trunk/main/webapp/skins/common/xslt/html/strip_namespaces.xsl
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/webapp/skins/common/xslt/html/strip_namespaces.xsl?rev=328202&r1=328201&r2=328202&view=diff
==============================================================================
--- forrest/trunk/main/webapp/skins/common/xslt/html/strip_namespaces.xsl (original)
+++ forrest/trunk/main/webapp/skins/common/xslt/html/strip_namespaces.xsl Mon Oct 24 17:49:24 2005
@@ -16,12 +16,14 @@
   limitations under the License.
 -->
 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
-  <!-- Fixes FOR-555. This might not be the best solution though, but it sure works -->
+  <!-- FIXME: FOR-555. This might not be the best solution though, but it sure works -->
   <xsl:template match="comment()">
     <xsl:copy>
       <xsl:apply-templates select="@*|*|text()|processing-instruction()|comment()"/>
     </xsl:copy>
   </xsl:template>
+<!-- End fixme FOR-555 -->
+
     <xsl:template match="*">
       <!-- remove element prefix (if any) -->
       <xsl:element name="{local-name()}">