Displaying 20 results from an estimated 600 matches similar to: "Create new Image Plugin?"
2006 Apr 27
7
SuperImage plugin
Greetings all,
This is the first release of the SuperImage plugin. The idea is you
upload images to the database, and then pull them out at any size you
want. Combine this with caching and it will stay light and fast.
More info and instructions are here:
http://beautifulpixel.textdriven.com/articles/2006/04/27/superimage-plugin-making-resizeable-uploaded-images-easy
svn:
2006 Jun 10
0
Dynamic file paths in FileColumn
I have a file uploader application in ROR using the very nice FileColumn
plugin. In looking at the source code I can see that there is a
DEFAULT_OPTION hash with some root path options and such which can be
merged from an options paramater. These static path changes are not a
problem.
My question is dynamic path options. My upload form, when you boil it
down, has two fields. The first is
2006 Apr 26
3
re-sizing pictures.....
So i followed the steps in the agile development book and everything is
working just fine... i even added a few new functions to list and manage
the pics. but what if i start uploading big pics? i don''t want to have
huge desk-top size pics taking up the whole page all the time. right?
so does anyone have a sort-of thumbnail thing they''d be willing to
share? any help would
2006 May 19
1
FileColumn
I''m using Windows and Postgres 8.
I installed RMagic gem thingy and FileColumn plugin ok.
I followed instructions exactly as directed on FileColumn web site which
is very straight forward:
---model
class My_model < ActiveRecord::Base
file_column :column_for_file_name
end
-----view -upload form--set to mulitpart
<%= file_column_field "my_model",
2006 Apr 05
0
FileColumn - version and not image files
Hi
I have this filecolumn:
file_column :file, :magick => { :versions => { :large => ''756x567>'' } }
Does anybody have a solution to make this also accept files that aren''t
images? Now this makes filecolumn return an error of "File invalid
image" if the file isn''t an image.
Would be nice if it, when the file is invalid image, just
2005 Dec 27
1
filecolumn to database
Hi,
I''m using filecolumn to upload a file to mysql blob :
_form.rhtml : file_column_field "entry", "attach"
model (rb file) : file_column :attach
How can I update controller create function to insert file in database ?
redefine model save function ? Someone has a sample source ?
Regards,
Fabian
2006 Nov 13
0
RMagick throws path errors in Rails but not from the shell (OSX)
Hello All,
I''m using FileColumn to store images for a model in my app. I use filecolumn
to scale uploaded images to different sizes. This much works fine.
I then created a Ruby class for annotating text on the uploaded image. I
tested this class from the shell and it works as expected.
I then created a plugin for this class and hooked it up to the model. Here''s
where I start
2006 Mar 30
0
FileColumn Redux
I installed FileColumn successfully but now find the need to get a new
image size.
I was wondering if there was a fast script, or method, that would run
through all my products and use the existing mail file already submited
and resize it according to the new specifications.
Thanks!
--
Posted via http://www.ruby-forum.com/.
2006 Mar 20
1
FileColumn question
Can someone please help me with this.
I have an Images table :-
create table images (
id integer unsigned not null auto_increment primary key,
image varchar(200) not null default ''''
)ENGINE=InnoDB default CHARSET=latin1;
And a car table :-
create table cars (
id integer unsigned not null auto_increment primary key,
user_id integer unsigned not null,
title varchar(100) not
2005 Dec 04
2
Filecolumn: url_for_file_column problem
Calling url_for_file_colum results in a TypeError: can''t convert nil to string.
The error is in line 148 of filecolumn.rb:
def relative_path(subdir=nil)
File.join(relative_path_prefix,subdir, @filename)
end
If I substitute '''' for subdir in the File.join command, then it seems to work fine. Since this is a plugin, I''m wondering why I need
2006 Feb 21
6
Select articles from group with id ''1'' and id ''2''
I have to tables: "articles" and "groups". Between I have
article_groups as a jointable. Now I want to select every article who
is a member of group with id ''1'' and id ''2''. Whats best way to get
that?
Extract from schemas:
CREATE TABLE articles (
id int auto_increment,
ingress text NOT NULL,
story_text longtext,
constraint fk_items_users
2006 Feb 24
1
File Column
Has anyone any experiance with the FileColumn plugin. I''m trying to
create thumbnails, and also alow non picture uploads. Here''s some
working code, but if I try and upload a zip, it says ''File invalid
image''. Is there anyway of having both image uploads (and thumbnail
generation) while also allowing non image uploads?
class Entry < ActiveRecord::Base
2006 Jun 16
4
Depot App: Upload Images
Hello,
I''m a newbie to Ruby on Rails and like many others, I have been working
through the depot application in the Agile Web Development book.
I was wondering if anyone had enhanced the depot application to include
the upload of images for each product? The following describes the sort
of thing that I have been asked to produce for a client, so apologies if
the information is not
2006 Jan 19
0
file_column error: tmp file created but not actual
Hi
When I submit the form with field_column, the actual
image is not
uploaded, only temp files are crreated and I dont see
actual file created and the image file name is not in
the database and get "fieldWithErrors". Then if
submit again, the actual file in created and an
database record is generated.
Here is the log file. I print @params and @wallpaper.
I find the following:
1st
2006 Jan 04
1
[BUG?] image_tag
i''ve got the latest ruby and rails on this box and am seeing that image_tag
will turn something like
/foo/bar.jpg
into
/foo/foo/bar.jpg
in the following situation:
/ror/foo/public
/var/www/html/foo -> /var/ror/foo/public/
image_tag("/foo/bar.jpg")
this is exactly how compute_public_path is written to work:
def compute_public_path(source, dir, ext)
2005 Oct 15
1
Partials and controllers
Newbie question:
From a _form.rhtml file I have:
<%= render(:partial => ''item'', :collection => @items) %>
In _item.rhtml I have:
<% @tullt = h(item.body) %>
<%= @itemdb = Group.find(:all,
:conditions => "id = ''#{@tullt}''").map {|u| [u.name] }
%>
<%= @tullt %
I think it would be better to
2006 Mar 16
4
Capistrano :update_code problem
Hi all,
I want to love capistrano and I''m so close.
My error is occuring while running the update_code task... (apologies
for the shell spew)
*************************************************************************
* executing "rm -rf
/home/henster29/sites/glitter/releases/20060316143447/log
/home/henster29/sites/glitter/releases/20060316143447/public/system
&&\n ln
2006 Jun 23
0
Overriding a file_column attribute in model
I have a user model subclassed into Employees and Managers using STI. I
am using FileColumn to manage images, in this case logos. If an Employee
doesn''t have a logo of its own, I want my app to use the Manager''s logo
in views.
I did the following in models/users.rb:
-------
class User < ActiveRecord::Base
file_column :logo
end
class Employee < User
belongs_to
2006 Mar 23
1
Using ImageMagick with Locomotive
Hi,
I''m trying to use the routines on this page:
<http://addictedtonew.com/archives/127/rotating-images-with-rmagick-and-ruby-on-rails/>
to try and rotate some images.
I tried using the script/console to do some testing, - I know
ImageMagick is working, as I''m using the filecolumn plugin to resize
images as they are loaded. When I try, using the console, to rotate an
2006 Feb 24
0
Re: file_column on windows?
I am not able to get this to work on Windows, and the problem has been
documented with a fix here, but I can''t get the fix to work, either. Ok, I
admit it: I am a newbie with rails!
here is the problem''s fix:
You can fix your file_column for now by replacing the get_content_type
method in lib/file_column.rb with this version:
def get_content_type(fallback=nil)