|
Cookbook /
Bloge-FeedsSummary: Blog-like Atom & RSS feeds
Version: 2009-08-11
Prerequisites: PmWiki 2.2.x
Status: beta
Maintainer: Eemeli Aro
Discussion: Bloge-Feeds-Talk
Download: bloge-feeds.phpΔ
DescriptionThis is a wrapper for PmWiki's default WebFeeds that makes the output more blog-like, with full-text or extracted item contents and more robust links & time variables. Bloge-Feeds is a part of Cookbook.Bloge, but may also be used as a standalone recipe. To install this recipe:
UsageFollow the instructions as on PmWiki.WebFeeds, except for including this recipe instead of Getting a nice URL for the feed will require a little extra configuration. For example, adding the following in the appropriate per-group customization file (here, if (($action=='rss') | ($action=='atom')) {
$FeedPageListOpt = array(
'name' => '????-??-*',
'order' => '-ctime',
'count' => 10
);
if (empty($_REQUEST['group'])) $_REQUEST['group'] = 'Blog';
include_once("$FarmD/cookbook/bloge-feeds.php");
}
Manipulating the The full text of a page may be reduced to an extract by adding an anchor NotesThe configuration mentioned above in the usage section is left outside the recipe as it is particular to each use case. Bloge, for instance, also uses this recipe to provide a separate feed for the comments of each blog entry. The use of the For implementing feed autodiscovery, take a look at FeedLinks and RSSFeedLink. Release notes
See also
ContributorsCommentsSee discussion at Bloge-Feeds-Talk User notes +3: If you use, used or reviewed this recipe, you can add your name. These statistics appear in the Cookbook listings and will help newcomers browsing through the wiki. |