Add xmlns attribute on html element in templates; pages can now validate.
authorJosh Triplett <josh@freedesktop.org>
Thu, 8 Nov 2007 20:58:31 +0000 (12:58 -0800)
committerJosh Triplett <josh@freedesktop.org>
Thu, 8 Nov 2007 20:59:02 +0000 (12:59 -0800)
debian/changelog
doc/bugs/XHTML_needs_xmlns_attribute_on_html_element.mdwn
templates/misc.tmpl
templates/page.tmpl
templates/recentchanges.tmpl

index 0c4c8da8ff6b794f16c2dc4e661621647a29abfb..f2c296ab1c39c2df872484a7daa8353278832eaf 100644 (file)
@@ -20,8 +20,10 @@ ikiwiki (2.12) UNRELEASED; urgency=low
 
   [ Josh Triplett ]
   * Fix table plugin to not generate an unbalanced tbody tag with header=no
+  * Add xmlns attribute on html element in templates; pages can now
+    validate.
 
- -- Josh Triplett <josh@freedesktop.org>  Thu, 08 Nov 2007 11:41:27 -0800
+ -- Josh Triplett <josh@freedesktop.org>  Thu, 08 Nov 2007 12:58:28 -0800
 
 ikiwiki (2.11) unstable; urgency=low
 
index 8bb8e1b5683082357160417388665fe2a12bd7ad..751aaf0643466eda4f2a0f3e1eda754afe1f7e6a 100644 (file)
@@ -1,3 +1,5 @@
 XHTML needs `xmlns="http://www.w3.org/1999/xhtml"` on the `html` element;
 otherwise, it will not validate.
 --[[JoshTriplett]]
+
+[[done]] --[[JoshTriplett]]
index 32e2c934eac8fe8efdade8b40bbf3081293d7391..184920eaf267ea488a9ccacd62284bc41b9cedea 100644 (file)
@@ -1,6 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html>
+<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <base href="<TMPL_VAR BASEURL>" />
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
index a02345f89773019c796dccc65da7623643be3544..3a1ac9ef882361a3aa7869fa27439642d0d0e5c5 100644 (file)
@@ -1,6 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html>
+<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title><TMPL_VAR TITLE></title>
index e954503f8a0f46df58ece13f3009b81847b769f7..e03482f43f6629cfc46ef10edb708e5ddfe7c465 100644 (file)
@@ -1,6 +1,6 @@
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html>
+<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
 <base href="<TMPL_VAR BASEURL>" />
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />