Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Rubric CPAN distribution.

Report information
The Basics
Id: 13256
Status: resolved
Priority: 0/
Queue: Rubric

People
Owner: rjbs [...] cpan.org
Requestors: alan.coopersmith
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.10
Fixed in: (no value)



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>