Trying again as the forum ate it the last time. Which, of course, means that as soon as I post this, there will be two.
--------------------
I'd like to display my blip.fm stream alone. I want to display the [lastn] blips in a single list, regarless of age.
I'm having a hard time getting anything to show. Starting with the default AS recent wdidget that's bundled, where do I put the
<mt:If>statement? I'm using this format:
<mt:If name="service_type" eq="blip.fm">
I've tried wrapping the entire widget in the
<mt:If>tag, putting the
<mt:If>tag inside the
<mt:ActionStreams display_name="$mt_author_display_name" lastn="$past_events">tag and I've tried using "blipfm", "blip.fm" and "blips". All result in nothing being published.
What am I doing wrong?
For those not familiar with the blip.fm plugin, the config.yaml file is:
name: Blip.fm Blips id: blipfm key: blipfm author_link: http://yvesluther.name/ author_name: Yves Luther description: Adds Blip.fm blips to your Action Streams version: 1.0 plugin_link: http://yvesluther.name/entwickeln/2008-09-01/blipfm/profile_services:
blipfm:
name: Blip.fm
url: http://blip.fm/%s
ident_example: http://blip.fm/yvesluther
icon: images/blipfm.png
action_streams:
blipfm:
blips:
name: Blip.fm
description: Blips
fields:
- description
html_form: '[_1] <a href="[_2]">blipped</a> on "[_3]"'
html_params:
- url
- title
url: http://blip.fm/feed/{{ident}}
identifier: url
xpath:
foreach: //item
get:
created_on: pubDate/child::text()
title: title/child::text()
url: link/child::text()
description: description/child::text()
Reported on Movable Type 4.2

Add service="blipfm" to the ActionStreams tag. That tag takes either service or services as a limiter for what to load.
Great, that did it, but the dates are all messed up because it's only looking for the day of the week. Anything that happened on a Friday, for example, is 'Today'.
I think I can sort that out, besides it's not an action streams issue anyway.