aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-11 22:45:57 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-08-11 22:45:57 +0000
commitb3392663e19aa2517316ea6984381f0b424b8c5b (patch)
tree9db3abb020d38cb41a221ac3035f3df5f67be8ac /doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn
parent6bcfbbf81a49b0aa3850846141f3dda64c66bcf1 (diff)
downloadikiwiki-b3392663e19aa2517316ea6984381f0b424b8c5b.tar
ikiwiki-b3392663e19aa2517316ea6984381f0b424b8c5b.tar.gz
web commit by NicolasLimare: rssfeed date patch correction
Diffstat (limited to 'doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn')
-rw-r--r--doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn27
1 files changed, 25 insertions, 2 deletions
diff --git a/doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn b/doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn
index d28d492c2..645376786 100644
--- a/doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn
+++ b/doc/bugs/correct_published_and_updated_time_information_for_the_feeds.mdwn
@@ -83,6 +83,29 @@ Index: IkiWiki/Plugin/inline.pm
my $template=template($feedtype."page.tmpl", blind_cache => 1);
</pre>
-— NicolasLimare
-[[tag patch]]
+
+>> Yes I noticedthe bug today; the correct (tested on feedvalidator) rssitem.tmpl template must start with the following content:
+
+ <item>
+ <TMPL_IF NAME="AUTHOR">
+ <title><TMPL_VAR AUTHOR ESCAPE=HTML>: <TMPL_VAR TITLE></title>
+ <dcterms:creator><TMPL_VAR AUTHOR ESCAPE=HTML></dcterms:creator>
+ <TMPL_ELSE>
+ <title><TMPL_VAR TITLE></title>
+ </TMPL_IF>
+ <dcterms:modified><TMPL_VAR MDATE_3339></dcterms:modified>
+ <dcterms:created><TMPL_VAR DATE_3339></dcterms:created>
+ ....
+
+>> and rsspage.tmpl must start with:
+
+ <?xml version="1.0"?>
+ <rss version="2.0"
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
+ xmlns:dcterms="http://purl.org/dc/terms/" >
+ ....
+
+>> — [[NicolasLimare]]
+
+[[tag patch]] \ No newline at end of file