vote up 0 vote down star

If I want to match x.gif and y.gif, is it possible to pass a URL to map.connect that encompasses the possibilities of both filenames something like this:

map.connect "public/images/:name.gif",
  :controller => "static_image_controller",
  :action => "serve"

And then receive the param in my StaticImageController as params[:name]?

class StaticImageController < ApplicationController
  def serve
    image_name = params[:name]
    image = File.read(File.join(Rails.root, image_name))
    send_data image, :type => "image/gif", :disposition => "inline"
  end
end

Besides the fact that what I am doing here violates the principles of convention over configuration in Rais, does this look right?

flag

1 Answer

vote up 2 vote down check
map.connect '/public/images/:filename', :filename => /\.gif$/

will do it.

link|flag
What's the last part for? (:filename => /\.gif$/) – pepe Jun 22 at 22:58
it says that for the route to apply, the filename parameter has to match the regex /\.gif$/ – Ben Hughes Jun 22 at 23:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.