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

Misha Brukman brukman at cs.uiuc.edu
Wed Dec 24 14:13:57 PST 2008



Changes in directory llvm-www/releases:

index.html updated: 1.49 -> 1.50
---
Log message:

* Comply with HTML 4.01 Strict
  + Added doctype, content type, fixed <script> tag
* Added <noscript> tag for those Javascript-less browsers


---
Diffs of the changes:  (+7 -3)

 index.html |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)


Index: llvm-www/releases/index.html
diff -u llvm-www/releases/index.html:1.49 llvm-www/releases/index.html:1.50
--- llvm-www/releases/index.html:1.49	Wed Dec 24 12:09:38 2008
+++ llvm-www/releases/index.html	Wed Dec 24 16:12:51 2008
@@ -1,5 +1,8 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
+                      "http://www.w3.org/TR/html4/strict.dtd">
 <html>
 <head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
   <title>Download LLVM releases</title>
   <link rel="stylesheet" type="text/css" href="../llvm.css">
 </head>
@@ -45,7 +48,7 @@
 </tr>
 </table>
 
-<script language="javascript">
+<script type="text/javascript">
 function addReleases() {
   var RELEASES = [
     ['09 Nov 2008', '2.4'],
@@ -79,12 +82,13 @@
     var row = table.insertRow(-1);
     row.appendChild(createCell(date, 'right'));
     row.appendChild(createCell(version));
-    row.appendChild(createCell('<a href="download.html#' + version + '">download</a>'));
-    row.appendChild(createCell('<a href="' + version + '/docs/ReleaseNotes.html">release notes</a>'));
+    row.appendChild(createCell('<a href="download.html#' + version + '">download<\/a>'));
+    row.appendChild(createCell('<a href="' + version + '/docs/ReleaseNotes.html">release notes<\/a>'));
   }
 }
 addReleases();
 </script>
+<noscript><p>Please enable Javascript to view this page properly.</p></noscript>
 
 </div>
 






More information about the llvm-commits mailing list