Skip to content
Snippets Groups Projects
Unverified Commit ec755086 authored by Richard Perry's avatar Richard Perry
Browse files

Trying to fix flickr plugin, but don't really know what I am doing

parent ad16d968
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -29,7 +29,6 @@ module Jekyll
@photoThumbnail = params[2] || "Large Square"
@photoEmbeded = params[3] || "Medium 800"
@photoOpened = params[4] || "Large"
@video = params[5] || "Site MP4"
end
 
def render(context)
Loading
Loading
@@ -128,7 +127,6 @@ output += "</div>\n"
urlThumb = String.new
urlEmbeded = String.new
urlOpened = String.new
urlVideo = String.new
urlPhoto = String.new
 
sizes = flickr.photos.getSizes(:photo_id => id)
Loading
Loading
@@ -137,7 +135,6 @@ output += "</div>\n"
urlThumb = sizes.find {|s| s.label == @photoThumbnail }
urlEmbeded = sizes.find {|s| s.label == @photoEmbeded }
urlOpened = sizes.find {|s| s.label == @photoOpened }
urlVideo = sizes.find {|s| s.label == @video }
urlPhoto = info.urls.find {|i| i.type == 'photopage' }
 
photo = {
Loading
Loading
@@ -145,7 +142,6 @@ output += "</div>\n"
'urlThumb' => urlThumb ? urlThumb.source : '',
'urlEmbeded' => urlEmbeded ? urlEmbeded.source : '',
'urlOpened' => urlOpened ? urlOpened.source : '',
'urlVideo' => urlVideo ? urlVideo.source : '',
'urlFlickr' => urlVideo ? urlVideo.url : '',
'urlPhoto' => urlPhoto ? urlPhoto._content : '',
}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment