docs: consolidate html header and footer
authorAndreas Boll <andreas.boll.dev@gmail.com>
Tue, 12 Jun 2012 07:05:03 +0000 (09:05 +0200)
committerBrian Paul <brianp@vmware.com>
Tue, 12 Jun 2012 14:03:29 +0000 (08:03 -0600)
add doctype
add character encoding
add missing <head> tag
unify html header and footer

Signed-off-by: Brian Paul <brianp@vmware.com>
50 files changed:
docs/autoconf.html
docs/banner.html
docs/bugs.html
docs/conform.html
docs/contents.html
docs/debugging.html
docs/developers.html
docs/devinfo.html
docs/dispatch.html
docs/download.html
docs/egl.html
docs/envvars.html
docs/extensions.html
docs/faq.html
docs/games.html
docs/glu.html
docs/helpwanted.html
docs/index.html
docs/install.html
docs/intro.html
docs/libraries.html
docs/license.html
docs/lists.html
docs/llvmpipe.html
docs/mangling.html
docs/modelers.html
docs/news.html
docs/opengles.html
docs/openvg.html
docs/osmesa.html
docs/perf.html
docs/postprocess.html
docs/precompiled.html
docs/relnotes.html
docs/repository.html
docs/science.html
docs/shading.html
docs/sourcedocs.html
docs/sourcetree.html
docs/subset-A.html
docs/subset.html
docs/systems.html
docs/thanks.html
docs/utilities.html
docs/utility.html
docs/versions.html
docs/viewperf.html
docs/vmware-guest.html
docs/webmaster.html
docs/xlibdriver.html

index 07a966e..5f94b7e 100644 (file)
@@ -1,12 +1,12 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" ><html LANG=en>
-
-<title>Compilation and Installation using Autoconf</title>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Compilation and Installation using Autoconf</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
 <body>
 
-
 <h1>Compilation and Installation using Autoconf</h1>
 
 <ol>
index 4f12c7a..30b476d 100644 (file)
@@ -1,8 +1,10 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
-<html LANG=en>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
 <head>
-  <title>Banner</title
-><STYLE TYPE="TEXT/CSS" ><!-- 
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Banner</title>
+<STYLE TYPE="TEXT/CSS" >
+<!--
 BODY { BACKGROUND: BLACK; COLOR: WHITE } TABLE { width: 94%; text-align: left; } 
 TD { vertical-align: top } 
 H1 { 
@@ -19,7 +21,8 @@ border-image: url(gears.png) 100%; -WEBKIT-border-image: url(gears.png) 100%;
 }
 */
 } 
---></STYLE >
+-->
+</STYLE >
 </head>
 <body ><DIV CLASS="gears" ></DIV ><DIV CLASS="gears" ></DIV ><H1 >The
 Mesa 3D Graphics Library</H1 >
index fa7c484..c5ed16d 100644 (file)
@@ -1,13 +1,13 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" >
-<HTML LANG=en >
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Bug Reporting</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Mesa Bug Reporting</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Bug Database</H1>
+<h1>Bug Database</h1>
 
 <p>
 The Mesa bug database is hosted on
@@ -50,5 +50,5 @@ If your bug report is vague or your test program doesn't compile
 easily, the problem may not be fixed very quickly.
 </p>
 
-</BODY>
-</HTML>
+</body>
+</html>
index 3611f8c..51674e8 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>Conformance</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Conformance</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Conformance</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Conformance</h1>
 
 <p>
 The SGI OpenGL conformance tests verify correct operation of OpenGL
index 6f556ee..bd7177e 100644 (file)
@@ -1,8 +1,9 @@
-<html>
-
-<title>Contents</title>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Contents</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
 
 <!--Override a few values from the style sheet: -->
 <style>
@@ -19,7 +20,8 @@ a:visited {
 }
 -->
 </style>
-
+</head>
+<body>
 
 <b>Documentation</b>
 <ul>
