Just looking through the svn antlib to see how antlibs work and I found some uppercase HTML in src/etc/diff.xsl, as the other xsl sheet is in lowercase tags, I changed them over to lowercase.

Kev
Index: D:/eclipse/workspace/svn/src/etc/diff.xsl
===================================================================
--- D:/eclipse/workspace/svn/src/etc/diff.xsl   (revision 290065)
+++ D:/eclipse/workspace/svn/src/etc/diff.xsl   (working copy)
@@ -33,11 +33,11 @@
   </xsl:template>
 
   <xsl:template match="revisiondiff|tagdiff">
-    <HTML>
-      <HEAD>
-        <TITLE><xsl:value-of select="$title"/></TITLE>
-      </HEAD>
-      <BODY link="#000000" alink="#000000" vlink="#000000" text="#000000">
+    <html>
+      <head>
+        <title><xsl:value-of select="$title"/></title>
+      </head>
+      <body link="#000000" alink="#000000" vlink="#000000" text="#000000">
         <style type="text/css">
           body, p {
           font-family: verdana,arial,helvetica;
@@ -73,7 +73,7 @@
                        </td>
                </tr>
        </table>
-        <TABLE BORDER="0" WIDTH="100%" CELLPADDING="3" CELLSPACING="1">
+        <table border="0" width="100%" cellpadding="3" cellspacing="1">
                <xsl:call-template name="show-paths">
                        <xsl:with-param name="title">New Files</xsl:with-param>
                        <xsl:with-param name="anchor">New</xsl:with-param>
@@ -91,35 +91,35 @@
                        <xsl:with-param name="anchor">Removed</xsl:with-param>
                        <xsl:with-param name="paths" 
select=".//path[action='deleted']"/>
                </xsl:call-template>
-        </TABLE>
+        </table>
         
-      </BODY>
-    </HTML>
+      </body>
+    </html>
   </xsl:template>
 
   <xsl:template name="show-paths">
        <xsl:param name="title"/>
        <xsl:param name="anchor"/>
        <xsl:param name="paths"/>
-       <TR>
-               <TD colspan="2" class="dateAndAuthor">
+       <tr>
+               <td colspan="2" class="dateAndAuthor">
                        <a>
                                <xsl:attribute name="name"><xsl:value-of 
select="$anchor"/></xsl:attribute>
                                <xsl:value-of select="$title"/> - <xsl:value-of 
select="count($paths)"/> entries
                        </a>
                        <a href="#TOP">(back to top)</a>
-               </TD>
-       </TR>
-       <TR>
-               <TD width="20">
+               </td>
+       </tr>
+       <tr>
+               <td width="20">
                        <xsl:text>    </xsl:text>
-               </TD>
-               <TD>
+               </td>
+               <td>
                        <ul>
                                <xsl:apply-templates select="$paths"/>
                        </ul>
-               </TD>
-       </TR>
+               </td>
+       </tr>
   </xsl:template>  
 
   <xsl:template match="path">

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to