Skip to content

Commit

Permalink
Merge branch 'master' of git@github.com:spullara/yql-tables
Browse files Browse the repository at this point in the history
  • Loading branch information
spullara committed May 15, 2009
2 parents 41e469a + f8d36c4 commit 04dc926
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions flickr/flickr.photos.astro.xml
Expand Up @@ -68,12 +68,12 @@
if (!o[id]) {
o[id] = {};
o[id]['name'] = [];
o[id]['id'] = id;
o[id]['title']=photo.title.toString();
o[id]['url'] = photo.urls.url.toString();
o[id]['username'] = photo.owner.@['username'].toString();
o[id]['imgroot'] = 'http://farm'+photo.@['farm'].toString()+'.static.flickr.com/'+photo.@['server'].toString()+'/'+id+'_'+photo.@['secret'].toString();
}
o[id]['id'] = id;
o[id]['title']=photo.title.toString();
o[id]['url'] = photo.urls.url.toString();
o[id]['username'] = photo.owner.@['username'].toString();
o[id]['imgroot'] = 'http://farm'+photo.@['farm'].toString()+'.static.flickr.com/'+photo.@['server'].toString()+'/'+id+'_'+photo.@['secret'].toString();
tag = photo.tags.tag.@['raw'].toString();
//split machine tag name and value
tmp = tag.split('=');
Expand Down

0 comments on commit 04dc926

Please sign in to comment.