index 2df62f5..36d3634 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Debugging Tips</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Debugging Tips</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Debugging Tips</H1>
+<h1>Debugging Tips</h1>
 
 <p>
    Normally Mesa (and OpenGL) records but does not notify the user of
@@ -34,5 +35,5 @@
    src/dlist.c for details.
 </p>
 
-</BODY>
-</HTML>
+</body>
+</html>
index 8960e7c..e1c52ac 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>Developers</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Developers</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Developers</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Developers</h1>
 
 <p>
 Both professional and volunteer developers contribute to Mesa.
index 678e48c..06322d1 100644 (file)
@@ -1,15 +1,16 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Development Notes</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Development Notes</TITLE>
+<h1>Development Notes</h1>
 
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
 
-<BODY>
-
-<H1>Development Notes</H1>
-
-
-<H2>Adding Extentions</H2>
+<h2>Adding Extentions</h2>
 
 <p>
 To add a new GL extension to Mesa you have to do at least the following.
index 620aecd..4f48e94 100644 (file)
@@ -1,11 +1,12 @@
-<HTML>
-<HEAD>
-<TITLE>GL Dispatch in Mesa</TITLE>
-<LINK REL="stylesheet" TYPE="text/css" HREF="mesa.css">
-</HEAD>
-
-<BODY>
-<H1>GL Dispatch in Mesa</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>GL Dispatch in Mesa</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+<h1>GL Dispatch in Mesa</h1>
 
 <p>Several factors combine to make efficient dispatch of OpenGL functions
 fairly complicated.  This document attempts to explain some of the issues
@@ -268,5 +269,5 @@ included.</p>
 <A NAME="autogen"/>
 <H2>4. Automatic Generation of Dispatch Stubs</H2>
 
-</BODY>
-</HTML>
+</body>
+</html>
index 6a9533a..b0b7f7e 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Getting Mesa</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Getting Mesa</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Downloading</H1>
+<h1>Downloading</h1>
 
 <p>
 Primary Mesa download site:
@@ -98,5 +99,5 @@ were split off some time ago.
 </p>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index 5b75007..e374357 100644 (file)
@@ -1,9 +1,10 @@
-<html>
-
-<title>Mesa EGL</title>
-
-<head><link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa EGL</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
 <body>
 
 <h1>Mesa EGL</h1>
index a64e2ee..ee0a37d 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Environment Variables</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Environment Variables</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Environment Variables</H1>
+<h1>Environment Variables</h1>
 
 <p>
 Normally, no environment variables need to be set.  Most of the environment
@@ -163,10 +164,5 @@ Other Gallium drivers have their own environment variables.  These may change
 frequently so the source code should be consulted for details.
 </p>
 
-
-<br>
-<br>
-
-
-</BODY>
-</HTML>
+</body>
+</html>
index 91ed20e..d96445c 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Extensions</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Mesa Extensions</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Mesa Extensions</H1>
+<h1>Mesa Extensions</h1>
 
 <p>
 A number of extensions have been developed especially for Mesa.
@@ -14,22 +15,21 @@ The specifications follow.
 </p>
 
 
