mirror of
https://github.com/LightAir/turbo-rss.git
synced 2026-02-04 03:56:19 +00:00
Added GeoRSS support
Supports basic GeoRSS with latitude/longitude fields.
This commit is contained in:
@@ -32,6 +32,7 @@
|
||||
language: 'en',
|
||||
categories: ['Category 1','Category 2','Category 3'],
|
||||
pubDate: 'May 20, 2012 04:00:00 GMT',
|
||||
//georss: true, //set this flag if you wish for the feed to be returned in GeoRSS. A lat/lng field will be expected for each item.
|
||||
ttl: '60'
|
||||
});
|
||||
|
||||
@@ -43,7 +44,9 @@
|
||||
guid: '1123', // optional - defaults to url
|
||||
categories: ['Category 1','Category 2','Category 3','Category 4'], // optional - array of item categories
|
||||
author: 'Guest Author', // optional - defaults to feed author property
|
||||
date: 'May 27, 2012' // any format that js Date can parse.
|
||||
date: 'May 27, 2012', // any format that js Date can parse.
|
||||
// lat: 33.417974, //latitude field. Provide if georss is true in the feed setup.
|
||||
// lng: -111.933231, //longitude field. Provide if georss is true in the feed setup.
|
||||
enclosure : {url:'...', file:'path-to-file'} // optional
|
||||
});
|
||||
|
||||
@@ -66,6 +69,7 @@
|
||||
* _categories_ <array> Optional. One or more categories this feed belongs to.
|
||||
* _pubDate_ <Date object or date string> Optional. The publication date for content in the feed
|
||||
* _ttl_ <int> Optional. Number of minutes feed can be cached before refreshing from source.
|
||||
* _georss_ <boolean> Optional. Whether to make the feed a GeoRSS feed.
|
||||
|
||||
### Item Options
|
||||
|
||||
@@ -86,6 +90,8 @@ an have any number of items. Ten to tenty is usually good.
|
||||
* _date_ <Date object or date string> The date and time of when the item was created. Feed
|
||||
readers use this to determine the sort order. Some readers will also use it to determine
|
||||
if the content should be presented as unread.
|
||||
* _lat_ <number> The latitude coordinate of the item. This will only be recognized if this is a GeoRSS feed.
|
||||
* _lng_ <number> The longitude coordinate of the item. This will only be recognized if this is a GeoRSS feed.
|
||||
|
||||
### Methods
|
||||
|
||||
|
||||
Reference in New Issue
Block a user