Subject: | RSS Feeds not working in Firefox or Thunderbird |
The RSS feeds were not working properly for me as Firefox Live Bookmarks or
Thunderbird news feeds until I modified the RSS so that each item's rdf:about
attributes matched the values listed for rdf:resource in the list at the
start of the feed (see attached patch).
--- entries.rss Sun Apr 10 10:01:12 2005
+++ entries.rss-fixed Tue Jun 14 19:17:18 2005
@@ -22,7 +22,7 @@
[% CALL entries.reset %]
[% WHILE (entry = entries.next) %]
[% item = entry.link || uri.entry(entry) %]
- <item rdf:about="[% xml_escape(uri.entry(entry)) %]">
+ <item rdf:about="[% xml_escape(item) %]">
<title>[% xml_escape(entry.title) %]</title>
<link>[% xml_escape(item) %]</link>
<description>[% IF entry.description %][% "<p><em>" _ entry.description _ "</em></p>" | html %][% END %][% entry.body | html_line_break | html %]</description>