Displaying 4 results from an estimated 4 matches for "explicadores".
2006 Sep 05
0
can't use rake deploy with Capistrano
...do rake deploy I have an error. As you can see, capistrano
tryes to ln a dir that already removed (and I think that the
directory is never created by capistrano).
Before this command I made rake remote:exec ACTION="setup" that
executed the following command:
mkdir -p -m 775 /home/explicadores/apps/tutor/releases /home/
explicadores/apps/tutor/shared/system &&
mkdir -p -m 777 /home/explicadores/apps/tutor/shared/log"
This is the first time that I am using capistrano and my deploy.rb
has the following
=====================================================================...
2006 Feb 10
3
Using two select elements (master - slave)
Hi, I am looking for an opinion.
I need to have two select html elements in a form, the selection of the first
element will determine the elements of the second select.
I do not want to use AJAX, so I think I would like to add a onchange event in
the first select, but due to my lack of experience in rails I am somewhat
without ideas on the way of handling this "post back" event.
Thank
2006 Feb 14
1
Firefox java script error in prototype.js
Hi,
I am usign two selects, a master and a slave:
<%= select("master", "id", @master) %>
<div id="slave_id_list">
<%= select("slave", "id", @slave) %>
</div>
<%= observe_field("master[id]",
:frequency => 0.25,
:update => "slave_id_list",
:url => {:action => :update_slave_select},
2006 Jan 13
2
JOIN
Hi!
For the following example I want to retrieve the last 10 LastEntries for
experis_date >= now.
class User < ActiveRecord::Base
has_one :last_entries
def self.last_entry_items
find(:all,
# :include => "last_entries",
# :conditions => "last_entries.expires_date >= now()",
:order => "id desc",
:limit => 10)
end
end
class