Displaying 20 results from an estimated 20000 matches similar to: "getting absolute paths on files on filesystem."
2006 Jun 06
4
Checking if a directory is empty using File
Hi,
I have one minor issue. I''m trying to check whether a directory is empty
given some path to the directory.
My code does the following:
if(File.directory?(dirpath)) # dirpath = public/images/1
if(File.zero?(dirpath))
FileUtils.rm_rf(dirpath)
end
end
The problem is, while testing this, if I put a file in the directory and run
the above code, it still ends up deleting the
2006 May 10
2
accessing uploaded file on filesystem question.
Hi,
I''m able to upload files onto my webserver filesystem but I had a question
regarding how I''d go about accessing them using the <img src="..." > tag.
If my files, i.e pictures, are being uploaded to
public/images/<dir>/filename.jpg, then should I store the entire path, or
just the picture name in my database table? I would imagine storing just
the
2006 May 23
4
''key not found'' problem with saving model object.
Hello,
I have the following structure:
model foo
has_many :bars:,
:dependent => true
end
model bar
belongs_to :foo
end
In my action, when i try to save foo:
def save
begin
f = foo.new
f.a = 5
begin
b = bar.new
b.a = 10
f.bars << b
rescue Exception => exc
...
end
f.save! <-- This does not happen
2006 May 16
4
question about strftime when called from partial.
Hi,
I''m calling a helper I''ve written - format_time() that is called from my
views with a given time that was selected from my database and was returned
to the view via an instance variable. When I call format_time from a
partial, I see that I get some kind of String error and the partial won''t
render. Basically, the object being passed in to format_time is already a
2006 May 30
3
expected, got Fixnum problem.
Hi,
I was wondering if anybody knew what ''<some type> expected, got Fixnum''
means? My code looks like the following:
begin
anevent = Event.new
anevent.title = params["event"]["title"]
anevent = session[:user_id]
com = Community.find(params[:id])
com.events << anevent
rescue Exception => exc
...
end
But I get an
2006 May 05
1
Uploading files > 10mb using InstantRails 1.0 configuration.
Hi,
I''m using InstantRails 1.0 (rails 1.0 and ruby 1.8.4). When I try to upload
a video file ~11MB, IE just hangs on me. Seems like WEBrick hangs too and I
can''t connect from another IE. I end up manually killing WEBrick. Would
anybody know the problem here? I had to increase my mysql max_packet_size
parameter in order to upload in the first place so mysql doesn''t
2006 May 05
1
InstantRails, ruby downgrade to 1.8.2 issue.
Hello,
I''ve been using InstantRails 1.0 that has ruby 1.8.4 and rails 1.0. Some of
you might know that the RMagick package does not work with ruby 1.8.4. I''m
now trying to downgrade to ruby 1.8.2 within my InstantRails 1.0 install.
Is there a clean way of doing this? I basically downloaded ruby 1.8.2 and
replaced the ruby directory with the newly created ruby directory. As
2006 Jul 28
2
passing a variable from controller to model
Hi,
How do I pass a variable from my action into a model before saving the
model. I''d like the model instance to have access to this variable to
do some work before saving the model instance but the variable is not
part of the model itself.
Thanks,
Sam
--
Posted via http://www.ruby-forum.com/.
2006 Jun 12
1
incorporating Perl in Ruby on Rails.
Hi,
I have to use some API''s from some outside vendor to incorporate some of
their video functionality, in particular, I have to somehow incorporate
VideoEgg''s video publishing api''s. They don''t currently support Ruby, but
I''ve heard that there are ways to hack up ruby code with their Perl API''s to
get it working. Would anybody have any idea
2006 May 07
1
file_column problem - uninitialized constant Magick
Hi,
I''m on Windows and getting the following error while trying to use
file_column with RMagick,
uninitialized constant Magick
C:/INSTAN~1.0/ruby/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in
`const_missing''
#{RAILS_ROOT}/vendor/plugins/file_column/branches/kyle/lib/file_column.rb:621:in
`file_column''
I installed file_column by
2006 May 07
1
design question - multiple form resubmit problem.
Hello,
My question has to do with a form resubmit problem. Say for example a form
is submitted and within that form, a picture is uploaded. If the user
presses the Back buttom and gets back to the form submission sheet, and then
clicks on resubmit, once again, the same data is populated into my tables
wasting space (another picture upload for no reason in a separate row).
Now, I know there are
2006 May 22
3
rails naming convention for model: community
Hello,
How does Rails deal with the pluralization of community. I have "community"
as my model name. Will Rails automatically look for a table name
"communities" or do I have to name the table "communitys"?
Thanks.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 May 13
8
Which Linux flavor for a Rails server?
Hi folks,
I''m a linux noob, and I''m trying to pick a distro for my rails server. I
don''t want to start a flame-war about linux distros! I''m interested in the
best distribution for these criteria:
1 - Simplicity of getting ruby and rails set-up (gem updates)
2 - Stability (it is a server, after all)
3 - Support resources (community, and as a fall-back, paid
2006 May 23
11
adding layouts within layouts
Hi,
I want to be able to have several layouts within each other so that I don''t
have to keep repeating the layout code for one, in another. An example
would be having a layout for the title of your web page and then having an
embedded layout for the body portion in which the HTML for whatever view
gets displayed. Is this possible?
Thanks.
-------------- next part --------------
An
2006 Jun 19
5
RSS reader for rails application.
Hi,
I was wondering if there''s an RSS reader plugin of some sort available
that will basically get the RSS feeds for me and then allow my Rails
application to take those feeds and present them on my website. Would
anybody know how I could get this to work with a rails app?
Thanks.
--
Posted via http://www.ruby-forum.com/.
2006 Apr 18
11
Which database to choose for a new Rails application - MySQL 4.1 or 5.0?
Hi
I''m choosing a database for a new Rails application. I pretty much
ruled out PostgreSQL, since despite good reviews of the database
itself, it seems it has countless issues with Rails (for example: in
recent releases migrations don''t work, and unit-tests fail).
So I should now choose between MySQL 4.1, which as I understand enjoys
widespread popularity - perhaps the most
2006 May 09
2
handling file upload onto local filesystem.
Hi,
I have a multipart form upload field uploaded through <%=
file_field("profile", "profile") %>
Once a submit happens, the action basically does something like:
profile = Profile.new(params["picture"])
This invokes the models = to method:
def picture=(picture_field)
...do a bunch of assignments here
end
def validate
... do a bunch of validations
2020 Jan 27
2
Re: [PATCH 3/3] docs: don't perform lookup on absolute paths
On Monday, 27 January 2020 10:39:34 CET Tomáš Golembiovský wrote:
> Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
> ---
> podwrapper.pl.in | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/podwrapper.pl.in b/podwrapper.pl.in
> index f12a173f..1e4aa149 100755
> --- a/podwrapper.pl.in
> +++ b/podwrapper.pl.in
> @@ -689,6 +689,8 @@ sub
2020 Jan 27
1
Re: [PATCH 3/3] docs: don't perform lookup on absolute paths
On Monday, 27 January 2020 12:37:38 CET Tomáš Golembiovský wrote:
> On Mon, Jan 27, 2020 at 12:17:42PM +0100, Pino Toscano wrote:
> > On Monday, 27 January 2020 10:39:34 CET Tomáš Golembiovský wrote:
> > > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
> > > ---
> > > podwrapper.pl.in | 2 ++
> > > 1 file changed, 2 insertions(+)
>
2009 Aug 07
2
create separate plots by factors
Hello,
I am attempting to create several plots based on "site" (~300 total)
and am having trouble with the code. I simply want to create a plot
using the code, plot(year, peak), for the following dataset. I would
like for each site to be plotted on a separate page and the plots
saved in a directory. Would a "foreach" loop work? I tried a "by"
statement, but