- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 12 Apr 2007 12:04:19 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/validator/share/templates/en_US In directory hutz:/tmp/cvs-serv14427 Added Files: prefill_html401.tmpl prefill_xhtml10.tmpl Log Message: making prefilling of document structure on the server-side rather than via scripting. See: http://lists.w3.org/Archives/Public/www-validator/2007Mar/0078.html +thread and: http://lists.w3.org/Archives/Public/www-validator/2007Apr/0049.html +thread --- NEW FILE: prefill_xhtml10.tmpl --- <?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>I AM YOUR DOCUMENT TITLE REPLACE ME</title> <meta http-equiv="content-type" content="application/xhtml+xml;charset=utf-8" /> <meta http-equiv="content-style-type" content="text/css" /> </head> <body> <div> <TMPL_VAR NAME="fragment"> </div> </body> </html> --- NEW FILE: prefill_html401.tmpl --- <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>I AM YOUR DOCUMENT TITLE REPLACE ME</title> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <meta http-equiv="Content-Style-Type" content="text/css"> </head> <body> <div> <TMPL_VAR NAME="fragment"> </div> </body> </html>
Received on Thursday, 12 April 2007 12:04:26 UTC