Vendor MindTouch
Type Extension
Categories Web Api
Requires MindTouch 1.8.2 or later
OS Restriction None
Status Stable
License Free/Open Source
SID (service id) sid://mindtouch.com/2007/06/feed
Assembly mindtouch.deki.services

 

Table of Contents

Description

This extension contains functions for using Atom and RSS feeds.

See also How to add an extension, Using the Extension Dialog, Learn about DekiScript, Extensions Directory.


feed.list(feed : uri, max : num) : xml

Show Atom/RSS feed as a list.

Parameters:

Name Type Description
feed uri Feed URI (Atom or RSS)
max num Optional.  Max items to display (default: nil)

Samples:

  Output

To embed the complete MindTouch feed as a list:

{{ feed.list("http://feeds.feedburner.com/Mindtouch") }} 
./CompleteFeedAsList.JPG

To embed only the 5 most recent stories from the MindTouch feed as a list:

{{ feed.list("http://feeds.feedburner.com/Mindtouch", 5) }} 
./Max5AsList.JPG

 


feed.table(feed : uri, max : num) : xml

Show Atom/RSS feed as a table.

Parameters:

Name Type Description
feed uri Feed URI (Atom or RSS)
max num Optional.  Max items to display (default: nil)

 

Samples: 

  Output

To embed the complete MindTouch feed as a table:

{{ feed.table("http://feeds.feedburner.com/Mindtouch") }} 
./CompleteFeedAsTable.JPG

To embed only the 5 most recent stories from the MindTouch feed as a table:

{{ feed.table("http://feeds.feedburner.com/Mindtouch", 5) }} 
./Max5AsTable.JPG

 

Tag page
You must login to post a comment.