Sha256: 2e5a0207e3baad1e75620def4603f5a02f2ea6522756fee0feb32a105b1cb21e

Contents?: true

Size: 462 Bytes

Versions: 9

Compression:

Stored size: 462 Bytes

Contents

class Plugins::Sidebars::FlickrController < Sidebars::ComponentPlugin
  description 'Pictures from <a href="http://www.flickr.com">flickr.com</a>'
  setting :feed_url, nil
  setting :count,    4
  setting :format,  'rectangle', :choices => %w{rectangle square}

  def content
    begin
      response.lifetime = 1.hour
      @flickr=check_cache(FlickrAggregation, @sb_config['feed_url'])
    rescue Exception => e
      logger.info e
      nil
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
typo-3.99.0 components/plugins/sidebars/flickr_controller.rb
typo-3.99.2 components/plugins/sidebars/flickr_controller.rb
typo-3.99.1 components/plugins/sidebars/flickr_controller.rb
typo-3.99.3 components/plugins/sidebars/flickr_controller.rb
typo-4.0.2 components/plugins/sidebars/flickr_controller.rb
typo-4.0.0 components/plugins/sidebars/flickr_controller.rb
typo-4.0.1 components/plugins/sidebars/flickr_controller.rb
typo-3.99.4 components/plugins/sidebars/flickr_controller.rb
typo-4.0.3 components/plugins/sidebars/flickr_controller.rb