IntroductionA central place to store all your news items in various formats (currently: rss 2.0 and atom). Combined with a Service that checks your Channels for new Items on an regular basis. RSS 2.0 is fully supported atom has only basic support: all required fields and some of the recomended DetailsURIorg.openintents.news org.openintents.news/rss org.openintents.news/atom (only basic support at this point) org.openintents.news/rss for all RSS Channels org.openintents.news/rss/# for a specific channel org.openintents.news/rssfeedcontents for all Items of all Channels org.openintents.news/rssfeedcontents/# for a specific item. org.openintents.news/atom for all atom channels org.openintents.news/atom/# for a specific atom channel (id is table id not id field of xml stream org.openintents.news/atomfeedcontents/ org.openintents.news/atomfeedcontents/#
Layout of rssfeeds Table| Field Name | Type | Description | | id | long | Integer Primary Key | | Channel Name | String | | | Channel Link | String /uri | Feed Uri pointing to data/xml stream on the Interschnitzel | | Channel Description | String | Retrieved from xml stream or your own | | Channel Lang | String | Language used by channel. Retrieved from xml stream | | Channel Copyright | String | Copyright information, retrieved from xml stream | | Channel Image | String /uri | small icon for channel, download and cache locally | | History Len | integer | number of items to keep in history, 0=keep all | | Update Cycle | Integer | check for update every #n minutes | | Last Update | long | timestamp of the last update in milliseconds |
Layout of rssfeedcontents Table| Field Name | Type | Description | | id | long | primary key | | count | long | total rows | | Channel ID | long | id Key from rssfeeds table | | Item GUID | integer | Item GUID from Stream (unqui for a given stream) | | item link | string/uri | link to main article | | Item Description | String/CDATA | A summary or the article itself | | item title | string | title from stream | | item author | string | author from stream |
|