このライブラリは Atom と RSS フィードを使うための関数を含んでいます。 関連リンク: Extension Overview, DekiScript Overview, Extension Demos.
Assembly: mindtouch.deki.services
SID: http://services.mindtouch.com/deki/draft/2007/06/feed
関数:
- feed.list
- feed.table
feed.list(feed : uri, max : num) : xml
Atom/RSS フィードを一覧で表示
引数:
| Name | Type | Description |
| feed | uri
| Feed URI (Atom or RSS) |
max
| num
| オプション 表示最大項目数 (デフォルト: nil) |
Samples:
| Output |
| MindTouchのフィードの全項目一覧表示を埋め込み: {{ feed.list("http://feeds.feedburner.com/Mindtouch") }} | |  |
| MindTouchのフィードから最新の5項目一覧表示を埋め込み: {{ feed.list("http://feeds.feedburner.com/Mindtouch", 5) }} | |
|
feed.table(feed : uri, max : num) : xml
表形式でAtom/RSS フィードを表示
引数:
| Name | Type | Description |
| feed | uri
| Feed URI (Atom or RSS) |
max
| num
| オプション 表示最大項目数 (デフォルト: nil) |
Samples:
| Output |
| MindTouchのフィードの全項目表形式の表示を埋め込み: {{ feed.table("http://feeds.feedburner.com/Mindtouch") }} | | |
| MindTouchのフィードの最新の5つの内容表示を埋め込み: {{ feed.table("http://feeds.feedburner.com/Mindtouch", 5) }} | |  |