27 lines
825 B
JavaScript
27 lines
825 B
JavaScript
|
var feed = {
|
||
|
"feed_name" : "feed",
|
||
|
"default_count" : 1,
|
||
|
"no_cdata_fields" : [],
|
||
|
"meta" : {
|
||
|
"title": "NPR Braided Feed",
|
||
|
"description": "This is a test of two NPR sources from file"
|
||
|
},
|
||
|
"sources" : [
|
||
|
{
|
||
|
"name" : "NPR",
|
||
|
"count" : 1,
|
||
|
"file_path" : __dirname + "/../feed_xml/npr.xml",
|
||
|
},
|
||
|
{
|
||
|
"name" : "NPR Health",
|
||
|
"count" : 1,
|
||
|
"file_path" : __dirname + "/../feed_xml/npr_health.xml",
|
||
|
},
|
||
|
{
|
||
|
"name" : "NPR Sports",
|
||
|
"count" : 1,
|
||
|
"feed_url" : "http://www.npr.org/rss/rss.php?id=1055"
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
exports.feed = feed;
|