-<UL>
-<LI><A HREF="MESA_agp_offset.spec">MESA_agp_offset.spec</A>
-<LI><A HREF="MESA_copy_sub_buffer.spec">MESA_copy_sub_buffer.spec</A>
-<LI><A HREF="MESA_packed_depth_stencil.spec">MESA_packed_depth_stencil.spec</A>
-<LI><A HREF="MESA_pack_invert.spec">MESA_pack_invert.spec</A>
-<LI><A HREF="MESA_pixmap_colormap.spec">MESA_pixmap_colormap.spec</A>
-<LI><A HREF="MESA_release_buffers.spec">MESA_release_buffers.spec</A>
-<LI><A HREF="MESA_resize_buffers.spec">MESA_resize_buffers.spec</A>
-<LI><A HREF="MESA_set_3dfx_mode.spec">MESA_set_3dfx_mode.spec</A>
-<LI><A HREF="MESA_sprite_point.spec">MESA_sprite_point.spec</A> (obsolete)
-<LI><A HREF="MESA_texture_signed_rgba.spec">MESA_texture_signed_rgba.spec</A>
-<LI><A HREF="MESA_trace.spec">MESA_trace.spec</A> (obsolete)
-<LI><A HREF="MESA_window_pos.spec">MESA_window_pos.spec</A>
-<LI><A HREF="MESA_ycbcr_texture.spec">MESA_ycbcr_texture.spec</A>
-</UL>
-
-
-</BODY>
-</HTML>
+<ul>
+<li><a href="MESA_agp_offset.spec">MESA_agp_offset.spec</a>
+<li><a href="MESA_copy_sub_buffer.spec">MESA_copy_sub_buffer.spec</a>
+<li><a href="MESA_packed_depth_stencil.spec">MESA_packed_depth_stencil.spec</a>
+<li><a href="MESA_pack_invert.spec">MESA_pack_invert.spec</a>
+<li><a href="MESA_pixmap_colormap.spec">MESA_pixmap_colormap.spec</a>
+<li><a href="MESA_release_buffers.spec">MESA_release_buffers.spec</a>
+<li><a href="MESA_resize_buffers.spec">MESA_resize_buffers.spec</a>
+<li><a href="MESA_set_3dfx_mode.spec">MESA_set_3dfx_mode.spec</a>
+<li><a href="MESA_sprite_point.spec">MESA_sprite_point.spec</a> (obsolete)
+<li><a href="MESA_texture_signed_rgba.spec">MESA_texture_signed_rgba.spec</a>
+<li><a href="MESA_trace.spec">MESA_trace.spec</a> (obsolete)
+<li><a href="MESA_window_pos.spec">MESA_window_pos.spec</a>
+<li><a href="MESA_ycbcr_texture.spec">MESA_ycbcr_texture.spec</a>
+</ul>
+
+</body>
+</html>
index bf6545f..e1f7b3d 100644 (file)
@@ -1,11 +1,11 @@
-<html>
-
-<head><title>Mesa FAQ</title></head>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa FAQ</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
 <center>
 <h1>Mesa Frequently Asked Questions</h1>
index 82e3d09..eaa7f40 100644 (file)
@@ -1,13 +1,13 @@
-<HTML>
-
-<TITLE>Games</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Games</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Games</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
+<h1>Games</h1>
 
 <ul>
        <li><a href="http://www.psc.edu/%7Esmp/a3d/">Asteroids3D</a> - 3D asteroids game
@@ -57,7 +57,8 @@
        - freeware arcade style game
        </li><li><a href="http://xracer.annexia.org/" target="_parent">XRacer</a> - Free spaceship
        racing game, similar to Wipeout
-</li></ul>
-
+       </li>
+</ul>
 
-</body></html>
+</body>
+</html>
index 8adaf42..3d7cbe5 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>SGI GLU</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>SGI SI GLU</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>SGI GLU</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>SGI SI GLU</h1>
 
 (Silicon Graphics, Inc. Sample Implementation of the OpenGL Utility library)
 
index 34afe49..4241e24 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Help Wanted</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Help Wanted</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Help Wanted / To-Do List</H1>
+<h1>Help Wanted / To-Do List</h1>
 
 <p>
 We can always use more help with the Mesa project.
@@ -70,5 +71,5 @@ Finally:
 </ol>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index eec4d72..dc74b66 100644 (file)
@@ -1,8 +1,8 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN">
-<html>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
+<html lang="en">
 <head>
-<title>Mesa Home Page</title>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Home Page</title>
 </head>
 
 <frameset rows="80,*" border="0" frameborder="yes">
index a344c2c..2a59545 100644 (file)
@@ -1,13 +1,13 @@
-<HTML>
-
-<TITLE>Compiling and Installing</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-
-<H1>Compiling and Installing</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Compiling and Installing</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Compiling and Installing</h1>
 
 <ol>
 <li><a href="#prereq-general">Prerequisites for building</a>
