Guys & gals,

I'm also learning RoR (using v2.3.4). I've got a basic scaffold
working for image file creation, and - to a point - image file
display.

The send_data function is working in my controller - no problem. The
model code is able to parse the uploaded file construct too.

  def show
    @image = Image.find(params[:id])
                send_data(@image.binary_data, :type =>
@image.content_type, :disposition=>"inline")
        end

The issue with my output page, specifically "show". All attempts to
render the page, result in *only* the image (.jpg, .png, ... format
unimportant) being rendered. No other HTML makes it to the browser.

I've tried code variants with <% image_tag .... %> to no avail.

Ideas? I'd like to keep the remainder of my hair over this one.

-Brian

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to