diff --git a/modules/FlickrFavoritesFeed.php b/modules/FlickrFavoritesFeed.php index c648f12..57c2415 100644 --- a/modules/FlickrFavoritesFeed.php +++ b/modules/FlickrFavoritesFeed.php @@ -59,7 +59,7 @@ function fetchOutput_DOM_XML() { // Request a list of the user's favorite pictures, including the date. list($faves, $faves_xp) = $this->api(array( 'method' => 'flickr.favorites.getPublicList', - 'extras' => 'date_taken,date_upload,owner_name,license', + 'extras' => 'date_taken,date_upload,last_update,owner_name,license', 'user_id' => $user_id )); @@ -69,8 +69,8 @@ function fetchOutput_DOM_XML() { // Extract some attributes from the photo as an array. $photo = array(); - foreach (array('id', 'server', 'farm', 'secret', 'owner', - 'ownername', 'title', 'dateupload', 'license') as $name) { + foreach (array('id', 'server', 'farm', 'secret', 'owner', 'ownername', + 'title', 'dateupload', 'lastupdate', 'license') as $name) { $photo[$name] = $photo_node->getAttribute($name); } diff --git a/pipelines/badgerfish b/pipelines/badgerfish index 15ae264..04e6469 100644 --- a/pipelines/badgerfish +++ b/pipelines/badgerfish @@ -3,7 +3,7 @@ "description" : "Use BadgerFish to transform XML content to JSON", "author" : "l.m.orchard@pobox.com", "parameters" : { - "url" : { "type":"string", "label":"Input feed URL" } + "url" : { "type":"string", "label":"Input XML URL" } }, "pipeline" : [ { "module":"Fetcher", "parameters":{"url":"{url}"} }, diff --git a/pipelines/flickrfavorites b/pipelines/flickrfavorites index b5ec255..f9e347e 100644 --- a/pipelines/flickrfavorites +++ b/pipelines/flickrfavorites @@ -1,5 +1,5 @@ { - "title" : "Flickr Favorites Feed", + "title" : "Flickr favorites feed", "description" : "Fetches public photos marked favorite by a user on Flickr and builds an RSS 2.0 feed", "author" : "l.m.orchard@pobox.com", "parameters" : { diff --git a/pipelines/webfilter b/pipelines/webfilter index e2fa655..bb3ec80 100644 --- a/pipelines/webfilter +++ b/pipelines/webfilter @@ -1,6 +1,6 @@ { "title" : "WebFilter demo", - "description" : "Combines a local pipeline with an external HTTP WebFilter pipeline. (Will need URL customization for your local installation)", + "description" : "Combines a local pipeline with an external pipeline via HTTP POST. (Will need URL customization for your local installation)", "author" : "l.m.orchard@pobox.com", "parameters" : { }, "pipeline" : [