[llvm-commits] CVS: llvm-www/www-index.html

Misha Brukman brukman at cs.uiuc.edu
Fri Dec 26 16:02:01 PST 2008



Changes in directory llvm-www:

www-index.html updated: 1.170 -> 1.171
---
Log message:

Comply with HTML 4.01 Strict (no user-visible changes):
* No such property 'cellborder' on a table element
* Replaced width=X with style="width:X"
* Dropped underline (<u>) on a link
* Dropped <p> around an unordered list


---
Diffs of the changes:  (+5 -8)

 www-index.html |   13 +++++--------
 1 files changed, 5 insertions(+), 8 deletions(-)


Index: llvm-www/www-index.html
diff -u llvm-www/www-index.html:1.170 llvm-www/www-index.html:1.171
--- llvm-www/www-index.html:1.170	Fri Dec  5 15:49:13 2008
+++ llvm-www/www-index.html	Fri Dec 26 18:01:27 2008
@@ -1,10 +1,9 @@
 <!--#include virtual="header.incl" -->
 
-<table border="0" cellpadding="0" cellspacing="0" width="95%"
-cellborder="0">
+<table border="0" cellpadding="0" cellspacing="0" width="95%">
 <!-- Start of the left bar... -->
 <tr>
-<td valign="top" width="64%">
+<td valign="top" style="width:64%">
 
 <div class="www_sectiontitle">LLVM Overview</div>
 
@@ -21,7 +20,7 @@
 installed), while remaining transparent to developers and maintaining
 compatibility with existing build scripts.</p></li>
 
-<li><p><a href="docs/LangRef.html"><u>A virtual instruction set</u></a> - LLVM
+<li><p><a href="docs/LangRef.html">A virtual instruction set</a> - LLVM
 is a low-level object code representation that uses simple RISC-like
 instructions, but provides rich, language-independent, type information and
 dataflow (SSA) information about operands. This combination enables
@@ -84,9 +83,9 @@
 </td>
 
 <!-- Dividing space between columns -->
-<TD width="2%"></TD>
+<td style="width:2%"></td>
 <!-- Start of the right bar... 359 -->
-<td valign="top" width="35%">
+<td valign="top" style="width:35%">
 
 <div class="www_sectiontitle">Latest LLVM Release!</div>
 
@@ -106,7 +105,6 @@
 
 <div class="www_text">
 <p>LLVM 2.5 release schedule:</p>
-<p>
 <ul>
 <li>Jan 21 - Code Freeze/Branch Creation (9PM PST). </li>
 <li>Jan 25 - Pre-release 1 testing begins.</li>
@@ -115,7 +113,6 @@
 <li>Feb  9 - Pre-release 2 testing ends.</li>
 <li>Feb 11 - Release.</li>
 </ul>
-</p>
 </div>
 
 <br>






More information about the llvm-commits mailing list