index 303f5eb..f4e0f01 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>Mesa Introduction</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Introduction</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Introduction</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Introduction</h1>
 
 <p>
 Mesa is an open-source implementation of the
index 1c425cf..e9db427 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Libraries and Toolkits</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Libraries and Toolkits</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Libraries and Toolkits</H1>
+<h1>Libraries and Toolkits</h1>
 
 <ul>
 <li><a href="http://mrpowers.com/Apprentice/">Apprentice</a> - free OpenInventor work-alike
@@ -53,4 +54,5 @@ Open SG PLUS</a> - a scene-graph library
 </ul>
 
 
-</body></html>
+</body>
+</html>
index 913dd41..a840a69 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>License / Cppyright Information</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Disclaimer</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>License / Cppyright Information</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Disclaimer</h1>
 
 <p>
 Mesa is a 3-D graphics library with an API which is very similar to
index 033b0b7..c79d615 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Mailing Lists</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Mesa Mailing Lists</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Mailing Lists</H1>
+<h1>Mailing Lists</h1>
 
 
 <p>There are four Mesa 3D / DRI mailing lists:
@@ -82,5 +83,5 @@ target="_parent">OpenGL discussion forums</A> at www.opengl.org</li>
 </ul>
 </ul>
 
-</HTML>
-</BODY>
+</body>
+</html>
index bd9cc26..13eb924 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>llvmpipe</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>llvmpipe</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Introduction</H1>
+<h1>Introduction</h1>
 
 <p>
 The Gallium llvmpipe driver is a software rasterizer that uses LLVM to
@@ -200,3 +201,6 @@ for posterior analysis, e.g.:
   for a stand-alone example.  See the llvm-c/Core.h file for reference.
 </li>
 </ul>
+
+</body>
+</html>
index 5507154..3d88c15 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Function Name Mangling</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Function Name Mangling</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Function Name Mangling</H1>
+<h1>Function Name Mangling</h1>
 
 <p>
 If you want to use both Mesa and another OpenGL library in the same
@@ -26,5 +27,5 @@ CFLAGS += -DUSE_MGL_NAMESPACE
 </p>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index 2e90a52..13a4603 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Modelers, Renderers and Viewers</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Modelers, Renderers and Viewers</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Modelers, Renderers and Viewers</H1>
+<h1>Modelers, Renderers and Viewers</h1>
 
 <ul>
         <li><a href="http://www.aqsis.org/" target="_parent">Aqsis</a> - a RenderMan compatible renderer</li>
@@ -60,4 +61,5 @@
 </li></ul>
 
 
-</body></html>
+</body>
+</html>
index 140f35b..48f3737 100644 (file)
@@ -1,15 +1,13 @@
-<HTML>
-
-<TITLE>Mesa News</TITLE>
-
-<head><link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<body bgcolor="#eeeeee">
-
-<H1>News</H1>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa News</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>News</h1>
 
 <h2>May 18, 2012</h2>
 
index 0fee488..d024825 100644 (file)
@@ -1,9 +1,10 @@
-<html>
-
-<title>OpenGL ES</title>
-
-<head><link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>OpenGL ES</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
 <body>
 
 <h1>OpenGL ES</h1>
index 81e50b6..9c3cc87 100644 (file)
@@ -1,14 +1,13 @@
-<HTML>
-
-<TITLE>OpenVG State Tracker</TITLE>
-
-<head><link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<body bgcolor="#eeeeee">
-
-<H1>OpenVG State Tracker</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>OpenVG State Tracker</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>OpenVG State Tracker</h1>
 
 <p>
 The current version of the OpenVG state tracker implements OpenVG 1.1.
index 525da4d..fafdc83 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Off-screen Rendering</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Off-screen Rendering</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Off-screen Rendering</H1>
+<h1>Off-screen Rendering</h1>
 
 
 <p>
