Won't Fix
Details
Assignee
ROME Jira LeadROME Jira LeadReporter
VladimirVladimirLabels
Participants
vladpAffects versions
Priority
Major
Details
Details
Assignee
ROME Jira Lead
ROME Jira LeadReporter
Vladimir
VladimirLabels
Participants
vladp
Affects versions
Priority
Created May 25, 2012 at 2:07 AM
Updated October 7, 2013 at 3:25 PM
Resolved October 7, 2013 at 3:25 PM
I'm using ROME 1.0, Manifest.mf says: Build-Jdk: 1.6.0_10.
The problem is that RSS provider supplies PublishedDate in wrong format (timezone is missing) and ROME returns null on SyndEntry.getPublishedDate();
Maybe it is possible to refine parsing procedure somehow. In worst case scenario maybe return as PublishedDate value from LastBuildDate or else, but not null.
Here is the link with wrong date format:
http://dir.yahoo.com/rss/dir/getrss.php?reg_us
It returns (well, at least, how it looks like in Chrome, and IE8):
<pubDate>WED,23 MAY 2012 02:23:01</pubDate> // no space after week day, time zone is missing
but has to be like:
<pubDate>WED, 23 MAY 2012 02:23:01 GMT</pubDate>
Any comments, ideas?