shithub: werc

Download patch

ref: cfabe41f3a40bbfe302bf2d1a0965d6e1fc7bba7
parent: 1426b12c4027132e57d535af91cdac859bc1db73
author: uriel <uriel@vm41.cat-v.org>
date: Sun Jul 19 00:02:30 EDT 2009

Start to convert templates to HTML 5

--- a/lib/404.tpl
+++ b/lib/404.tpl
@@ -9,4 +9,4 @@
     src="http://linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
 
 <h4>Or take a look at the <a href="/sitemap">sitemap</a>.</h4>
-<hr />
+<hr>
--- a/lib/default_master.tpl
+++ b/lib/default_master.tpl
@@ -7,7 +7,7 @@
     <h1 class="headerTitle"><a href="/">%($"siteTitle%) <span id="headerSubTitle">%($"siteSubTitle%)</span></a></h1>
     </div>
     
-    <div class="subHeader"><br /></div>
+    <div class="subHeader"><br></div>
 </div>
 
 % if(! ~ $#handlers_bar_left 0) {
--- a/lib/footer.inc
+++ b/lib/footer.inc
@@ -2,5 +2,5 @@
 <!-- TODO Maybe should add a programatically generated google search box -->
 <div class="right"><a href="/_users/login">User Login</a></div>
 
-<br />
-<br class="doNotDisplay doNotPrint" />
+<br>
+<br class="doNotDisplay doNotPrint">
--- a/lib/headers.tpl
+++ b/lib/headers.tpl
@@ -1,24 +1,22 @@
-<?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" lang="en" xml:lang="en">
+<!DOCTYPE HTML>
+<html>
 <head>
 
     <title>%($pageTitle%)</title>
 
-    <link rel="stylesheet" href="/pub/style/style.css" type="text/css" media="screen, handheld" title="default" />
-    <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon" />
+    <link rel="stylesheet" href="/pub/style/style.css" type="text/css" media="screen, handheld" title="default">
+    <link rel="shortcut icon" href="/favicon.ico" type="image/vnd.microsoft.icon">
 % if(test -f $sitedir/_werc/pub/style.css)
-%    echo '    <link rel="stylesheet" href="/_werc/pub/style.css" type="text/css" media="screen" title="default" />'
+%    echo '    <link rel="stylesheet" href="/_werc/pub/style.css" type="text/css" media="screen" title="default">'
 
-    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+    <meta charset="UTF-8">
+% # Legacy charset declaration for backards compatibility with non-html5 browsers.
+    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 
 
-    <meta name="author" content="k" />
-
 % if(! ~ $#meta_description 0)
-%   echo '    <meta name="description" content="'$"meta_description'" />'
+%   echo '    <meta name="description" content="'$"meta_description'">'
 % if(! ~ $#meta_keywords 0)
-%   echo '    <meta name="keywords" content="'$"meta_keywords'" />'
+%   echo '    <meta name="keywords" content="'$"meta_keywords'">'
 
 % h = `{get_lib_file headers.inc}
 % if(! ~ $#h 0)