]> git.vanrenterghem.biz Git - git.ikiwiki.info.git/blob - doc/bugs/html5_time_element__39__s_pubdate_wrong_when_using_xhtml5___34__mode__34__.mdwn
16be643cfcfa1a393cde63526f83a0d004d7ec58
[git.ikiwiki.info.git] / doc / bugs / html5_time_element__39__s_pubdate_wrong_when_using_xhtml5___34__mode__34__.mdwn
1 Hi,
3 XML error:
5     Created <time datetime="2009-03-24T18:02:14Z" pubdate class="relativedate" title="Tue, 24 Mar 2009 14:02:14 -0400">2009-03-24</time>
7 The pubdate REQUIRES a date, so e.g. `pubdate="2009-03-24T18:02:14Z"`
9 > No, `pubdate="pubdate"`. It's a boolean attribute. applied && [[done]]
10 > --[[Joey]] 
11 >> awesome, thanks for fixing my fix ;) --[[simonraven]]
12 >>> This seems to be happening either still or again with version 3.20200202.3-1. I'm getting strings generated like
13 >>> Posted <time datetime="2007-12-06T05:00:00Z" pubdate="pubdate">Thu 06 Dec 2007 12:00:00 AM EST</time>
14 >>> which shows up as an error on https://validator.w3.org/
15  
17 Otherwise the XML parser chokes.
19 <http://www.whatwg.org/specs/web-apps/current-work/multipage/text-level-semantics.html#attr-time-pubdate>
21 (indented exactly 4 spaces)
23 <pre>
24     diff --git a/IkiWiki.pm b/IkiWiki.pm
25     index 1f2ab07..6ab5b56 100644
26     --- a/IkiWiki.pm
27     +++ b/IkiWiki.pm
28     @@ -1004,7 +1004,7 @@ sub displaytime ($;$$) {
29         my $time=formattime($_[0], $_[1]);
30         if ($config{html5}) {
31             return '&lt;time datetime="'.date_3339($_[0]).'"'.
32     -         ($_[2] ? ' pubdate' : '').
33     +           ($_[2] ? ' pubdate="'.date_3339($_[0]).'"' : '').
34                 '>'.$time.'&lt;/time&gt;';
35         }
36         else {
37     diff --git a/IkiWiki/Plugin/relativedate.pm b/IkiWiki/Plugin/relativedate.pm
38     index fe8ef09..8c4a1b4 100644
39     --- a/IkiWiki/Plugin/relativedate.pm
40     +++ b/IkiWiki/Plugin/relativedate.pm
41     @@ -59,7 +59,7 @@ sub mydisplaytime ($;$$) {
42      
43         if ($config{html5}) {
44             return '&lt;time datetime="'.IkiWiki::date_3339($time).'"'.
45     -         ($pubdate ? ' pubdate' : '').$mid.'&lt;/time&gt;';
46     +           ($pubdate ? ' pubdate="'.IkiWiki::date_3339($time).'"' : '').$mid.'&lt;/time&gt;';
47         }
48         else {
49             return '&lt;span'.$mid.'&lt;/span&gt;';
50 </pre>