mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-01-30 23:30:14 +00:00
27 lines
902 B
JavaScript
27 lines
902 B
JavaScript
var feed = {
|
|
"feed_name" : "test file feed",
|
|
"default_count" : 1,
|
|
"no_cdata_fields" : ['description'],
|
|
"meta" : {
|
|
"title": "Test File Feed",
|
|
"description": "This feed comes from a file",
|
|
// "url": "http://example.com/feed/",
|
|
},
|
|
'custom_namespaces' : {
|
|
"slash" : "http://purl.org/rss/1.0/modules/slash/",
|
|
"media" : "http://search.yahoo.com/mrss/",
|
|
"ev" : "http://purl.org/rss/2.0/modules/event/",
|
|
"sy" : "http://purl.org/rss/1.0/modules/syndication/",
|
|
"wfw" : "http://wellformedweb.org/CommentAPI/",
|
|
"kqed" : "http://www.kqed.org"
|
|
},
|
|
"sources" : [
|
|
{
|
|
"name" : "sample_feed",
|
|
"count" : 5,
|
|
"file_path" : __dirname + "/sample_feed.xml",
|
|
},
|
|
|
|
]
|
|
};
|
|
exports.feed = feed; |