In [Atom](http://www.ietf.org/rfc/rfc4287.txt), we can provide `published` and `updated` information. In [RSS](http://cyber.law.harvard.edu/rss/rss.html), there is only `pubDate`, for the publication date, but an update can be mentioned with the [`dc:modified`](http://www.ietf.org/rfc/rfc2413.txt) element (whose datetime format is [iso 8601](http://www.w3.org/TR/NOTE-datetime)). This patch updates :) `inline.pm` and the two relevant templates. --- inline.pm.orig 2007-08-07 05:44:26.000000000 +0200 +++ inline.pm 2007-08-07 05:47:37.000000000 +0200 @@ -362,7 +362,9 @@ url => $u, permalink => $u, date_822 => date_822($pagectime{$p}), + mdate_822 => date_822($pagemtime{$p}), date_3339 => date_3339($pagectime{$p}), + mdate_3339 => date_3339($pagemtime{$p}), ); if ($itemtemplate->query(name => "enclosure")) { @@ -397,7 +399,7 @@ $content.=$itemtemplate->output; $itemtemplate->clear_params; - $lasttime = $pagectime{$p} if $pagectime{$p} > $lasttime; + $lasttime = $pagemtime{$p} if $pagemtime{$p} > $lasttime; } my $template=template($feedtype."page.tmpl", blind_cache => 1); --- atomitem.tmpl.orig 2007-08-07 05:44:43.000000000 +0200 +++ atomitem.tmpl 2007-08-07 05:46:14.000000000 +0200 @@ -11,7 +11,8 @@ - + + --- rssitem.tmpl.orig 2007-08-07 05:44:58.000000000 +0200 +++ rssitem.tmpl 2007-08-07 06:06:36.000000000 +0200 @@ -5,6 +5,7 @@ <TMPL_VAR TITLE> + — NicolasLimare [[tag patch]]