@@ -84,5 +85,5 @@ the top-level Makefile.  Send a patch to the Mesa developers too, if you're
 inclined.
 </p>
 
-</BODY>
-</HTML>
+</body>
+</html>
index ee9c4b1..ec400c6 100644 (file)
@@ -1,16 +1,17 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Performance Tips</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Performance Tips</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Performance Tips</H1>
+<h1>Performance Tips</h1>
 
 <p>
 Performance tips for software rendering:
-</P>
+</p>
 <ol>
 
 <li> Turn off smooth shading when you don't need it (glShadeModel)
@@ -64,5 +65,5 @@ Performance tips for software rendering:
 </ol>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index 2a37969..b99ef2b 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Gallium Post-processing</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Gallium Post-processing</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Gallium Post-processing</H1>
+<h1>Gallium Post-processing</h1>
 
 <p>
 The Gallium drivers support user-defined image post-processing.
@@ -52,5 +53,5 @@ Numbers higher than 8 see minimizing gains.
 <br>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index 50cb2af..32aaeb8 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Precompiled libraries</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Precompiled libraries</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Precompiled Libraries</H1>
+<h1>Precompiled Libraries</h1>
 
 <p>
 In general, precompiled Mesa libraries are not available.
@@ -16,5 +17,5 @@ However, some Linux distros (such as Ubuntu) seem to closely track
 Mesa and often have the latest Mesa release available as an update.
 </p>
 
-</BODY>
-</HTML>
+</body>
+</html>
index 1bc889a..41ef9e3 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Release Notes</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Mesa Release Notes</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Release Notes</H1>
+<h1>Release Notes</h1>
 
 <p>
 The release notes summarize what's new or changed in each Mesa release.
@@ -90,5 +91,5 @@ Versions of Mesa prior to 6.4 are summarized in the
 </UL>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index bdd2b57..cd895a3 100644 (file)
@@ -1,10 +1,11 @@
-<HTML>
-
-<TITLE>Code Repository</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Code Repository</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
 <h1>Code Repository</h1>
 
@@ -212,5 +213,3 @@ See <a href="http://www.eecs.harvard.edu/~cduan/technical/git/" target="_parent"
 
 </body>
 </html>
-
-
index 0b33843..102593c 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Science and Technical</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Science and Technical</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Science and Technical</H1>
+<h1>Science and Technical</h1>
 
 <ul>
        <li><a href="http://www.softintegration.com/products/toolkit/opengl/" target="_parent">Ch</a> - OpenGL bindings for the Ch C/C++ interpreter
@@ -66,4 +67,5 @@
 </li></ul>
 
 
-</body></html>
+</body>
+</html>
index aba3959..604bd1d 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Shading Language Support</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Shading Language Support</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Shading Language Support</H1>
+<h1>Shading Language Support</h1>
 
 <p>
 This page describes the features and status of Mesa's support for the
@@ -264,5 +265,5 @@ tests GLSL features.
 The Mesa demos repository also has some good GLSL tests.
 </p>
 
-</BODY>
-</HTML>
+</body>
+</html>
index 90538af..e8434ba 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Source Code Documentation</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Source Code Documentation</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Source Code Documentation</H1>
+<h1>Source Code Documentation</h1>
 
 <p>
 <A HREF="http://www.doxygen.org" target="_parent">Doxygen</A>
@@ -33,5 +34,5 @@ run the doxygen scripts, you can read the documentation
 <A HREF="../doxygen/main/index.html" target="_parent">here</A>
 </P>
 
-</BODY>
-</HTML>
+</body>
+</html>
index e26c653..abc5e39 100644 (file)
@@ -1,10 +1,11 @@
-<HTML>
-
-<TITLE>Mesa Source Tree</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Source Tree</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
 <h1>Mesa source code tree overview</h1>
 
@@ -157,5 +158,5 @@ each directory.
 </ul>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index d576bb6..539ce33 100644 (file)
