You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2009/08/27 00:09:44 UTC

svn commit: r808203 - /maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Author: vsiveton
Date: Wed Aug 26 22:09:43 2009
New Revision: 808203

URL: http://svn.apache.org/viewvc?rev=808203&view=rev
Log:
o fixed report rendering

Modified:
    maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java

Modified: maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java?rev=808203&r1=808202&r2=808203&view=diff
==============================================================================
--- maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java (original)
+++ maven/plugins/trunk/maven-linkcheck-plugin/src/main/java/org/apache/maven/plugins/linkcheck/LinkcheckReport.java Wed Aug 26 22:09:43 2009
@@ -1310,8 +1310,6 @@
             }
         }
 
-        getSink().tableRow();
-
         getSink().table_();
 
         getSink().section1_();
@@ -1334,10 +1332,9 @@
                                                           "report.linkcheck.table.summary.documents" ) );
         getSink().tableHeaderCell_();
         // TODO it is due to DOXIA-78
-        getSink().rawText( "<th colspan=\"4\" center>" );
+        getSink().rawText( "<th colspan=\"4\" align=\"center\">" );
         getSink().text( i18n.getString( "linkcheck-report", locale, "report.linkcheck.table.links" ) );
         getSink().tableHeaderCell_();
-        getSink().rawText( "</th>" );
         getSink().tableRow_();
 
         getSink().tableRow();
@@ -1417,4 +1414,4 @@
 
         return buf.toString();
     }
-}
+}
\ No newline at end of file