diff options
author | ot <ot@localhost> | 2007-07-20 03:10:57 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-07-20 03:10:57 +0000 |
commit | 4e91c3fe3b0f3bdd8deb036c565469f93ccca996 (patch) | |
tree | b1d6da4604bff3d49736200e8b5d122c293cce53 /htdocs | |
parent | 1fcd17d40f4c6da5268abe47b9bf79dcffb8936e (diff) | |
download | markup-validator-4e91c3fe3b0f3bdd8deb036c565469f93ccca996.zip markup-validator-4e91c3fe3b0f3bdd8deb036c565469f93ccca996.tar.gz markup-validator-4e91c3fe3b0f3bdd8deb036c565469f93ccca996.tar.bz2 |
Since we are (still) serving as text/html:
* removing the potentially problematic xml decl
http://www.w3.org/International/articles/serving-xhtml/Overview.en.php#declaration
* adding meta header for charset decl
Diffstat (limited to 'htdocs')
-rwxr-xr-x | htdocs/header.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/htdocs/header.html b/htdocs/header.html index 37c42db..cebc4c1 100755 --- a/htdocs/header.html +++ b/htdocs/header.html @@ -1,9 +1,9 @@ -<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <title><!--#echo var="title" --></title> + <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> + <title><!--#echo var="title" --></title> <link rev="made" href="mailto:www-validator@w3.org" /> <link rev="start" href="<!--#echo var="relroot" -->" title="Home Page" /> <style type="text/css" media="all"> @@ -11,7 +11,7 @@ </style> <script type="text/javascript" src="scripts/mootools.js"></script> <script type="text/javascript" src="scripts/w3c-validator.js"></script> - <meta name="revision" content="$Id: header.html,v 1.50 2007-07-17 05:17:56 ot Exp $" /> + <meta name="revision" content="$Id: header.html,v 1.51 2007-07-20 03:10:56 ot Exp $" /> <meta name="keywords" content="HTML, HyperText Markup Language, Validation, W3C Markup Validation Service" /> <meta name="description" content="W3C's easy-to-use @@ -20,7 +20,7 @@ <!--#if expr="$feeds = 1" --> <link rel="alternate" type="application/atom+xml" href="http://www.w3.org/QA/Tools/validator-whatsnew.atom" /> <!--#endif --> - <!-- SSI Template Version: $Id: header.html,v 1.50 2007-07-17 05:17:56 ot Exp $ --> + <!-- SSI Template Version: $Id: header.html,v 1.51 2007-07-20 03:10:56 ot Exp $ --> </head> |