Use <description> instead of <content:encoded>.
RSS 2.0 Specification doesn't have <content:encoded>.
see http://blogs.law.harvard.edu/tech/rss
I've tested this with Mozilla Thunderbird version 1.0.6 (20050802),
and seems to be working well.
Signed-off-by: Yasushi SHOJI <[EMAIL PROTECTED]>
---
gitweb.cgi | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)
8a489f354a5412e44ddaf7443aaecb47a81167f8
diff --git a/gitweb.cgi b/gitweb.cgi
--- a/gitweb.cgi
+++ b/gitweb.cgi
@@ -1426,8 +1426,7 @@ sub git_rss {
"</title>\n" .
"<pubDate>$cd{'rfc2822'}</pubDate>\n" .
"<link>" .
escapeHTML("$my_url?p=$project;a=commit;h=$commit") . "</link>\n" .
- "<description>" . escapeHTML($co{'title'}) .
"</description>\n" .
- "<content:encoded>" .
+ "<description>" .
"<![CDATA[\n";
my $comment = $co{'comment'};
foreach my $line (@$comment) {
@@ -1442,7 +1441,7 @@ sub git_rss {
print "$file<br/>\n";
}
print "]]>\n" .
- "</content:encoded>\n" .
+ "</description>\n" .
"</item>\n";
}
print "</channel></rss>";
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html