forked from remi/pubwich
-
Notifications
You must be signed in to change notification settings - Fork 27
ServiceDelicious
haschek edited this page Sep 9, 2012
·
3 revisions
The Delicious service shows the recent bookmarks from a Delicious account. It is a child class of the Feed service, used to simplify configuration.
-
username: username of (your) Delicious account, it's the last part of the Delicious URI
http://delicious.com/username
- tags: (optional) comma separated list of tags, if you want the feed of bookmarks which are tagged by this keywords
- total: number of shown bookmarks
- title: title of the rendered service box
- description: description of the service box, default it is used as sub title
$delicious = array(
'Delicious', 'bookmarks', array(
'username' => 'haschek',
'tags' => 'web, development',
'total' => 5,
'title' => 'Delicious',
'description' => 'latest bookmarks',
)
);
As the Delicious sevice extending the Feed service, you can use all Feed service keys + the special Delicious configuration keys in your templates.