| 1 | | """Example macro.""" |
|---|
| | 1 | """ |
|---|
| | 2 | A Simple RSS News Retriever: Returns the content of an rss2 feed, parsed and pretty. |
|---|
| | 3 | |
|---|
| | 4 | Usage: [[RSSget(http://www.example.com/feed.xml)]] |
|---|
| | 5 | |
|---|
| | 6 | This edition: |
|---|
| | 7 | * caches fetched feeds to /tmp/tracrss |
|---|
| | 8 | * returns the feed as a <dl> |
|---|
| | 9 | |
|---|
| | 10 | Customisation: |
|---|
| | 11 | * RESULTS_FULL = 1; < number of results for which descriptions are displayed |
|---|
| | 12 | * RESULTS_TOTAL = 5; < total number of results, titles of posts are displayed |
|---|
| | 13 | * CACHE_INTERVAL = 1500 < time till feed is rechecked. |
|---|
| | 14 | |
|---|
| | 15 | Known Issues: Doesn't parse atom or rss or rdf. This is a one trick pony |
|---|
| | 16 | |
|---|
| | 17 | """ |
|---|
| | 18 | |
|---|