@@ -1,6 +1,7 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
 <head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
   <title>Mini GLX Specification</title>
 </head>
 <body>
index c706381..0ceb136 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Subset Driver</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Mesa Subset Driver</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Mesa Subset Driver</H1>
+<h1>Mesa Subset Driver</h1>
 
 <p>
 In 2002/2003 Tungsten Graphics was contracted to develop a subset Mesa/Radeon
@@ -20,5 +21,5 @@ The specification for this subset can be found
 <a href="subset-A.html">here</a>.
 </p>
 
-</BODY>
-</HTML>
+</body>
+</html>
index 62a6e0b..1192405 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Supported Systems and Drivers</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Supported Systems and Drivers</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Supported Systems and Drivers</H1>
+<h1>Supported Systems and Drivers</h1>
 
 <p>
 Mesa is primarily developed and used on Linux systems.
index 2031788..b97ad74 100644 (file)
@@ -1,14 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Acknowledgements</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<HEAD>
-<TITLE>Acknowledgements</TITLE>
-</HEAD>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Acknowledgments</H1>
+<h1>Acknowledgments</h1>
 
 
 The following individuals and groups are to be acknowledged for their
@@ -130,5 +129,5 @@ Please send corrections and additions to Brian.
 </p>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index 4693639..c748169 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Development Utilities</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
-<TITLE>Development Utilities</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Development Utilities</H1>
+<h1>Development Utilities</h1>
 
 <ul>
 
@@ -23,4 +24,4 @@ memory-related problems in your code.
 </ul>
 
 </body>
-</html>
\ No newline at end of file
+</html>
index dfb4a90..23d6549 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>Utilities</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Utilities</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Utilities</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Utilities</h1>
 
 <ul>
 <li><a href="http://fsv.sourceforge.net/"
index 84b40fd..c28eff6 100644 (file)
@@ -1,17 +1,16 @@
-<HTML>
-
-<TITLE>Mesa Version History</TITLE>
-
-<head><link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<body bgcolor="#eeeeee">
-
-<B>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Version History</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<b>
 NOTE: Changes for Mesa 6.4 and later are documented in the corresponding
 <a href="relnotes.html">release notes</a> file.
-</B>
+</b>
 
 
 <H1>Mesa Version History</H1>
index af351bc..6c3faf6 100644 (file)
@@ -1,10 +1,11 @@
-<HTML>
-
-<TITLE>Viewperf Issues</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Viewperf Issues</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
 
 <h1>Viewperf Issues</h1>
 
@@ -196,5 +197,5 @@ and with a semi-random color (between white and black) since GL_FOG is enabled.
 </p>
 
 
-</BODY>
-</HTML>
+</body>
+</html>
index 4d95c17..7faa315 100644 (file)
@@ -1,12 +1,12 @@
-<html>
-
-<title>VMware guest GL driver</title>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>VMware guest GL driver</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
 <body>
 
-
 <h1>VMware guest GL driver</h1>
 
 <p>
index 16f4dc8..11472d9 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>Mesa Introduction</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Webmaster</font></H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Mesa Introduction</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Webmaster</h1>
 
 <p>
 If you have problems, edits or additions for this website send them
index db03bc3..8ae6688 100644 (file)
@@ -1,12 +1,13 @@
-<HTML>
-
-<TITLE>Xlib Software Driver</TITLE>
-
-<link rel="stylesheet" type="text/css" href="mesa.css"></head>
-
-<BODY>
-
-<H1>Xlib Software Driver</H1>
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html lang="en">
+<head>
+  <meta http-equiv="content-type" content="text/html; charset=utf-8">
+  <title>Xlib Software Driver</title>
+  <link rel="stylesheet" type="text/css" href="mesa.css">
+</head>
+<body>
+
+<h1>Xlib Software Driver</h1>
 
 <p>
 Mesa's Xlib driver provides an emulation of the GLX interface so that