search for: large_thumb

Displaying 4 results from an estimated 4 matches for "large_thumb".

2008 Sep 25
2
jquery, format.js and IE
...unction(xhr) {xhr.setRequestHeader("Accept", "text/javascript")} } And my respond_to block: respond_to do |format| format.html { redirect_to edit_picture_path(@picture) } format.js { render :json => @picture.to_json(:methods => [:public_filename, :large_thumb]) } end Any suggestions? Thanks. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-t...
2006 Jun 19
0
image rotation? (orientation)
Hi there, So, I have this photo site. When the users upload photos, they are generally in a zip file. So the site unzips the photos and then generates 5 versions of each one: small_thumb, large_thumb, small, medium, and large. After it finishes that, it will forward the user onto a page where they can edit the pictures'' title, caption and orientation (20 pictures per page). This page uses Ajax so when you select a photo to edit, it simply gives you the tools right within that photo...
2006 Aug 23
0
Rotating Images with file_column
...consist of dimensions and cropping) which I can plug into the file_column and RMagick? file_column :image, :store_dir => :photo_store_dir, :magick => { :versions => { :small_thumb => { :crop => ''1:1'', :size => ''40x40>'' }, :large_thumb => { :crop => ''4:3'', :size => ''100x75>'' }, :small => { :size => ''640x480>'' }, :medium => { :size => ''800x600>'' }, :large => { :size => ''1024x768>'' }...
2006 Jun 11
4
remote_function posting?
Hi, I''ve noticed that my remote_function calls are resulting in POST requests. As a result, my routes do not apply since it does not generate a url based on the parameters, but simply posts to the raw url with post data. I want to make a GET request instead of a POST. How can I do that? Has anyone else run into this? Thanks, Ryan -- View this message in context: