mirror of
https://github.com/koreader/koreader
synced 2024-11-10 01:10:34 +00:00
4eb8664c95
* newsDownloader - atom support initial version * NewsDownloader: update example feed config (use Reuters atom source) * NewsDownloader: InfoMessage when unsupported urls * NewsDownloader: update menu_item id * NewsDownloader: change text label
9 lines
327 B
Lua
9 lines
327 B
Lua
return {
|
|
-- list your feeds here:
|
|
-- only supports http URL for now
|
|
{ "http://www.pcworld.com/index.rss", limit = 1 },
|
|
{ "http://feeds.reuters.com/Reuters/worldNews?format=xml", limit = 2},
|
|
-- set limit to "0" means no download, "-1" no limit.
|
|
{ "http://www.football.co.uk/international/rss.xml", limit = 0 },
|
|
}
|