Skip to content

Commit

Permalink
[svn r836] FeedMagick: More tweaks to FlickerFavoritesFeed
Browse files Browse the repository at this point in the history
  • Loading branch information
deusx committed Apr 22, 2007
1 parent 8749547 commit 61e5d19
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions modules/FlickrFavoritesFeed.php
Expand Up @@ -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
));

Expand All @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion pipelines/badgerfish
Expand Up @@ -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}"} },
Expand Down
2 changes: 1 addition & 1 deletion 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" : {
Expand Down
2 changes: 1 addition & 1 deletion 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" : [
Expand Down

0 comments on commit 61e5d19

Please sign in to comment.