mirror of
https://gitlab.silvrtree.co.uk/martind2000/rss-braider.git
synced 2025-01-26 22:36:17 +00:00
28 lines
952 B
JavaScript
28 lines
952 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" : "file",
|
|
"count" : 1,
|
|
"file_path" : __dirname + "/filefeed.xml",
|
|
"categories" : ['something can go here']
|
|
},
|
|
|
|
]
|
|
};
|
|
exports.feed = feed; |